/* ---------------------------------- */
/* Globale Stile & Variablen         */
/* ---------------------------------- */
:root {
    --primary-color: #454533; /* Dunkelgrau/Braun */
    --secondary-color: #95c219; /* Grün */
    --accent-color: #878578; /* Mittelgrau */
    --text-color: #464637; /* Dunkelgrau/Braun als Haupttextfarbe */
    --text-light: #878578; /* Mittelgrau für weniger wichtigen Text */
    --bg-color: #ffffff;
    --bg-light-gray: #f9f9f9; /* Helleres Grau für Hintergründe */
    --border-color: #eeeeee;
    --container-width: 1200px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5em;
    font-weight: 700;
    color: var(--primary-color); /* Überschriften im dunklen Grau */
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }

/* Spezielle Farbe für grüne Spans in Überschriften (wie in H1 der alten Seite) */
h1 .text-green, h2 .text-green, h3 .text-green {
    color: var(--secondary-color);
}


p { margin-bottom: 1em; }
a { color: var(--secondary-color); text-decoration: none; } /* Links standardmäßig grün */
a:hover { color: var(--primary-color); text-decoration: underline; } /* Hover dunkelgrau */
img { max-width: 100%; height: auto; }
svg { max-width: 100%; height: auto; } /* SVG-Skalierung sicherstellen */


.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* ---------------------------------- */
/* Buttons                          */
/* ---------------------------------- */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent; /* Platzhalter für Hover-Effekt */
}
/* Primärer Button (Grün) */
.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color); /* Dunkler Text auf Grün für Kontrast */
    border-color: var(--secondary-color);
}
.btn-primary:hover {
    background-color: transparent;
    color: var(--secondary-color);
    text-decoration: none;
}
/* Sekundärer Button (Dunkelgrau) */
.btn-secondary {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}
.btn-secondary:hover {
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
}

/* ---------------------------------- */
/* Header & Navigation              */
/* ---------------------------------- */
.site-header {
    background-color: #fff;
    padding: 15px 0; /* Etwas weniger Padding */
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container a {
    display: block; /* Stellt sicher, dass der Link den SVG-Bereich einnimmt */
    text-decoration: none;
}
.logo-container img {
    display: block; /* Verhindert extra Leerraum */
    height: 120px; /* Startwert - Erhöhen Sie diesen Wert zum Testen (z.B. 80px, 100px, 150px) */
    width: auto; /* Breite automatisch anpassen */
    image-rendering: -webkit-optimize-contrast; /* Versucht, Kanten schärfer zu machen, hilft aber nur begrenzt */
    image-rendering: crisp-edges;
}

.main-nav {
    display: none; /* Auf Mobile versteckt */
}

.main-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center; /* Vertikal zentrieren mit Button */
}

.main-nav li {
    position: relative;
    margin-left: 15px; /* Etwas weniger Abstand */
}

.main-nav a {
    display: block;
    padding: 10px 12px; /* Etwas kompakter */
    text-decoration: none;
    font-weight: 600;
    color: var(--text-color);
}

.main-nav a:hover,
.main-nav li:hover > a { /* Auch den Eltern-Link hervorheben, wenn Dropdown offen ist */
    color: var(--secondary-color); /* Grün im Hover */
    text-decoration: none;
}

/* Dropdown-Menü */
.main-nav .has-dropdown > a::after {
    content: ' ▼';
    font-size: 0.7em;
    vertical-align: middle;
    margin-left: 4px;
}

.main-nav .dropdown {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #fff;
    border: 1px solid var(--border-color);
    min-width: 250px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1001;
    padding: 5px 0; /* Padding oben/unten für das Dropdown */
    border-radius: 0 0 5px 5px;
}

.main-nav .has-dropdown:hover .dropdown {
    display: block;
}

.main-nav .dropdown a {
    padding: 10px 20px; /* Padding für Dropdown-Elemente */
    border-bottom: 1px solid #f4f4f4;
    white-space: nowrap; /* Verhindert Umbruch */
}
.main-nav .dropdown li:last-child a { border-bottom: none; } /* Letztes Element ohne Border */
.main-nav .dropdown a:hover {
    background-color: var(--bg-light-gray);
    color: var(--secondary-color);
}

