/* ---------------------------------------------------
   GLOBAL
--------------------------------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", Arial, sans-serif;
    background: #f5f7fa;
    color: #1a1a1a;
    line-height: 1.6;
}

/* Ohne Hero Section: Abstand unter dem Header */
body.ohne-hero {
    padding-top: 80px; /* je nach Header-Höhe anpassen */
}


a {
    color: inherit;
    text-decoration: none;
}

/* ---------------------------------------------------
   HEADER + BURGER MENU
--------------------------------------------------- */

header {
    background: #FFFFFF;
    border-bottom: 1px solid #E5E5E5;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 18px; /* kontrollierter Abstand */
    justify-content: flex-start; /* alles linksbündig */	
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;                      /* volle Breite */
    z-index: 10000;
}

header .burger {
    margin-left: auto; /* schiebt NUR den Burger nach rechts */
}

.header-accent-vertical {
    width: 2px;
    height: 28px;
    background: linear-gradient(
        to bottom,
        #0A3D2E,
        #3BAF4A
    );
    border-radius: 3px;
    margin: 0 8px;
    opacity: 0.7;
}

.header-slogan-wrap {
    display: flex;
    align-items: center;
    gap: 12px;        /* kleinerer Abstand zwischen Balken & Text */
    margin-left: 8px; /* näher am Logo */
    margin-right: 22px; /* Abstand zum Burger bleibt */
}

.header-slogan {
    font-size: 0.85rem;
    font-weight: 300;
    color: #0A3D2E;
    opacity: 0.8;
    white-space: nowrap;
}



/* Logo */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;   /* verhindert Unterstreichung */
}

.logo-container .logo-text {
    color: #0A3D2E;          /* deine Markenfarbe */
}

.logo-container img {
    height: 48px;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0A3D2E; /* Dunkelgrün */
}

.burger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 6px;                     /* etwas Luft */
    z-index: 10001;
}

.burger span {
    width: 28px;
    height: 3px;
    background: #0A3D2E; /* Dunkelgrün */
    border-radius: 3px;
    transition: 0.3s;
}
.burger:hover span {
    background: #3BAF4A; /* Energie-Grün */
}

.side-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: #FFFFFF;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    padding: 80px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: right 0.35s ease;
    z-index: 9999;
}

.side-menu nav a {
    font-size: 1.2rem;
    padding: 12px 0;
    color: #0a3d62;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 14px;              /* Abstand Icon ↔ Text */
	transition: color 0.25s ease;
}

/* Textfarbe beim Hover */
.side-menu nav a:hover {
    color: #3BAF4A; /* Energie-Grün */
}

/* Standard: Icons in Dunkelgrün */
.side-menu nav a svg path,
.side-menu nav a svg rect,
.side-menu nav a svg circle,
.side-menu nav a svg line {
    stroke: #0A3D2E; /* Dunkelgrün */
    fill: none;      /* Keine Füllung */
    transition: stroke 0.25s ease;
}

/* Hover: Nur die Linien werden gelb */
.side-menu nav a:hover svg path,
.side-menu nav a:hover svg rect,
.side-menu nav a:hover svg circle,
.side-menu nav a:hover svg line {
    stroke: #F4C542; /* Solar-Gelb */
    fill: none;      /* bleibt transparent */
}

.side-menu nav a .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}



.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 9998;
}

.side-menu.active {
    right: 0;
}

.menu-overlay.active {
	background: rgba(0,0,0,0.35);
    opacity: 1;
    pointer-events: all;
}


/* ---------------------------------------------------
   HERO SECTION
--------------------------------------------------- */

.hero {
    position: relative;
    padding: 160px 40px 80px 40px; /* top | right | bottom | left */
    text-align: center;
    color: white;
}

.hero-bg {
    background-image: url('solarpark.jpg'); /* <-- dein Bild */
    background-size: cover;
    background-position: center 60%;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

	background: linear-gradient(
        rgba(10, 61, 46, 0.55),
        rgba(10, 61, 46, 0.25)
    );
	
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-inner p {
	margin-bottom: 12px !important;
}

.hero-logo {
    height: 90px;
    margin-bottom: 25px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.25));
}

.hero h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
	color: #FFFFFF; /* bleibt weiß wegen dunklem Overlay */	
}

.hero h3 {
    font-size: 2.0rem;
    margin-bottom: 20px;
	color: #FFFFFF; /* bleibt weiß wegen dunklem Overlay */	
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 650px;
    margin: 0 auto 30px auto;
}

/* ---------------------------------------------------
   BUTTONS
--------------------------------------------------- */

/* CTA-Bereich sauber platzieren */
.cta {
    margin-top: 30px;        /* Abstand zu den Cards */
    text-align: center;      /* Button zentrieren */
}

/* CTA-Button optisch hervorheben */
.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background: #F4C542;     /* Solar-Gelb */
    color: #0A3D2E;          /* Dunkelgrün */
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
}

.cta-button:hover {
    background: #FFD76A;
    transform: translateY(-2px);
}


