@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Merriweather:ital,wght@0,400;1,400&display=swap');

:root {
    --kleur-primair: #00b7d3;
    --kleur-primair-donker: #0097b2;
    --kleur-accent: #f5a623;
    --kleur-accent-donker: #e09000;
    --kleur-tekst: #333333;
    --kleur-tekst-licht: #666666;
    --kleur-achtergrond: #ffffff;
    --kleur-achtergrond-licht: #f0f9fa;
    --kleur-footer: #00a5bf;
    --kleur-grijs: #e8e8e8;
    --schaduw-kaart: 0 2px 8px rgba(0,0,0,0.1);
    --rand-radius: 4px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    color: var(--kleur-tekst);
    line-height: 1.6;
    background-color: var(--kleur-achtergrond);
}

a {
    color: var(--kleur-primair);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--kleur-primair-donker);
}

img {
    max-width: 100%;
    height: auto;
}

.site-header {
    background: var(--kleur-achtergrond);
    padding: 1rem 0;
    position: relative;
}

.header-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-banner {
    background: linear-gradient(135deg, var(--kleur-accent) 0%, #ffb347 100%);
    color: white;
    padding: 0.4rem 1.2rem;
    font-family: 'Merriweather', Georgia, serif;
    font-style: italic;
    font-size: 1.1rem;
    border-radius: 3px;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.logo-title {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 2rem;
    color: var(--kleur-primair);
    font-weight: 400;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-navigation a {
    color: var(--kleur-tekst);
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    transition: background 0.2s ease;
}

.main-navigation a:hover::after,
.main-navigation a.actief::after {
    background: var(--kleur-primair);
}

.main-navigation li:nth-child(1) a.actief::after { background: var(--kleur-primair); }
.main-navigation li:nth-child(2) a.actief::after { background: var(--kleur-accent); }
.main-navigation li:nth-child(3) a.actief::after { background: #7cb342; }

.hero-sectie {
    background: linear-gradient(180deg, var(--kleur-achtergrond) 0%, var(--kleur-achtergrond-licht) 100%);
    padding: 3rem 0;
}

.hero-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-tekst {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--kleur-tekst-licht);
    line-height: 1.8;
}

.hero-afbeelding {
    display: flex;
    justify-content: center;
}

.hero-afbeelding img {
    max-height: 320px;
    object-fit: contain;
}

.knop-primair {
    display: inline-block;
    background: var(--kleur-primair);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: var(--rand-radius);
    font-weight: 600;
    margin-top: 1.5rem;
    transition: background 0.2s ease;
    border: none;
    cursor: pointer;
}

.knop-primair:hover {
    background: var(--kleur-primair-donker);
    color: white;
}

.nieuws-sectie {
    padding: 4rem 0;
    background: var(--kleur-achtergrond-licht);
}

.sectie-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.sectie-titel {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.sectie-decoratie {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 2.5rem;
}

.decoratie-streep {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.decoratie-streep:nth-child(1) { background: var(--kleur-primair); }
.decoratie-streep:nth-child(2) { background: var(--kleur-accent); }

.nieuws-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.nieuws-kaart {
    background: white;
    border-radius: var(--rand-radius);
    overflow: hidden;
    box-shadow: var(--schaduw-kaart);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nieuws-kaart:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.kaart-afbeelding {
    height: 160px;
    background: var(--kleur-grijs);
    overflow: hidden;
}

.kaart-afbeelding img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kaart-inhoud {
    padding: 1.25rem;
}

.kaart-titel {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    color: var(--kleur-tekst);
}

.kaart-titel a {
    color: inherit;
}

.kaart-titel a:hover {
    color: var(--kleur-primair);
}

.kaart-datum {
    font-size: 0.75rem;
    color: var(--kleur-primair);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.kaart-beschrijving {
    font-size: 0.9rem;
    color: var(--kleur-tekst-licht);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.kaart-beschrijving a {
    color: var(--kleur-primair);
}

.kaart-beschrijving a:hover {
    color: var(--kleur-primair-donker);
}

.lees-verder {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--kleur-primair);
}

.lees-verder:hover {
    color: var(--kleur-primair-donker);
}

.site-footer {
    background: var(--kleur-footer);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-kolommen {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-bottom: 2rem;
}

.footer-kolom h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-kolom p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.95;
}

.footer-kolom a {
    color: white;
    text-decoration: underline;
}

.footer-kolom a:hover {
    opacity: 0.8;
}

.footer-kolom .knop-primair {
    background: rgba(255,255,255,0.15);
    margin-top: 1rem;
}

.footer-kolom .knop-primair:hover {
    background: rgba(255,255,255,0.25);
}

.footer-onderkant {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-copyright a {
    color: white;
}

.footer-logo img {
    height: 40px;
    opacity: 0.9;
}

.cookie-melding {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--kleur-primair-donker);
    color: white;
    padding: 1rem;
    z-index: 1000;
    display: none;
}

.cookie-melding.zichtbaar {
    display: block;
}

.cookie-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-tekst {
    font-size: 0.9rem;
}

.cookie-tekst a {
    color: white;
    text-decoration: underline;
}

.cookie-knoppen {
    display: flex;
    gap: 0.75rem;
}

.cookie-accepteren {
    background: white;
    color: var(--kleur-primair-donker);
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: var(--rand-radius);
    font-weight: 600;
    cursor: pointer;
}

.cookie-weigeren {
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 0.5rem 1.25rem;
    border-radius: var(--rand-radius);
    cursor: pointer;
}

.mobiel-menu-knop {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--kleur-tekst);
}

@media (max-width: 992px) {
    .nieuws-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-kolommen {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
    }
    
    .mobiel-menu-knop {
        display: block;
    }
    
    .main-navigation {
        display: none;
        width: 100%;
        padding-top: 1rem;
    }
    
    .main-navigation.open {
        display: block;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-navigation a {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--kleur-grijs);
    }
    
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-afbeelding {
        order: -1;
    }
    
    .nieuws-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-kolommen {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-onderkant {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-title {
        font-size: 1.5rem;
    }
    
    .hero-tekst {
        font-size: 1.1rem;
    }
    
    .sectie-titel {
        font-size: 1.4rem;
    }
}