/* Navigations-Button anpassen */
.main-nav .btn {
    padding: 8px 16px; /* Kleinerer Button in der Navi */
    margin-left: 15px;
}

/* Hamburger Menü Button */
.nav-toggle {
    display: block; /* Auf Mobile sichtbar */
    background: none;
    border: none;
    font-size: 1.8rem; /* Größerer Hamburger */
    cursor: pointer;
    color: var(--primary-color);
    padding: 5px;
}

/* ---------------------------------- */
/* Mobile Navigation (Slide-In)     */
/* ---------------------------------- */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%; /* Startet außerhalb des Bildschirms */
    width: 80%;
    max-width: 300px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0,0,0,0.2);
    transition: right 0.3s ease-in-out;
    z-index: 1002;
    overflow-y: auto;
    border-left: 1px solid var(--border-color);
}
.mobile-nav.is-open {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: flex-end;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}
.mobile-nav-close {
    font-size: 2.5rem; /* Größerer Schließen-Button */
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
    line-height: 1;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-nav li {
    border-bottom: 1px solid var(--border-color);
}
.mobile-nav a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
}
.mobile-nav a:hover {
    color: var(--secondary-color);
}

/* Mobiles Dropdown */
.mobile-nav .has-dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile-nav .dropdown-toggle {
    padding: 15px;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--accent-color);
}
.mobile-nav .dropdown {
    display: none; /* Standardmäßig versteckt */
    background-color: var(--bg-light-gray);
}
.mobile-nav .dropdown a {
    padding-left: 40px; /* Eingerückt */
    font-size: 0.95em;
    border-color: #e8e8e8; /* Etwas dunklere Trennlinie im Dropdown */
}
.mobile-nav .dropdown.is-open {
    display: block;
}
.mobile-nav .btn { /* Button im mobilen Menü */
    display: block; /* Volle Breite */
    margin: 20px;
    text-align: center;
}


/* ---------------------------------- */
/* Sektionen (Allgemein)            */
/* ---------------------------------- */
.section {
    padding: 60px 0;
}
.section-light { background-color: var(--bg-light-gray); } /* Helleres Grau verwenden */

/* ---------------------------------- */
/* Hero-Sektion                     */
/* ---------------------------------- */
.hero {
    /* Sie sollten das Bild hier direkt einfügen oder über PHP dynamisch machen */
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/photovoltaik.webp');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.25em;
    color: #fff; /* Weiße H1 im Hero */
}
.hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5em;
    color: #f0f0f0; /* Leicht abgedunkeltes Weiß für H2 */
}
.hero .btn-primary { /* Button im Hero anpassen */
     background-color: var(--secondary-color);
     color: var(--primary-color); /* Dunkler Text */
     font-size: 1.1rem;
     padding: 15px 30px;
}
.hero .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9); /* Heller beim Hovern */
    color: var(--secondary-color);
    border-color: rgba(255, 255, 255, 0.9);
}

/* ---------------------------------- */
/* Trust-Bar                        */
/* ---------------------------------- */
.trust-bar {
    padding: 20px 0;
    background-color: #f0f0f0; /* Noch helleres Grau für die Trustbar */
    text-align: center;
}
.trust-bar .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.trust-bar span {
    font-weight: 600;
    margin-right: 15px;
    color: var(--text-light);
}
.trust-bar img {
    height: 40px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6; /* Etwas transparenter */
    transition: filter 0.3s ease, opacity 0.3s ease;
}
.trust-bar img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ---------------------------------- */
/* Grid-System (Lösungen, Services) */
/* ---------------------------------- */
.grid {
    display: grid;
    gap: 30px;
}
.grid-cols-2 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-5 { grid-template-columns: repeat(1, 1fr); }

