/* Basis Reset & Globale Stijlen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif; /* Inter lettertype */
    line-height: 1.6;
    color: #000000; /* Zwart voor tekst */
    background-color: #EEF0F2; /* Lichtgrijs/Gebroken wit voor achtergrond */
}

/* Header & Navigatie */
header {
    background: #14591D; /* Donkergroen */
    color: #EEF0F2; /* Lichtgrijs voor tekst in header */
    padding: 0.8rem 0; /* Iets minder padding */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header nav {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo img {
    height: 50px; /* Pas aan naar de gewenste hoogte van je logo */
    width: auto;
    display: block; /* Om eventuele extra ruimte onder de afbeelding te verwijderen */
}

.language-switcher button {
    background: none;
    border: none;
    color: #EEF0F2; /* Lichtgrijs */
    cursor: pointer;
    font-size: 1rem;
    padding: 5px;
    font-family: 'Inter', sans-serif;
}

.language-switcher button.active {
    font-weight: bold;
    text-decoration: underline;
    text-decoration-color: #90A955; /* Olijfgroen accent voor actieve taal */
}

/* Hero Sectie */
.hero {
    /* VERVANG 'JOUW_HERO_ACHTERGROND_URL_HIER' MET DE URL NAAR JULLIE ACHTERGRONDAFBEELDING */
    /*background-image: linear-gradient(rgba(20, 89, 29, 0.75), rgba(20, 89, 29, 0.75)), url('images/hero_background2.png');*/
    background-image: url('images/hero_background2.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 85vh;
    color: #FFFFFF; /* Witte tekst op de afbeelding */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px 40px;
    margin-top: 70px; /* Aangepast aan header hoogte (50px logo + padding) */
}

.hero-content {
    max-width: 750px;
    /* background-color: rgba(20, 89, 29, 0.5); /* Subtiele donkere achtergrond voor content voor extra contrast */
    background-color: rgba(0,0,0,0.38);
    padding: 20px;
    border-radius: 8px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

/* Nieuwsbrief in Hero Sectie */
.hero-newsletter {
    margin-top: 30px;
    padding: 20px;
    /* background-color: rgba(0, 0, 0, 0.2); Lichte overlay niet meer nodig door hero-content bg */
    border-radius: 8px;
}

.hero-newsletter h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #FFFFFF; /* Wit */
    font-weight: 700;
}

#newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

#newsletter-form input[type="email"] {
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #90A955; /* Olijfgroen rand */
    border-radius: 5px;
    flex-grow: 1;
    min-width: 200px;
    color: #000000; /* Zwarte tekst in input */
    background-color: #EEF0F2; /* Lichtgrijze achtergrond input */
    font-family: 'Inter', sans-serif;
}
#newsletter-form input[type="email"]::placeholder {
    color: #555; /* Donkerdere placeholder tekst */
}


.cta-button {
    display: inline-block;
    background: #881600; /* Donkerrood/Bruinrood accentkleur */
    color: #FFFFFF; /* Witte tekst */
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.cta-button:hover {
    background: #6a1200; /* Donkerdere tint van accentkleur */
    transform: translateY(-2px); /* Licht lift effect */
}

.newsletter-message {
    margin-top: 15px;
    font-size: 1rem;
    min-height: 1.2em;
    color: #FFFFFF;
}

.newsletter-message.success {
    color: #d4edda; /* Lichter groen voor succes op donkere achtergrond */
    font-weight: bold;
}

.newsletter-message.error {
    color: #f8d7da; /* Lichter rood voor error op donkere achtergrond */
    font-weight: bold;
}

/* Over Sectie */
.about-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #FFFFFF; /* Wit voor deze sectie, onderscheidend van body */
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #14591D; /* Donkergroen */
    font-weight: 700;
}

.about-container {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 30px auto;
}

.about-column {
    flex: 1;
    min-width: 280px;
    background: #EEF0F2; /* Lichtgrijs, consistent met body */
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: left;
}

.about-column h3 {
    font-size: 1.5rem;
    color: #90A955; /* Olijfgroen */
    margin-bottom: 15px;
    font-weight: 700;
}

.about-column p {
    font-size: 1rem;
    line-height: 1.7;
    color: #000000; /* Zwart */
}

.centered-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #000000; /* Zwart */
}

/* Footer */
footer {
    background: #000000; /* Zwart */
    color: #EEF0F2; /* Lichtgrijs */
    text-align: center;
    padding: 25px 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
        padding-top: 90px; /* Meer ruimte voor sticky header */
        margin-top: 60px; /* Afhankelijk van definitieve header hoogte */
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 1.2rem;
    }
    .hero-newsletter h3 {
        font-size: 1.3rem;
    }
    #newsletter-form {
        flex-direction: column;
    }
    #newsletter-form input[type="email"],
    #newsletter-form button {
        width: 100%;
        max-width: 350px;
    }
    header nav {
        flex-direction: column;
        gap: 10px;
        padding-bottom: 10px; /* Ruimte als het stacked */
    }
    .hero {
         /* Update margin-top if header height changes on mobile */
        margin-top: 100px; /* Example: if header becomes ~100px high when stacked */
    }
    .about-section h2 {
        font-size: 2rem;
    }
    .about-column h3 {
        font-size: 1.3rem;
    }
}