/* =========================================================
   Stichting Buurtgroep Capelle-West — huisstijl
   Design tokens: warm, vriendelijk zomer-/buurtgevoel.
   Coral primair, crème achtergrond, witte kaarten.
   ========================================================= */

:root {
    /* --- Brand kleuren --- */
    --coral:        #E87B4E;   /* primary */
    --coral-donker: #C85F30;
    --coral-licht:  #FAEDE2;   /* zachte tint voor hovers/vlakken */
    --zon:          #F5B942;   /* zon geel */
    --blad:         #6FAE7A;   /* blad groen */
    --lucht:        #7EC8E3;   /* lucht blauw */
    --roos:         #E88B99;   /* zacht roos */

    /* --- Neutrals --- */
    --achtergrond:  #FBF5EC;   /* cream achtergrond */
    --wit:          #FFFFFF;   /* surface */
    --grijs:        #EBDFC9;   /* border */
    --tekst:        #2D2824;   /* tekst */
    --tekst-zacht:  #6E625A;   /* tekst secundair */
    --tekst-muted:  #A69B92;   /* tekst muted */

    /* --- Aliassen (behouden voor bestaande klassen) --- */
    --groen:        var(--coral);
    --groen-donker: var(--coral-donker);
    --groen-licht:  var(--coral-licht);
    --accent:       var(--coral);
    --accent-donker:var(--coral-donker);

    /* --- Afrondingen --- */
    --radius-small: 6px;
    --radius-klein: 10px;   /* medium */
    --radius:       16px;   /* large — kaarten */
    --radius-xl:    22px;   /* hero */

    /* --- Spacing schaal: 4 · 8 · 12 · 16 · 20 · 28 · 40 --- */
    --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
    --sp-5: 20px; --sp-6: 28px; --sp-7: 40px;

    /* --- Schaduwen (warm) --- */
    --schaduw:       0 6px 22px rgba(45, 40, 36, 0.07);
    --schaduw-sterk: 0 16px 40px rgba(45, 40, 36, 0.13);

    --max: 1140px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Nunito', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;            /* body · 15 */
    color: var(--tekst);
    background: var(--achtergrond);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: inherit;
    font-weight: 800;           /* display · bold */
    line-height: 1.15;
    color: var(--tekst);
    margin: 0 0 .5em;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(1.9rem, 5vw, 2.9rem); }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); }
h3 { font-size: 1.2rem; font-weight: 700; }   /* heading · 17 semibold-gevoel */

p { margin: 0 0 1rem; }

a { color: var(--coral-donker); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 22px; }

/* Tekst-hulpklassen uit de tokens */
.caption { font-size: 13px; color: var(--tekst-zacht); }
.label {
    font-size: 11px; font-weight: 700; letter-spacing: .06em;
    text-transform: uppercase; color: var(--tekst-muted);
}