/* ---------------------------------- */
/* Lösungs-Karten                   */
/* ---------------------------------- */
.solution-card {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.solution-card-img {
    height: 250px;
    background-color: #e0e0e0; /* Platzhalterfarbe für Bilder */
    background-size: cover;
    background-position: center;
}
.solution-card-content {
    padding: 25px;
    flex-grow: 1;
}
.solution-card-content h3 {
    margin-top: 0;
    color: var(--primary-color); /* Dunkle Überschrift */
    font-size: 1.3rem; /* Etwas kleiner */
}
.solution-card-content p {
    color: var(--text-light); /* Hellerer Text */
    font-size: 0.95rem;
}
.solution-card-content a {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    text-decoration: none;
    color: var(--secondary-color); /* Grüner Link */
}
.solution-card-content a:hover {
    color: var(--primary-color);
}
.solution-card-content a::after {
    content: ' →';
}

/* ---------------------------------- */
/* Service-Boxen                    */
/* ---------------------------------- */
.service-box {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.service-box-icon {
    font-size: 3rem;
    color: var(--secondary-color); /* Grüne Icons */
    line-height: 1;
    margin-bottom: 15px;
}
.service-box h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
}
.service-box p {
    color: #454533;
    font-size: 0.95rem;
}


/* ---------------------------------- */
/* Über Uns (Zweispaltig)           */
/* ---------------------------------- */
.about-section {
    align-items: center;
}
.about-section img {
    border-radius: 8px;
}
.about-section h2 { margin-bottom: 20px; }


/* ---------------------------------- */
/* Call-to-Action Banner            */
/* ---------------------------------- */
.cta-banner {
    background-color: var(--primary-color); /* Dunkelgrauer Banner */
    color: #fff;
    padding: 60px 30px; /* Mehr Padding */
    text-align: center;
    border-radius: 8px;
}
.cta-banner h2 {
    color: #fff; /* Weißer Text */
    margin-bottom: 0.75em;
}
.cta-banner p {
    color: #e0e0e0; /* Helles Grau für Text */
}
.cta-banner .btn-primary { /* Button im CTA anpassen */
    background-color: var(--secondary-color);
    color: var(--primary-color);
}
.cta-banner .btn-primary:hover {
    background-color: #fff;
    color: var(--secondary-color);
    border-color: #fff;
}
/* ---------------------------------- */
/* FAQ Accordion                    */
/* ---------------------------------- */
.faq-accordion {
    border-top: 1px solid var(--border-color);
}
.faq-item {
    border-bottom: 1px solid var(--border-color);
}
.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--primary-color);
}
.faq-question:hover {
    color: var(--secondary-color);
}
.faq-question .faq-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 400;
    transition: transform 0.2s ease;
}
.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: var(--text-light);
}
.faq-answer p, .faq-answer ol {
    padding: 0 10px 20px 10px;
    margin: 0;
    font-size: 0.95rem;
}
.faq-answer ol {
    padding-left: 30px;
}
/* ---------------------------------- */
/* Ergänzungen für neue Struktur & UX */
/* ---------------------------------- */

/* Zentriert Überschriften in Sektionen und gibt ihnen Standard-Abstand */
.section-heading {
    text-align: center; 
    margin-bottom: 40px;
}
/* Nutzt die grüne Akzentfarbe für Überschriften */
.text-secondary {
    color: var(--secondary-color) !important;
}

/* Stilisiert das Zitat-Layout (Experten-Abschnitt) */
.testimonial-quote {
    align-items: center;
    background-color: var(--bg-light-gray); /* Nimmt den hellgrauen BG des Zitats */
    border-radius: 8px;
    padding: 30px; 
    box-shadow: 0 4px 8px rgba(0,0,0,0.05); 
}
.testimonial-quote blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-color);
    margin: 0;
    border-left: 4px solid var(--secondary-color);
    padding-left: 20px;
}
.quote-image-area {
    text-align: center;
}
.quote-image {
    border-radius: 50%; 
    width: 150px; 
    height: 150px; 
    object-fit: cover; 
    border: 4px solid var(--secondary-color);
}
.quote-author {
    font-size: 1.1rem; 
    color: var(--text-color); 
    font-weight: bold; 
    margin-top: 15px; 
    text-align: left; 
    padding-left: 20px;
}
.quote-role {
    font-weight: normal; 
    font-size: 1rem; 
    color: var(--text-light);
}
/* Zitat-Textbereich nimmt 2/3 des Raums ein */
.quote-text-area {
    grid-column: span 2; 
}