/* ---------------------------------------------------
   CONTENT SECTIONS
--------------------------------------------------- */

.section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 40px;
}

.section h2 {
    font-size: 1.9rem;
	color: #2C6F45; /* dezenter, weicher Grünton */
    font-weight: 600;
}

.section h3 {
    font-size: 1.3rem;
	color: #2C6F45; /* dezenter, weicher Grünton */
    font-weight: 200;
}

.section ul {
    margin: 10px 0 20px 20px;   /* Abstand oben/unten + Einrückung */
    padding-left: 20px;        /* zusätzliche Einrückung */
    list-style-type: disc;     /* klassische Bullet-Points */
}

.section ul li {
    margin-bottom: 6px;        /* Abstand zwischen den Punkten */
    line-height: 1.5;          /* bessere Lesbarkeit */
    color: #0A2F24;            /* dezente, ruhige Textfarbe */
}

/* Optional: hübschere Bullet-Points */
.section ul li::marker {
    color: #3BAF4A;            /* dezentes Energie-Grün */
}


/* ---------------------------------------------------
   CARDS
--------------------------------------------------- */

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.card {
    background: #FFFFFF;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    border: 1px solid #E5E5E5;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.10);
    border-color: #F4C542; /* Solar-Gelb */
}

.card h1 {
	font-size: 1.3rem;
/*    color: #0A2F24;  dunkler, ruhiger  */
	color: #2C6F45; /* dezenter, weicher Grünton */
    font-weight: 500;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card h4 {
	font-size: 1.1rem;
	color: #2C6F45; /* dezenter, weicher Grünton */
    font-weight: 200;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Bessere Darstellung von Listen in .card */
.card ul {
    margin: 10px 0 20px 20px;   /* Abstand oben/unten + Einrückung */
    padding-left: 20px;        /* zusätzliche Einrückung */
    list-style-type: disc;     /* klassische Bullet-Points */
}

.card ul li {
    margin-bottom: 6px;        /* Abstand zwischen den Punkten */
    line-height: 1.5;          /* bessere Lesbarkeit */
    color: #0A2F24;            /* dezente, ruhige Textfarbe */
}

/* Optional: hübschere Bullet-Points */
.card ul li::marker {
    color: #3BAF4A;            /* dezentes Energie-Grün */
}

.card-icon svg path,
.card-icon svg rect,
.card-icon svg circle,
.card-icon svg line {
    transition: stroke 0.25s ease, fill 0.25s ease;
}

.card:hover .card-icon svg path,
.card:hover .card-icon svg rect,
.card:hover .card-icon svg circle,
.card:hover .card-icon svg line {
    stroke: #F4C542; /* Solar-Gelb */
}

.card p {
    color: #1A1A1A;
    opacity: 0.85;
    font-size: 1.05rem;
    line-height: 1.55;
}


/* ---------------------------------------------------
   FOOTER
--------------------------------------------------- */

footer {
    background: #FFFFFF;
    border-top: 1px solid #E5E5E5;
    padding: 40px 40px;
    color: #0A3D2E;
    font-size: 0.95rem;
    margin-top: 80px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 20px;
}

.footer-copy {
    opacity: 0.7;
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
}

.footer-links a {
    color: #0A3D2E;
    font-weight: 500;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: #3BAF4A; /* Energie-Grün */
}





/* Große Überschriften – sehr dezent, fast neutral */
h1, h2 {
    color: #0A2F24; /* sehr dunkles, entsättigtes Grün */
}

/* Mittlere Überschriften – extrem dezentes Grün */
h3 {
	color: #1F3A32; /* fast neutral, nur ein Hauch Grün */
}

/* Kleine Titel – neutral und ruhig */
h4, h5 {
    color: #0A3D2E; /* dunkles, aber nicht grelles Grün */
}

/* Optional: gelber Akzent für spezielle Highlights */
.highlight {
    color: #F4C542; /* Solar-Gelb */
}

/* Hover: Text wird dunkler statt farbiger */
h3:hover,
h4:hover,
h5:hover {
    color: #0A0A0A; /* sehr dunkles, fast schwarzes Grün/Neutral */
    transition: color 0.25s ease;
}





.product-name {
    letter-spacing: 0.5px;     /* leichte Marken-Ästhetik */
    color: #0A3D2E;            /* dunkles Grün für "BaSim" */
	font-family: inherit;
    font-weight: 600;
    font-size: 1.05em;	
}

.product-name .green {
    color: #3BAF4A;            /* helles Marken-Grün für "Green" */
}





/* ---------------------------------------------------
   RESPONSIVE
--------------------------------------------------- */



/* Responsive: auf Mobile einspaltig */
@media (max-width: 700px) {
	

    .header-slogan-wrap { 
		display: none; 
	}
	
    .header-accent-vertical { 
		display: none; 
	}
	
	header {
        padding: 12px 16px;
        gap: 10px;
    }

    .logo-container img {
        height: 40px;
    }

    .logo-text {
        font-size: 1.3rem;
    }	
	
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-copy {
        text-align: center;
    }

    .hero h2 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }
	
}