.skip-link {
    position: absolute; left: -999px; top: 0;
    background: var(--coral); color: #fff; padding: 10px 16px; z-index: 1000; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Knoppen ---------- */
.knop {
    display: inline-block;
    background: var(--coral);
    color: #fff;
    padding: 12px 24px;
    border-radius: 999px;       /* full · pill */
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
    box-shadow: 0 4px 14px rgba(232, 123, 78, .35);
}
.knop:hover { background: var(--coral-donker); text-decoration: none; transform: translateY(-2px); }
.knop.secundair {
    background: var(--wit); color: var(--coral-donker);
    box-shadow: inset 0 0 0 2px var(--coral);
}
.knop.secundair:hover { background: var(--coral-licht); }

/* ---------- Status / feedback chips ---------- */
.chip {
    display: inline-block; padding: 4px 12px; border-radius: 999px;
    font-size: 12px; font-weight: 700; line-height: 1.4;
}
.chip-bezig     { background: #e4f1e7; color: #3f7a52; }   /* Nu bezig — groen */
.chip-binnenkort{ background: #fdf0d6; color: #a9791a; }   /* Over 15 min — geel */
.chip-nieuw     { background: #fae3d8; color: var(--coral-donker); } /* Nieuw — coral */
.chip-gewijzigd { background: #fbe1e5; color: #b14250; }   /* Gewijzigd — roos */
.chip-afgerond  { background: #efe9e2; color: var(--tekst-muted); } /* Afgerond — muted */

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--grijs);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 12px 22px; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo:hover { text-decoration: none; }
.logo-mark {
    display: grid; place-items: center;
    width: 44px; height: 44px;
    background: var(--coral); color: #fff;
    border-radius: var(--radius-klein);
    font-weight: 800; font-size: 1.05rem;
}
.logo-mark.groot { width: 56px; height: 56px; font-size: 1.35rem; }
.logo-tekst { display: flex; flex-direction: column; line-height: 1.05; }
.logo-tekst strong { font-size: 1.15rem; font-weight: 800; color: var(--tekst); }
.logo-tekst small { color: var(--tekst-zacht); font-weight: 600; letter-spacing: .02em; }

.hoofdnav > ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.hoofdnav a {
    display: block; padding: 9px 14px; border-radius: var(--radius-small);
    color: var(--tekst); font-weight: 600; font-size: .98rem;
}
.hoofdnav a:hover { background: var(--coral-licht); text-decoration: none; }
.hoofdnav a.actief { color: var(--coral-donker); }
.hoofdnav a.nav-knop { background: var(--coral); color: #fff; }
.hoofdnav a.nav-knop:hover { background: var(--coral-donker); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--tekst); border-radius: 3px; transition: .2s; }

/* Dropdown-submenu */
.heeft-submenu { position: relative; }
/* Onzichtbaar brugje over de tussenruimte, zodat het menu niet sluit als je er met de muis naartoe gaat. */
.heeft-submenu:hover::after { content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 12px; }
.caret { font-size: .7em; opacity: .7; }
.submenu {
    position: absolute; top: 100%; left: 0; min-width: 210px;
    background: var(--wit); border: 1px solid var(--grijs); border-radius: var(--radius-klein);
    box-shadow: var(--schaduw); padding: 6px; margin: 6px 0 0; list-style: none;
    display: none; z-index: 101;
}
.heeft-submenu:hover > .submenu, .heeft-submenu:focus-within > .submenu { display: block; }
.submenu li { width: 100%; }
.submenu a { display: block; padding: 9px 12px; border-radius: 6px; white-space: nowrap; font-size: .96rem; }
.submenu a:hover { background: var(--coral-licht); text-decoration: none; }

/* ---------- Hero ---------- */
.hero {
    background:
        radial-gradient(1100px 520px at 86% -12%, rgba(245,185,66,.30), transparent 58%),
        radial-gradient(900px 480px at 8% 10%, rgba(232,123,78,.16), transparent 55%),
        var(--achtergrond);
    padding: clamp(48px, 8vw, 92px) 0;
}
.hero .container { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero-tekst .pill {
    display: inline-block; background: #fff; color: var(--coral-donker);
    padding: 6px 14px; border-radius: 999px; font-weight: 700; font-size: .85rem;
    box-shadow: var(--schaduw); margin-bottom: 18px;
}
.hero-tekst p.lead { font-size: 1.15rem; color: var(--tekst-zacht); max-width: 38ch; }
.hero-acties { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.hero-beeld {
    aspect-ratio: 4/3; border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--coral), var(--zon));
    box-shadow: var(--schaduw-sterk);
    display: grid; place-items: center; color: #fff; text-align: center; padding: 24px;
}

/* ---------- Secties ---------- */
.sectie { padding: clamp(48px, 7vw, 84px) 0; }
.sectie-kop { text-align: center; max-width: 60ch; margin: 0 auto 44px; }
.sectie-kop p { color: var(--tekst-zacht); }
.sectie.licht { background: var(--wit); }

/* ---------- Kaarten ---------- */
.kaart-rij { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 26px; }
.kaart {
    background: var(--wit); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--schaduw); border: 1px solid var(--grijs);
    display: flex; flex-direction: column; transition: transform .15s ease, box-shadow .15s ease;
}
.kaart:hover { transform: translateY(-4px); box-shadow: var(--schaduw-sterk); }
.kaart-beeld { aspect-ratio: 16/10; background: var(--coral-licht); display: grid; place-items: center; color: var(--coral); font-size: 1.8rem; }
.kaart-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.kaart .datum { color: var(--coral-donker); font-weight: 700; font-size: .9rem; margin-bottom: 4px; }
.kaart h3 { margin-bottom: 8px; }
.kaart p { color: var(--tekst-zacht); font-size: .97rem; }
.kaart .kaart-voet { margin-top: auto; padding-top: 12px; }

/* ---------- Bestuur ---------- */
.bestuur-rij { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin-top: 18px; }
.bestuur-kaart { background: var(--wit); border: 1px solid var(--grijs); border-radius: var(--radius); box-shadow: var(--schaduw); padding: 20px; }
.bestuur-kaart .rol { display: inline-block; background: var(--coral-licht); color: var(--coral-donker); font-weight: 700; font-size: .8rem; padding: 3px 11px; border-radius: 999px; margin-bottom: 10px; }
.bestuur-kaart strong { display: block; font-size: 1.1rem; }
.bestuur-kaart p { margin: 6px 0 0; color: var(--tekst-zacht); font-size: .95rem; }

/* ---------- Zaalverhuur tarieven ---------- */
.zaal-tarieven { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; margin-top: 18px; }
.zaal-blok { background: var(--wit); border: 1px solid var(--grijs); border-radius: var(--radius); box-shadow: var(--schaduw); overflow: hidden; }
.zaal-kop { padding: 18px 20px 14px; border-bottom: 1px solid var(--grijs); }
.zaal-kop h3 { margin: 0 0 4px; }
.zaal-kop .capaciteit { margin: 0; color: var(--tekst-zacht); font-size: .95rem; }
.zaal-blok .info-tabel { box-shadow: none; min-width: 0; }
.zaal-blok .info-tabel td, .zaal-blok .info-tabel th { white-space: normal; }

/* ---------- Fotogalerij ---------- */
.foto-galerij { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.galerij-item { display: block; border-radius: var(--radius-klein); overflow: hidden; box-shadow: var(--schaduw); }
.galerij-item img { width: 100%; height: 180px; object-fit: cover; transition: transform .25s ease; }
.galerij-item:hover img { transform: scale(1.05); }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 1100; background: rgba(20,16,14,.93); display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox:not([hidden]) { display: flex; }
.lb-figuur { margin: 0; max-width: 92vw; max-height: 88vh; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.lb-figuur img { max-width: 92vw; max-height: 82vh; object-fit: contain; border-radius: 8px; box-shadow: 0 12px 44px rgba(0,0,0,.5); }
.lb-figuur figcaption { color: #fff; font-size: .95rem; text-align: center; }
.lb-sluit, .lb-nav {
    background: rgba(255,255,255,.16); color: #fff; border: none; cursor: pointer;
    border-radius: 50%; line-height: 1; display: grid; place-items: center; transition: background .2s;
}
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 2rem; }
.lb-vorige { left: 16px; } .lb-volgende { right: 16px; }
.lb-sluit { position: absolute; top: 16px; right: 20px; width: 44px; height: 44px; font-size: 1.6rem; }
.lb-sluit:hover, .lb-nav:hover { background: rgba(255,255,255,.32); }
.lb-teller { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); color: #fff; font-weight: 600; font-size: .9rem; background: rgba(0,0,0,.35); padding: 4px 14px; border-radius: 999px; }
@media (max-width: 600px) {
    .lb-nav { width: 44px; height: 44px; font-size: 1.6rem; }
    .lb-vorige { left: 8px; } .lb-volgende { right: 8px; }
}

/* ---------- Nieuwsartikel ---------- */
.nieuws-tekst { font-size: 1.02rem; }
.nieuws-tekst :first-child { margin-top: 0; }
.nieuws-tekst h2, .nieuws-tekst h3 { margin-top: 1.4em; }
.nieuws-koppeling {
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
    margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--grijs);
}
.nieuws-koppeling span { color: var(--tekst-zacht); font-weight: 600; }

/* ---------- Inhoudsblok ---------- */
.inhoud { max-width: 820px; margin: 0 auto; }
.inhoud h2 { margin-top: .2em; }
.inhoud h3 { margin-top: 1.6em; }
.inhoud ul, .inhoud ol { margin: 0 0 1rem; padding-left: 1.3rem; }
.inhoud li { margin-bottom: 6px; }

/* ---------- Snelkoppelingen (anker-navigatie) ---------- */
.snel-links { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 0 0 40px; }
.snel-links a {
    background: var(--wit); border: 1px solid var(--grijs); color: var(--tekst);
    padding: 8px 16px; border-radius: 999px; font-weight: 700; font-size: .9rem;
    box-shadow: var(--schaduw);
}
.snel-links a:hover { background: var(--coral-licht); color: var(--coral-donker); text-decoration: none; border-color: var(--coral-licht); }
/* Voorkom dat de sticky header de aangesprongen titel bedekt. */
section[id] { scroll-margin-top: 84px; }

/* ---------- Informatietabellen ---------- */
.tabel-wikkel { overflow-x: auto; margin: 18px 0 24px; border-radius: var(--radius-klein); }
.info-tabel { width: 100%; border-collapse: collapse; background: var(--wit); min-width: 460px; }
.info-tabel th, .info-tabel td { padding: 11px 16px; text-align: left; border-bottom: 1px solid var(--grijs); white-space: nowrap; }
.info-tabel thead th { background: var(--coral-licht); color: var(--coral-donker); font-weight: 700; }
.info-tabel tbody tr:nth-child(even) { background: #fcf8f2; }
.info-tabel tbody tr:last-child td { border-bottom: none; }
.info-tabel.prijzen td:last-child { font-weight: 700; color: var(--coral-donker); }

/* ---------- Formulieren ---------- */
.form-veld { margin-bottom: 18px; }
.form-veld label { display: block; font-weight: 700; margin-bottom: 6px; }
.form-veld input, .form-veld textarea, .form-veld select {
    width: 100%; padding: 12px 14px; border: 1px solid var(--grijs);
    border-radius: var(--radius-klein); font: inherit; background: #fff;
}
.form-veld input:focus, .form-veld textarea:focus {
    outline: none; border-color: var(--coral); box-shadow: 0 0 0 3px var(--coral-licht);
}
.melding { padding: 14px 18px; border-radius: var(--radius-klein); margin-bottom: 20px; }
.melding.ok { background: #e4f1e7; color: #3f7a52; border: 1px solid #bfe0c9; }
.melding.fout { background: #fbe1e5; color: #b14250; border: 1px solid #f3c2cb; }

/* ---------- Footer ---------- */
.site-footer { background: var(--tekst); color: #d8cfc6; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; padding: 56px 22px 40px; }
.footer-kolom h3 { color: #fff; font-size: 1.05rem; }
.footer-kolom ul { list-style: none; padding: 0; margin: 0; }
.footer-kolom li { margin-bottom: 8px; }
.site-footer a { color: #d8cfc6; }
.site-footer a:hover { color: #fff; }
.footer-onder { border-top: 1px solid rgba(255,255,255,.14); }
.footer-onder-inner {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 6px 18px; padding: 16px 22px;
}
.footer-onder p { margin: 0; font-size: .9rem; color: #b3a89f; }
.footer-meta .scheiding { margin: 0 8px; color: #6f655d; }

/* ---------- Uitgelichte banner (homepage) ---------- */
.uitgelicht {
    display: flex; align-items: stretch; border-radius: var(--radius-xl); overflow: hidden;
    box-shadow: var(--schaduw-sterk); margin-bottom: 22px; min-height: 260px;
}
.uitgelicht:hover { text-decoration: none; transform: translateY(-3px); transition: transform .15s; }
.uitgelicht-beeld { flex: 1 1 50%; min-width: 0; }
.uitgelicht-beeld img { width: 100%; height: 100%; object-fit: cover; display: block; }
.uitgelicht-inhoud {
    flex: 1 1 50%; background: linear-gradient(135deg, var(--coral), var(--coral-donker));
    color: #fff; padding: 32px 36px; display: flex; flex-direction: column; justify-content: center;
}
.uitgelicht:not(.heeft-beeld) .uitgelicht-inhoud { flex-basis: 100%; }
.uitgelicht-inhoud h2 { color: #fff; margin: 10px 0 6px; }
.uitgelicht-inhoud .wanneer { font-weight: 700; margin: 0 0 8px; }
.uitgelicht-inhoud .chip-nieuw { align-self: flex-start; background: rgba(255,255,255,.92); color: var(--coral-donker); }
.uitgelicht-tekst { margin: 0 0 18px; opacity: .95; }
.uitgelicht-inhoud .knop { align-self: flex-start; background: #fff; color: var(--coral-donker); box-shadow: none; }
.uitgelicht-inhoud .knop:hover { background: var(--achtergrond); }

/* ---------- Agenda: tabs ---------- */
.agenda-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 30px; flex-wrap: wrap; }
.agenda-tab {
    background: var(--wit); border: 1px solid var(--grijs); color: var(--tekst);
    padding: 9px 20px; border-radius: 999px; font: inherit; font-weight: 700; cursor: pointer;
}
.agenda-tab:hover { background: var(--coral-licht); }
.agenda-tab.actief { background: var(--coral); color: #fff; border-color: var(--coral); }

/* ---------- Agenda: lijst ---------- */
.agenda-maand { margin: 30px 0 14px; padding-bottom: 8px; border-bottom: 2px solid var(--coral-licht); }
.agenda-lijst { display: flex; flex-direction: column; gap: 10px; }
.agenda-item {
    display: flex; align-items: center; gap: 18px; width: 100%; text-align: left;
    background: var(--wit); border: 1px solid var(--grijs); border-radius: var(--radius-klein);
    padding: 12px 16px; cursor: pointer; font: inherit; color: var(--tekst);
    box-shadow: var(--schaduw); transition: transform .12s ease, box-shadow .12s ease;
}
.agenda-item:hover { transform: translateY(-2px); box-shadow: var(--schaduw-sterk); }
.agenda-datum {
    flex: 0 0 56px; text-align: center; background: var(--coral-licht); color: var(--coral-donker);
    border-radius: var(--radius-small); padding: 6px 0; line-height: 1.1;
}
.agenda-datum .dag { display: block; font-size: 1.4rem; font-weight: 800; }
.agenda-datum .maand { display: block; font-size: .75rem; text-transform: uppercase; font-weight: 700; }
.agenda-info { display: flex; flex-direction: column; gap: 2px; }
.agenda-info strong { font-size: 1.05rem; }
.agenda-sub { color: var(--tekst-zacht); font-size: .9rem; }
.agenda-item.is-afgelast { opacity: .7; }
.agenda-item.is-afgelast .agenda-info strong { text-decoration: line-through; text-decoration-color: var(--roos); }

/* ---------- Agenda: kalender ---------- */
.kalender-kop { display: flex; align-items: center; justify-content: center; gap: 18px; margin-bottom: 16px; }
.kalender-kop strong { font-size: 1.15rem; min-width: 180px; text-align: center; }
.kalender { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.kal-kop { text-align: center; font-weight: 700; color: var(--tekst-muted); font-size: .8rem; text-transform: uppercase; padding: 4px 0; }
.kal-cel { background: var(--wit); border: 1px solid var(--grijs); border-radius: 8px; min-height: 92px; padding: 6px; }
.kal-cel.leeg { background: transparent; border: none; }
.kal-cel.vandaag { border-color: var(--coral); box-shadow: inset 0 0 0 1px var(--coral); }
.kal-dagnr { display: block; font-weight: 700; font-size: .85rem; color: var(--tekst-zacht); margin-bottom: 4px; }
.kal-item {
    display: block; width: 100%; text-align: left; border: none; cursor: pointer;
    background: var(--coral-licht); color: var(--coral-donker); border-radius: 6px;
    padding: 3px 6px; margin-bottom: 3px; font: inherit; font-size: .78rem; font-weight: 700;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.kal-item:hover { background: var(--coral); color: #fff; }
.kal-item.is-afgelast { text-decoration: line-through; opacity: .7; }

/* ---------- Modal ---------- */
.modal-overlay { position: fixed; inset: 0; background: rgba(31,28,25,.6); z-index: 1000; padding: 20px; display: none; }
.modal-overlay:not([hidden]) { display: flex; align-items: flex-start; justify-content: center; overflow-y: auto; }
.modal {
    background: var(--wit); border-radius: var(--radius); max-width: 600px; width: 100%;
    margin: auto; box-shadow: var(--schaduw-sterk); position: relative; overflow: hidden;
}
.modal-sluit {
    position: absolute; top: 12px; right: 12px; z-index: 2;
    width: 38px; height: 38px; border-radius: 50%; border: none; cursor: pointer;
    background: rgba(255,255,255,.9); font-size: 1.4rem; line-height: 1; color: var(--tekst);
}
.modal-sluit:hover { background: #fff; }
.modal-beeld { width: 100%; max-height: 280px; object-fit: cover; }
.modal-body { padding: 24px 26px 26px; }
.modal-body h2 { margin: 0 0 4px; }
.modal-wanneer { color: var(--coral-donker); font-weight: 700; margin: 0 0 14px; }
.modal-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.meta-chip { background: var(--achtergrond); border: 1px solid var(--grijs); border-radius: 999px; padding: 5px 12px; font-size: .9rem; font-weight: 600; }
.modal-tekst { color: var(--tekst); }
.modal-tekst :first-child { margin-top: 0; }
.modal-acties { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }

/* ---------- Sponsorbalk (homepage) ---------- */
.sponsor-balk {
    overflow: hidden; padding: 10px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.sponsor-track { display: flex; align-items: center; gap: 56px; width: max-content; animation: sponsor-scroll 38s linear infinite; }
.sponsor-balk:hover .sponsor-track { animation-play-state: paused; }
.sponsor-logo { flex: 0 0 auto; display: inline-flex; align-items: center; }
.sponsor-logo img {
    height: 62px; width: auto; max-width: 180px; object-fit: contain;
    filter: grayscale(1) sepia(.5) brightness(.97); opacity: .8;
    transition: filter .25s ease, opacity .25s ease;
}
.sponsor-logo:hover img { filter: none; opacity: 1; }
@keyframes sponsor-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
    .sponsor-track { animation: none; flex-wrap: wrap; justify-content: center; }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
    .uitgelicht { flex-direction: column; }
    .uitgelicht-beeld { flex-basis: auto; }
    .uitgelicht-beeld img { height: 200px; }
    .kal-cel { min-height: 64px; }
    .kal-item { font-size: 0; padding: 5px; }
    .kal-item::before { content: '•'; font-size: 1rem; }
    .nav-toggle { display: flex; }
    .hoofdnav {
        position: absolute; top: 100%; left: 0; right: 0;
        background: #fff; border-bottom: 1px solid var(--grijs);
        max-height: 0; overflow: hidden; transition: max-height .25s ease;
    }
    .hoofdnav.open { max-height: 760px; }
    .hoofdnav > ul { flex-direction: column; align-items: stretch; gap: 0; padding: 10px 16px 18px; }
    .hoofdnav a { padding: 12px 10px; border-radius: var(--radius-small); }
    .hoofdnav a.nav-knop { text-align: center; margin-top: 6px; }
    /* Submenu op mobiel: ingesprongen en altijd zichtbaar */
    .submenu { position: static; display: block; box-shadow: none; border: none; padding: 0 0 0 16px; margin: 0; min-width: 0; }
    .submenu a { padding: 10px; color: var(--tekst-zacht); }
    .caret { display: none; }
    .hero .container { grid-template-columns: 1fr; }
    .hero-beeld { order: -1; }
    .footer-grid { grid-template-columns: 1fr; gap: 26px; padding: 40px 22px 30px; }
}