/* Verbesserter Stil für Checkmark-Listen (Referenz-Projekt) */
.list-checkmark {
    list-style: '✓'; 
    padding-left: 20px; 
    color: var(--text-light); 
    line-height: 1.8;
}
.list-checkmark li {
    padding-left: 10px; 
    margin-bottom: 5px;
}

/* Allgemein: Größerer Button (Hero/CTA) */
.btn-lg {
    font-size: 1.1rem;
    padding: 15px 30px;
}

/* Bild mit abgerundeten Ecken (Referenz) */
.rounded-image {
    border-radius: 8px;
}

/* Responsive Anpassung für das Zitat auf kleineren Bildschirmen */
@media (max-width: 767px) {
    .testimonial-quote {
        grid-template-columns: 1fr; /* Eine Spalte auf Mobile */
    }
    .quote-text-area {
        grid-column: span 1; 
        text-align: center; /* Text zentrieren, wenn Bild oben ist */
        margin-top: 20px;
    }
    .quote-author {
        text-align: center;
        padding-left: 0;
    }
}

/* ---------------------------------- */
/* CSS FÜR TESTIMONIAL SLIDER         */
/* ---------------------------------- */

/* Haupt-Wrapper für den Slider */
.testimonials-slider-wrapper {
    display: flex;
    overflow-x: auto; /* Ermöglicht horizontales Scrollen/Wischen */
    scroll-snap-type: x mandatory; /* Zwingt den Scrollpunkt auf die Slides */
    scroll-behavior: smooth; /* Sanfteres Scrollen */
    gap: 20px; /* Abstand zwischen den Slides */
    padding-bottom: 20px; 
    
    /* Optionale: Scrollbar verstecken für ein cleaneres Design */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.testimonials-slider-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Einzelnes Testimonial-Slide */
.testimonial-slide {
    /* Wichtig: Definiert die Breite der sichtbaren Slides (Standard: 100% auf Mobile) */
    flex: 0 0 100%; 
    scroll-snap-align: start; /* Jede Slide rastet am Anfang des Containers ein */
    box-sizing: border-box;
}

/* Service-Box-Styling innerhalb des Slides (Stellt sicher, dass Boxen gleich hoch sind) */
.testimonial-slide .service-box {
    /* Fügt eine visuelle Box, die die ursprünglichen Stile beibehält */
    padding: 30px; 
    border: 1px solid var(--border-color, #eeeeee); 
    border-radius: 8px;
    height: 100%;
    
    /* Sorgt für vertikale Ausrichtung des Inhalts */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


/* Anpassung für Tablet-Ansicht (ab 768px): 2 Slides sichtbar */
@media (min-width: 768px) {
    .testimonial-slide {
        /* Zeigt 2 Slides mit 20px Abstand dazwischen (50% - 10px) */
        flex: 0 0 calc(50% - 10px); 
    }
}

/* Anpassung für Desktop-Ansicht (ab 1024px): 3 Slides sichtbar */
@media (min-width: 1024px) {
    .testimonial-slide {
        /* Zeigt 3 Slides mit 20px Abstand dazwischen */
        flex: 0 0 calc(33.333% - 13.333px);
    }
}
/* ---------------------------------- */
/* CSS FÜR TESTIMONIAL SLIDER PFEILE  */
/* ---------------------------------- */

.slider-container {
    position: relative;
    /* Optional: Etwas Platz links/rechts für die Pfeile auf Desktop */
    padding: 0 30px; 
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    
    /* Styling */
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 24px; /* Größeres Pfeil-Symbol */
    font-weight: bold;
    color: var(--primary-color);
    cursor: pointer;
    
    /* Schöner Effekt */
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.slider-arrow:hover {
    background-color: var(--secondary-color); /* Grün beim Hover */
    color: var(--primary-color);
    border-color: var(--secondary-color);
    transform: translateY(-50%) scale(1.05); /* Leichter Zoom-Effekt */
}

.slider-arrow.prev {
    left: 0px; /* Position links */
}

.slider-arrow.next {
    right: 0px; /* Position rechts */
}

/* Anpassung für Mobile */
@media (max-width: 767px) {
    .slider-container {
        padding: 0; /* Auf Mobile keinen extra Platz */
    }
    
    .slider-arrow {
        /* Auf Mobile kleiner und halbtransparent, damit sie nicht stören */
        width: 36px;
        height: 36px;
        font-size: 20px;
        background-color: rgba(255, 255, 255, 0.8);
    }

    .slider-arrow.prev {
        left: 5px;
    }

    .slider-arrow.next {
        right: 5px;
    }
}
/* ---------------------------------- */
/* Footer                           */
/* ---------------------------------- */
.site-footer {
    background-color: var(--primary-color); /* Dunkelgrauer Footer */
    color: #ccc;
    padding: 60px 0 20px 0;
}
.footer-grid {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(1, 1fr);
}
.footer-widget h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.1rem; /* Etwas kleinere Footer-Überschriften */
}
.footer-widget p,
.footer-widget a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
}
.footer-widget a:hover {
    color: var(--secondary-color); /* Grün im Hover */
    text-decoration: underline;
}
.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-widget li {
    margin-bottom: 10px;
}
/* Speziell für Widget 1 (Logo/Text) */
.footer-widget:first-child h4 {
    font-size: 1.5rem; /* Größer für den Firmennamen/Logo */
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid #5a5a4a; /* Dunklere Trennlinie */
    font-size: 0.9rem;
    color: #aaa; /* Hellerer Text ganz unten */
}
.footer-bottom p { color: inherit; }
.footer-bottom a { color: #ccc; }
.footer-bottom a:hover { color: var(--secondary-color); }

/* ---------------------------------- */
/* Footer Social Media Icons (Inline SVG) */
/* ---------------------------------- */
.footer-social-icons {
    margin-top: 20px;
    display: flex; /* Icons nebeneinander anordnen */
    gap: 15px; /* Abstand zwischen den Icons */
}
.footer-social-icons a {
    color: #ccc; /* Standardfarbe (wird ans SVG vererbt) */
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}
.footer-social-icons a:hover {
    color: var(--secondary-color); /* Grün beim Hovern (wird ans SVG vererbt) */
    transform: translateY(-2px); /* Leichter Schwebe-Effekt */
}
.footer-social-icons a svg {
    fill: currentColor; /* Magie: Das SVG nimmt die Farbe des <a>-Tags an */
    width: 24px;  /* Feste Größe für die Icons */
    height: 24px; /* Feste Größe für die Icons */
}

/* ---------------------------------- */
/* Formular-Stile (Angebot/Kontakt) */
/* ---------------------------------- */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: #fff;
    box-sizing: border-box; /* Wichtig für 100% Breite inkl. Padding */
    font-family: inherit; /* Nimmt die Schriftart von 'body' */
    color: var(--text-color);
}

/* Platzhalter-Text leicht ausgrauen */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.8;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Fokus-Effekt (wenn man hineinklickt) */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color); /* Grüner Rand */
    box-shadow: 0 0 0 2px rgba(148, 193, 28, 0.2); /* Leichter grüner Schein */
}

/* 2-Spalten-Grid für Formulare */
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr; /* Standard (mobil, 1 Spalte) */
    gap: 20px;
}

/* ---------------------------------- */
/* Responsive Design (Breakpoints)  */
/* ---------------------------------- */

/* Tablet (ca. 768px) */
@media (min-width: 768px) {
    h1 { font-size: 3.2rem; }
    h2 { font-size: 2.3rem; }

    /* Grids */
    .grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-cols-5 { grid-template-columns: repeat(2, 1fr); } /* Auf Tablet 2-spaltig */
	.form-grid-2 {
        grid-template-columns: 1fr 1fr;
    }

    /* Footer */
    .footer-grid { grid-template-columns: repeat(2, 1fr); }

    /* Header */
    .nav-toggle { display: none; } /* Hamburger ausblenden */
    .main-nav { display: flex; align-items: center; } /* Desktop-Nav einblenden */

}

/* Laptop (ca. 1024px) */
@media (min-width: 1024px) {
    /* Grids */
    .grid-cols-5 { grid-template-columns: repeat(3, 1fr); } /* Auf Laptop 3-spaltig */

    /* Footer */
    .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Großer Desktop (ca. 1200px) */
@media (min-width: 1200px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }

    /* Grids */
    .grid-cols-5 { grid-template-columns: repeat(5, 1fr); } /* Erst hier 5-spaltig */
}