/* =====================================================================
   MODANCE BY NAOMI - stylesheet
   Volgorde: variabelen -> reset -> typografie -> layout -> componenten
             -> pagina's -> utilities -> media queries
   Mobile-first. Getest op 360, 768, 1024 en 1440 px.
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. VARIABELEN
   Kleuren en typografie zijn afgeleid van het bestaande Instagram-
   beeldmateriaal en de kleurenkaart van de dansschool.
   --------------------------------------------------------------------- */
:root {
    /* Merkkleuren - monochroom palet (zwart-wit).
       De variabelenamen zijn bewust ongewijzigd zodat alle bestaande
       regels blijven werken; alleen de waarden zijn nu grijstinten. */
    --rood:            #101010;   /* primaire merkkleur, nu zwart */
    --rood-diep:       #000000;   /* hover, dieper zwart */
    --rood-fel:        #3a3a3a;
    --room:            #e8e8e8;   /* lichte tekst op donkere vlakken */
    --room-licht:      #f5f5f5;   /* paginaachtergrond */
    --inkt:            #0a0a0a;
    --inkt-zacht:      #1c1c1c;
    --accent:          #0a0a0a;   /* accent op lichte vlakken = zwart */
    --accent-diep:     #000000;
    --accent-licht:    #ffffff;   /* accent op donkere vlakken = wit */
    --mint:            #f0f0f0;
    --grijs:           #6a6a6a;
    --grijs-licht:     #d5d5d5;
    --wit:             #ffffff;

    /* Statuskleuren - grijstinten, onderscheid via rand en tekstgewicht */
    --succes:          #2e2e2e;
    --succes-zacht:    #ededed;
    --fout:            #000000;
    --fout-zacht:      #e4e4e4;
    --info-zacht:      #f0f0f0;

    /* Typografie */
    --font-kop: "Helvetica Neue", "Helvetica Neue LT Std", "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-tekst: "Helvetica Neue", Helvetica, Arial, sans-serif;

    --tekst-xs:  0.8125rem;
    --tekst-s:   0.9375rem;
    --tekst-m:   1rem;
    --tekst-l:   1.125rem;
    --kop-s:     clamp(1.25rem, 1rem + 1vw, 1.5rem);
    --kop-m:     clamp(1.5rem, 1.1rem + 2vw, 2.25rem);
    --kop-l:     clamp(2rem, 1.2rem + 4vw, 3.5rem);
    --kop-xl:    clamp(2.75rem, 1.5rem + 7vw, 6rem);

    /* Spacing-schaal */
    --ruimte-1: 0.25rem;
    --ruimte-2: 0.5rem;
    --ruimte-3: 0.75rem;
    --ruimte-4: 1rem;
    --ruimte-5: 1.5rem;
    --ruimte-6: 2rem;
    --ruimte-7: 3rem;
    --ruimte-8: 4rem;
    --ruimte-9: 6rem;

    /* Vorm */
    --rond-s:  6px;
    --rond-m:  12px;
    --rond-l:  20px;
    --rond-vol: 999px;

    --schaduw-s: 0 1px 2px rgba(0, 0, 0, .06), 0 2px 8px rgba(0, 0, 0, .05);
    --schaduw-m: 0 4px 12px rgba(0, 0, 0, .08), 0 12px 32px rgba(0, 0, 0, .07);
    --schaduw-l: 0 12px 40px rgba(0, 0, 0, .16);

    --overgang: 180ms ease;
    --kop-hoogte: 72px;
}

/* Bootstrap-variabelen overschrijven met het eigen palet */
:root {
    --bs-primary: #101010;
    --bs-primary-rgb: 16, 16, 16;
    --bs-body-color: #0a0a0a;
    --bs-body-bg: #f5f5f5;
    --bs-body-font-family: var(--font-tekst);
    --bs-border-radius: var(--rond-m);
    --bs-link-color: #101010;
    --bs-link-hover-color: #000000;
}

/* ---------------------------------------------------------------------
   2. RESET
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    margin: 0;
    min-height: 100vh;
    background: var(--room-licht);
    color: var(--inkt);
    font-family: var(--font-tekst);
    font-size: var(--tekst-m);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img, picture, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }

button, input, select, textarea { font: inherit; color: inherit; }

ul, ol { margin: 0; padding: 0; }
li { list-style: none; }

a { color: var(--rood); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--rood-diep); }

:focus-visible {
    outline: 3px solid currentColor;
    outline-offset: 3px;
    border-radius: var(--rond-s);
}

hr { border: 0; border-top: 1px solid var(--grijs-licht); margin: var(--ruimte-6) 0; }

/* ---------------------------------------------------------------------
   3. TYPOGRAFIE
   --------------------------------------------------------------------- */
h1, h2, h3, h4 {
    margin: 0 0 var(--ruimte-3);
    font-family: var(--font-kop);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

p { margin: 0 0 var(--ruimte-4); }
p:last-child { margin-bottom: 0; }

strong { font-weight: 700; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.875em; background: var(--room); padding: 0.1em 0.4em; border-radius: var(--rond-s); }

.rijketekst { max-width: 62ch; }
.rijketekst p { margin-bottom: var(--ruimte-4); }
.rijketekst ul { margin: 0 0 var(--ruimte-4) var(--ruimte-5); }
.rijketekst li { list-style: disc; margin-bottom: var(--ruimte-2); }
.rijketekst--smal { max-width: 70ch; }

.hulptekst { margin: var(--ruimte-1) 0 0; font-size: var(--tekst-xs); color: var(--grijs); }
.leegmelding { padding: var(--ruimte-6) 0; color: var(--grijs); text-align: center; }
.grootcijfer {
    margin: 0 0 var(--ruimte-2);
    font-family: var(--font-kop);
    font-size: var(--kop-xl);
    font-weight: 800;
    line-height: 1;
    color: var(--rood);
}

/* ---------------------------------------------------------------------
   4. LAYOUT
   --------------------------------------------------------------------- */
.container { width: 100%; max-width: 1240px; margin-inline: auto; padding-inline: var(--ruimte-4); }

.sectie { padding-block: var(--ruimte-7); }
.sectie--smal { padding-block: var(--ruimte-7); }
.sectie--gecentreerd { text-align: center; padding-block: var(--ruimte-9); }
.sectie--rood { background: var(--rood); color: var(--room); }
.sectie--rood a { color: var(--room); }

.sectie__kop {
    display: flex;
    flex-wrap: wrap;
    gap: var(--ruimte-3);
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: var(--ruimte-5);
}
.sectie__titel { font-size: var(--kop-m); margin-bottom: var(--ruimte-4); }
.sectie__titel--licht { color: var(--room); }
.sectie__link { font-weight: 700; text-decoration: none; }
.sectie__link:hover { text-decoration: underline; }

.skip-link {
    position: absolute;
    left: var(--ruimte-4);
    top: -100px;
    z-index: 1200;
    padding: var(--ruimte-3) var(--ruimte-4);
    background: var(--inkt);
    color: var(--room);
    border-radius: var(--rond-m);
    text-decoration: none;
    transition: top var(--overgang);
}
.skip-link:focus { top: var(--ruimte-3); color: var(--room); }

/* ---------------------------------------------------------------------
   5. COMPONENTEN
   --------------------------------------------------------------------- */

/* 5.1 Header en navigatie */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(245, 245, 245, .94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--grijs-licht);
}
.site-header__binnen {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--ruimte-4);
    min-height: var(--kop-hoogte);
}

.merk { display: inline-flex; flex-direction: column; text-decoration: none; color: var(--rood); line-height: 1; }
.merk__woord { font-family: var(--font-kop); font-size: 1.5rem; font-weight: 800; letter-spacing: -0.03em; }
.merk__sub { font-size: 0.6875rem; letter-spacing: .18em; text-transform: uppercase; color: var(--grijs); }
.merk--footer { margin-bottom: var(--ruimte-3); color: var(--room); }
.merk--footer .merk__sub { color: rgba(232, 232, 232, .7); }

.hamburger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--grijs-licht);
    border-radius: var(--rond-s);
    background: transparent;
    cursor: pointer;
}
.hamburger span { display: block; height: 2px; background: var(--inkt); transition: transform var(--overgang), opacity var(--overgang); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hoofdmenu {
    position: fixed;
    inset: var(--kop-hoogte) 0 auto 0;
    max-height: calc(100vh - var(--kop-hoogte));
    overflow-y: auto;
    padding: var(--ruimte-5) var(--ruimte-4) var(--ruimte-6);
    background: var(--room-licht);
    border-bottom: 1px solid var(--grijs-licht);
    transform: translateY(-120%);
    transition: transform var(--overgang);
}
.hoofdmenu.is-open { transform: translateY(0); }
.hoofdmenu__lijst { display: flex; flex-direction: column; gap: var(--ruimte-1); margin-bottom: var(--ruimte-5); }
.hoofdmenu__link {
    display: block;
    padding: var(--ruimte-3) var(--ruimte-2);
    border-radius: var(--rond-s);
    font-weight: 600;
    text-decoration: none;
    color: var(--inkt);
}
.hoofdmenu__link:hover { background: var(--room); color: var(--rood); }
.hoofdmenu__link.active { color: var(--rood); background: var(--room); }
.hoofdmenu__acties { display: flex; flex-wrap: wrap; align-items: center; gap: var(--ruimte-3); }

.taalwissel { display: inline-flex; border: 1px solid var(--grijs-licht); border-radius: var(--rond-vol); overflow: hidden; }
.taalwissel__knop {
    padding: 0.35rem 0.75rem;
    font-size: var(--tekst-xs);
    font-weight: 700;
    text-decoration: none;
    color: var(--grijs);
}
.taalwissel__knop.is-actief { background: var(--rood); color: var(--room); }

/* 5.2 Knoppen */
.knop {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--ruimte-2);
    padding: 0.85rem 1.6rem;
    border: 2px solid transparent;
    border-radius: var(--rond-vol);
    font-weight: 700;
    font-size: var(--tekst-s);
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background var(--overgang), color var(--overgang), border-color var(--overgang), transform var(--overgang);
}
.knop:hover { transform: translateY(-1px); }
.knop--vol { background: var(--rood); border-color: var(--rood); color: var(--room); }
.knop--vol:hover { background: var(--rood-diep); border-color: var(--rood-diep); color: var(--room); }
.knop--accent { background: var(--accent); border-color: var(--accent); color: var(--wit); }
.knop--accent:hover { background: transparent; border-color: var(--accent); color: var(--accent); }
/* Op donkere vlakken draait de accentknop om naar wit. */
.hero .knop--accent,
.cta-band .knop--accent,
.sectie--rood .knop--accent { background: var(--accent-licht); border-color: var(--accent-licht); color: var(--inkt); }
.hero .knop--accent:hover,
.cta-band .knop--accent:hover,
.sectie--rood .knop--accent:hover { background: transparent; border-color: var(--accent-licht); color: var(--accent-licht); }
.knop--lijn { background: transparent; border-color: var(--rood); color: var(--rood); }
.knop--lijn:hover { background: var(--rood); color: var(--room); }
.knop--licht { border-color: var(--room); color: var(--room); }
.knop--licht:hover { background: var(--room); color: var(--inkt); }
.knop--gevaar { background: transparent; border-color: var(--fout); color: var(--fout); }
.knop--gevaar:hover { background: var(--fout); color: var(--wit); }
.knop--klein { padding: 0.55rem 1.1rem; font-size: var(--tekst-xs); }
.knop--mini { padding: 0.35rem 0.7rem; font-size: var(--tekst-xs); border-width: 1px; }

/* 5.3 Meldingen */
.meldingen { display: flex; flex-direction: column; gap: var(--ruimte-2); margin-block: var(--ruimte-4); }
.melding { padding: var(--ruimte-3) var(--ruimte-4); border-radius: var(--rond-m); border-left: 4px solid; font-size: var(--tekst-s); }
.melding--succes { background: var(--succes-zacht); border-color: var(--succes); color: #1c1c1c; }
.melding--fout { background: var(--fout-zacht); border-color: var(--fout); color: var(--rood-diep); }
.melding--info { background: var(--info-zacht); border-color: var(--grijs); color: #1c1c1c; }

/* 5.4 Formulieren */
.formulier { display: flex; flex-direction: column; gap: var(--ruimte-4); }
.formulier--inline { flex-direction: row; flex-wrap: wrap; align-items: flex-end; gap: var(--ruimte-3); }
.veld { display: flex; flex-direction: column; gap: var(--ruimte-2); }
.veld--vink { flex-direction: row; align-items: flex-start; gap: var(--ruimte-3); }
.veldgroep { border: 1px solid var(--grijs-licht); border-radius: var(--rond-m); padding: var(--ruimte-4); }
.vinkraster { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: var(--ruimte-2); }

.label { font-size: var(--tekst-s); font-weight: 600; }
.label--vink { font-weight: 400; }
.verplicht { color: var(--rood); }

.invoer {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--grijs-licht);
    border-radius: var(--rond-m);
    background: var(--wit);
    transition: border-color var(--overgang), box-shadow var(--overgang);
}
.invoer:focus { border-color: var(--rood); box-shadow: 0 0 0 3px rgba(0, 0, 0, .12); outline: none; }
.invoer.is-fout { border-color: var(--fout); background: var(--fout-zacht); }
.invoer--code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: var(--tekst-xs); }
textarea.invoer { resize: vertical; min-height: 120px; }

.vinkje { width: 1.15rem; height: 1.15rem; margin-top: 0.25rem; accent-color: var(--rood); flex: none; }
.veldfout { margin: 0; font-size: var(--tekst-xs); font-weight: 600; color: var(--fout); }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.kaartformulier {
    max-width: 460px;
    margin-inline: auto;
    padding: var(--ruimte-6);
    background: var(--wit);
    border-radius: var(--rond-l);
    box-shadow: var(--schaduw-m);
}
.kaartformulier__titel { font-size: var(--kop-s); margin-bottom: var(--ruimte-5); }
.kaartformulier__onder { margin: var(--ruimte-4) 0 0; font-size: var(--tekst-s); text-align: center; }

.filterbalk {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: var(--ruimte-4);
    padding: var(--ruimte-4);
    margin-bottom: var(--ruimte-5);
    background: var(--wit);
    border-radius: var(--rond-m);
    box-shadow: var(--schaduw-s);
}
.filterbalk__veld { flex: 1 1 200px; display: flex; flex-direction: column; gap: var(--ruimte-2); }
.filterbalk__telling { margin: 0; font-size: var(--tekst-s); color: var(--grijs); }

/* 5.5 Kaarten */
.leskaart {
    display: flex;
    flex-direction: column;
    gap: var(--ruimte-3);
    height: 100%;
    padding: var(--ruimte-5);
    background: var(--wit);
    border-radius: var(--rond-l);
    box-shadow: var(--schaduw-s);
    transition: box-shadow var(--overgang), transform var(--overgang);
}
.leskaart:hover { box-shadow: var(--schaduw-m); transform: translateY(-2px); }
.leskaart__stijl { margin: 0; font-size: var(--tekst-xs); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--rood); }
.leskaart__titel { margin: 0; font-size: var(--kop-s); }
.leskaart__meta { display: grid; grid-template-columns: auto 1fr; gap: var(--ruimte-1) var(--ruimte-4); margin: 0; font-size: var(--tekst-s); }
.leskaart__meta dt { font-weight: 600; color: var(--grijs); }
.leskaart__meta dd { margin: 0; }
.leskaart__tekst { font-size: var(--tekst-s); color: var(--grijs); }
.leskaart__link { margin-top: auto; font-weight: 700; font-size: var(--tekst-s); }

.stijlkaart {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--rond-l);
    text-decoration: none;
    aspect-ratio: 4 / 3;
}
.stijlkaart__beeld { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.stijlkaart:hover .stijlkaart__beeld { transform: scale(1.05); }
.stijlkaart__naam {
    position: absolute;
    inset: auto 0 0 0;
    padding: var(--ruimte-5) var(--ruimte-4) var(--ruimte-4);
    background: linear-gradient(transparent, rgba(0, 0, 0, .78));
    color: var(--room);
    font-family: var(--font-kop);
    font-size: var(--kop-s);
    font-weight: 800;
}

.docentkaart { height: 100%; text-align: center; }
.docentkaart__link { text-decoration: none; color: inherit; }
.docentkaart__foto { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--rond-l); margin-bottom: var(--ruimte-3); }
.docentkaart__naam { font-size: var(--kop-s); margin-bottom: var(--ruimte-1); }
.docentkaart__stijlen { margin: 0 0 var(--ruimte-2); font-size: var(--tekst-xs); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--rood); }
.docentkaart__bio { font-size: var(--tekst-s); color: var(--grijs); }

.prijskaart {
    height: 100%;
    padding: var(--ruimte-6) var(--ruimte-5);
    background: var(--wit);
    border: 2px solid transparent;
    border-radius: var(--rond-l);
    box-shadow: var(--schaduw-s);
    text-align: center;
}
.prijskaart--uitgelicht { border-color: var(--inkt); box-shadow: var(--schaduw-m); }
.prijskaart__vlag {
    display: inline-block;
    margin: 0 0 var(--ruimte-3);
    padding: 0.2rem 0.8rem;
    border-radius: var(--rond-vol);
    background: var(--accent);
    color: var(--inkt);
    font-size: var(--tekst-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
}
.prijskaart__naam { font-size: var(--kop-s); margin-bottom: var(--ruimte-2); }
.prijskaart__bedrag { margin: 0; font-family: var(--font-kop); font-size: var(--kop-m); font-weight: 800; color: var(--rood); }
.prijskaart__periode { margin: 0 0 var(--ruimte-3); font-size: var(--tekst-xs); text-transform: uppercase; letter-spacing: .1em; color: var(--grijs); }
.prijskaart__tekst { margin: 0; font-size: var(--tekst-s); color: var(--grijs); }

.infokaart {
    padding: var(--ruimte-5);
    margin-bottom: var(--ruimte-4);
    background: var(--wit);
    border-radius: var(--rond-l);
    box-shadow: var(--schaduw-s);
}
.infokaart__titel { font-size: var(--tekst-l); margin-top: var(--ruimte-4); }
.infokaart__titel:first-child { margin-top: 0; }
.infokaart__adres { font-style: normal; margin-bottom: var(--ruimte-4); }

.infoblok {
    padding: var(--ruimte-6);
    background: var(--mint);
    border-radius: var(--rond-l);
}
.infoblok__titel { font-size: var(--kop-s); }
.infoblok__acties { display: flex; flex-wrap: wrap; gap: var(--ruimte-3); margin-top: var(--ruimte-4); }

/* 5.6 Tabellen */
.openingstijden { width: 100%; border-collapse: collapse; font-size: var(--tekst-s); margin-bottom: var(--ruimte-4); }
.openingstijden th { text-align: left; font-weight: 600; padding: 0.35rem 0; }
.openingstijden td { text-align: right; padding: 0.35rem 0; color: var(--grijs); }

.roosterdag { margin-bottom: var(--ruimte-7); }
.roosterdag__titel { font-size: var(--kop-s); padding-bottom: var(--ruimte-2); border-bottom: 3px solid var(--rood); }

.roostertabel { width: 100%; border-collapse: collapse; }
.roostertabel thead { display: none; }
.roostertabel tbody tr {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--ruimte-1);
    padding: var(--ruimte-4);
    margin-bottom: var(--ruimte-3);
    background: var(--wit);
    border-radius: var(--rond-m);
    box-shadow: var(--schaduw-s);
}
.roostertabel td { padding: 0; font-size: var(--tekst-s); }
.roostertabel td::before {
    content: attr(data-kop) ": ";
    font-weight: 600;
    color: var(--grijs);
}
.roostertabel__stijl { display: block; font-size: var(--tekst-xs); text-transform: uppercase; letter-spacing: .1em; color: var(--rood); }

.tabelwikkel { overflow-x: auto; background: var(--wit); border-radius: var(--rond-m); box-shadow: var(--schaduw-s); }
.admintabel { width: 100%; border-collapse: collapse; font-size: var(--tekst-s); }
.admintabel th, .admintabel td { padding: var(--ruimte-3); text-align: left; vertical-align: middle; border-bottom: 1px solid var(--grijs-licht); }
.admintabel th { background: var(--room); font-weight: 700; white-space: nowrap; }
.admintabel tbody tr:hover { background: var(--room-licht); }
.admintabel__acties { display: flex; flex-wrap: wrap; gap: var(--ruimte-2); }
.admintabel__acties form { display: inline; }

.badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: var(--rond-vol);
    font-size: var(--tekst-xs);
    font-weight: 700;
    background: var(--grijs-licht);
    color: var(--inkt);
}
.badge--nieuw { background: var(--accent); color: var(--wit); }
.badge--in-behandeling { background: #dcdcdc; }
.badge--afgehandeld { background: var(--succes-zacht); color: #1c1c1c; }
.badge--spam { background: var(--fout-zacht); color: var(--inkt); }

.paginering { display: flex; flex-wrap: wrap; gap: var(--ruimte-2); margin-top: var(--ruimte-5); }
.paginering__link {
    min-width: 2.5rem;
    padding: 0.4rem 0.7rem;
    border: 1px solid var(--grijs-licht);
    border-radius: var(--rond-s);
    background: var(--wit);
    text-align: center;
    text-decoration: none;
}
.paginering__link.is-actief { background: var(--rood); border-color: var(--rood); color: var(--room); }

/* 5.7 Galerij en lightbox */
.chipbalk { display: flex; flex-wrap: wrap; gap: var(--ruimte-2); margin-bottom: var(--ruimte-5); }
.chip {
    padding: 0.45rem 1rem;
    border: 1px solid var(--grijs-licht);
    border-radius: var(--rond-vol);
    background: var(--wit);
    font-size: var(--tekst-xs);
    font-weight: 600;
    cursor: pointer;
}
.chip.is-actief { background: var(--rood); border-color: var(--rood); color: var(--room); }

.galerij { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: var(--ruimte-3); }
.galerij__item { list-style: none; }
.galerij__knop { display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; border-radius: var(--rond-m); overflow: hidden; }
.galerij__knop img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform 400ms ease; }
.galerij__knop:hover img { transform: scale(1.05); }

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--ruimte-3);
    padding: var(--ruimte-4);
    background: rgba(0, 0, 0, .94);
}
.lightbox[hidden] { display: none; }
.lightbox__figuur { margin: 0; max-width: min(1100px, 92vw); text-align: center; }
.lightbox__figuur img { max-height: 78vh; width: auto; margin-inline: auto; border-radius: var(--rond-m); }
.lightbox__figuur figcaption { margin-top: var(--ruimte-3); color: var(--room); font-size: var(--tekst-s); }
.lightbox__sluit,
.lightbox__nav {
    flex: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(232, 232, 232, .4);
    border-radius: var(--rond-vol);
    background: rgba(0, 0, 0, .5);
    color: var(--room);
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
}
.lightbox__sluit { position: absolute; top: var(--ruimte-4); right: var(--ruimte-4); font-size: 1.5rem; }
.lightbox__sluit:hover, .lightbox__nav:hover { background: var(--rood); border-color: var(--rood); }

/* 5.8 Overig */
.beeldraster { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--ruimte-3); }
.beeldraster img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--rond-m); }
.beeldraster--breed { grid-template-columns: repeat(2, 1fr); }

.afbeelding-rond { width: 100%; border-radius: var(--rond-l); object-fit: cover; box-shadow: var(--schaduw-m); }
.profielfoto { width: 120px; height: 120px; object-fit: cover; border-radius: var(--rond-vol); margin-bottom: var(--ruimte-2); }

.lijst-schoon li { padding: var(--ruimte-2) 0; border-bottom: 1px solid var(--grijs-licht); }
.lijst-schoon li:last-child { border-bottom: 0; }

.faq__item { background: var(--wit); border-radius: var(--rond-m); margin-bottom: var(--ruimte-3); box-shadow: var(--schaduw-s); }
.faq__vraag { padding: var(--ruimte-4) var(--ruimte-5); font-weight: 700; cursor: pointer; list-style: none; }
.faq__vraag::-webkit-details-marker { display: none; }
.faq__vraag::after { content: "+"; float: right; color: var(--rood); font-size: 1.25rem; line-height: 1; }
.faq__item[open] .faq__vraag::after { content: "−"; }
.faq__antwoord { padding: 0 var(--ruimte-5) var(--ruimte-4); color: var(--grijs); }

.paneel { padding: var(--ruimte-5); margin-bottom: var(--ruimte-4); background: var(--wit); border-radius: var(--rond-m); box-shadow: var(--schaduw-s); }
.paneel__titel { font-size: var(--tekst-l); margin-bottom: var(--ruimte-4); }
.paneel__meta { display: grid; grid-template-columns: auto 1fr; gap: var(--ruimte-1) var(--ruimte-4); margin: 0 0 var(--ruimte-4); font-size: var(--tekst-s); }
.paneel__meta dt { font-weight: 600; color: var(--grijs); }
.paneel__meta dd { margin: 0; }
.paneel__citaat { margin: 0; padding: var(--ruimte-4); background: var(--room-licht); border-left: 3px solid var(--rood); border-radius: var(--rond-s); }

.notitielijst { margin-top: var(--ruimte-4); }
.notitielijst li { padding: var(--ruimte-3) 0; border-top: 1px solid var(--grijs-licht); }
.notitielijst__meta { margin: 0 0 var(--ruimte-1); font-size: var(--tekst-xs); color: var(--grijs); }

.sleeplijst { display: flex; flex-direction: column; gap: var(--ruimte-2); margin-bottom: var(--ruimte-3); }
.sleeplijst__item {
    display: flex;
    align-items: center;
    gap: var(--ruimte-3);
    padding: var(--ruimte-2) var(--ruimte-3);
    background: var(--wit);
    border: 1px solid var(--grijs-licht);
    border-radius: var(--rond-m);
    cursor: grab;
}
.sleeplijst__item.is-sleep { opacity: .45; }
.sleeplijst__greep { color: var(--grijs); letter-spacing: -3px; }
.sleeplijst__naam { flex: 1; font-size: var(--tekst-s); }
.sleeplijst img { border-radius: var(--rond-s); object-fit: cover; }

.cijferraster { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: var(--ruimte-3); margin-bottom: var(--ruimte-6); }
.cijferkaart {
    display: flex;
    flex-direction: column;
    gap: var(--ruimte-1);
    padding: var(--ruimte-4);
    background: var(--wit);
    border-radius: var(--rond-m);
    box-shadow: var(--schaduw-s);
    text-decoration: none;
    color: inherit;
}
.cijferkaart__getal { font-family: var(--font-kop); font-size: 2rem; font-weight: 800; line-height: 1; color: var(--rood); }
.cijferkaart__label { font-size: var(--tekst-xs); text-transform: uppercase; letter-spacing: .08em; color: var(--grijs); }
.cijferkaart--stil .cijferkaart__getal { color: var(--inkt); }

/* ---------------------------------------------------------------------
   6. PAGINA'S
   --------------------------------------------------------------------- */

/* 6.0 Achtergrond en welkomstscherm
   De achtergrond is een video (zie assets/js/achtergrond.js). Het
   verloop hieronder staat erachter en is wat je ziet zolang de video
   nog laadt, of wanneer er geen video is.
   Er wordt geen WebGL of shader meer gebruikt. */
html {
    background:
        radial-gradient(72% 58% at 32% 30%, #262626 0%, #141414 46%, #050505 100%),
        #050505;
    background-attachment: fixed;
}

.achtergrond-video {
    position: fixed;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    opacity: 0;
    transition: opacity 900ms ease;
    pointer-events: none;
}
.achtergrond-video.is-zichtbaar { opacity: 1; }

/* Wie beweging heeft uitgezet krijgt geen video. */
@media (prefers-reduced-motion: reduce) {
    .achtergrond-video { display: none; }
}

.intro {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--ruimte-5);
    text-align: center;
    background: rgba(0, 0, 0, .38);
    /* Het intro verdwijnt op een CSS-timer, dus ook zonder JavaScript.
       De duur staat in --intro-duur hieronder; pas die en de waarde in
       data-intro (layouts/publiek.php) samen aan. */
    animation: intro-verdwijn 700ms ease var(--intro-duur) forwards;
}
.heeft-intro { --intro-duur: 3000ms; }
.heeft-intro .intro { display: flex; }
@keyframes intro-verdwijn {
    from { opacity: 1; visibility: visible; }
    to   { opacity: 0; visibility: hidden; }
}

.intro__binnen {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--ruimte-5);
}
.intro__logo {
    width: clamp(140px, 26vw, 300px);
    height: auto;
    animation: intro-verschijn 900ms ease both;
}

.intro__tekst {
    margin: 0;
    font-family: var(--font-kop);
    font-size: clamp(1.35rem, 4.6vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--wit);
    animation: intro-verschijn 900ms ease 250ms both;
}
@keyframes intro-verschijn {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: none; }
}

/* Tijdens het intro is alleen de bewegende achtergrond te zien; header,
   inhoud en footer verschijnen er direct na. */
.heeft-intro .site-header,
.heeft-intro main,
.heeft-intro .site-footer {
    animation: inhoud-verschijn 600ms ease calc(var(--intro-duur) + 60ms) both;
}
@keyframes inhoud-verschijn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Overslaan met klik, scroll of toets: JavaScript zet deze klasse. */
.intro-over .intro { animation: none; opacity: 0; visibility: hidden; }
.intro-over .site-header,
.intro-over main,
.intro-over .site-footer { animation: none; opacity: 1; }

/* Niet scrollen zolang het intro in beeld staat (alleen met JavaScript). */
.scroll-op-slot,
.scroll-op-slot body { overflow: hidden; }

/* Wie beweging heeft uitgezet krijgt geen intro. */
@media (prefers-reduced-motion: reduce) {
    .heeft-intro .intro { display: none; }
    .heeft-intro .site-header,
    .heeft-intro main,
    .heeft-intro .site-footer { animation: none; opacity: 1; }
}

/* Doorschijnende vlakken zodat de beweging overal doorschemert.
   Pas --vlak-dekking aan om de achtergrond meer of minder te laten
   doorkomen (1 = volledig dicht). */
.heeft-achtergrond {
    --vlak-dekking: .93;
    --vlak-dekking-donker: .90;
    background: transparent;
}
.heeft-achtergrond .sectie,
.heeft-achtergrond .hero-intro { background: rgba(245, 245, 245, var(--vlak-dekking)); }
.heeft-achtergrond .paginakop   { background: rgba(232, 232, 232, var(--vlak-dekking)); }
.heeft-achtergrond .sectie--rood { background: rgba(16, 16, 16, var(--vlak-dekking-donker)); }
.heeft-achtergrond .cta-band     { background: rgba(10, 10, 10, var(--vlak-dekking-donker)); }
.heeft-achtergrond .site-footer  { background: rgba(10, 10, 10, .92); margin-top: 0; }
.heeft-achtergrond main > .container { padding-block: var(--ruimte-4); }

/* 6.1 Hero - schermvullend en minimaal.
   Eerste scherm toont alleen het woordmerk, een korte regel en een
   scrollhint; de knoppen staan bewust onder de vouw. */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100svh;
    color: var(--room);
    background: transparent;
    overflow: hidden;
    text-align: center;
}
.hero__beeld { position: absolute; inset: 0; overflow: hidden; }
.hero__beeld::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 90% at 50% 45%, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .88) 55%, rgba(0, 0, 0, .96) 100%);
}
.hero__beeld img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.05);
    opacity: .38;
}
.hero__binnen {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-block: calc(var(--kop-hoogte) + var(--ruimte-6));
}
.hero__woordmerk {
    margin: 0;
    font-family: var(--font-kop);
    max-width: 100%;
    font-size: clamp(2.5rem, 13.5vw, 11rem);
    font-weight: 800;
    line-height: .92;
    letter-spacing: -0.045em;
    text-transform: uppercase;
    color: var(--wit);
}
.hero__woordmerk-sub {
    display: block;
    margin-top: var(--ruimte-2);
    font-size: clamp(0.75rem, 2.4vw, 1.75rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .3em;
    text-indent: .3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .78);
}

.hero__label {
    margin: var(--ruimte-6) 0 0;
    font-size: var(--tekst-s);
    font-weight: 500;
    letter-spacing: .26em;
    color: rgba(255, 255, 255, .85);
}
a.hero__label { text-decoration: none; }
/* De letterspatiëring zet een extra spatie achter de laatste letter;
   die compenseren we zodat de regel optisch gecentreerd blijft. */
.hero__label { text-indent: .26em; }
a.hero__label:hover { color: var(--wit); text-decoration: underline; text-underline-offset: 6px; }
.hero__scroll {
    position: absolute;
    left: 50%;
    bottom: var(--ruimte-6);
    transform: translateX(-50%);
    z-index: 1;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: var(--ruimte-2);
    font-size: var(--tekst-xs);
    letter-spacing: .18em;
    text-transform: uppercase;
    white-space: nowrap;
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
}
.hero__scroll:hover { color: var(--wit); }
.hero__scroll svg { width: 18px; height: 18px; animation: hero-wenk 2.2s ease-in-out infinite; }
@keyframes hero-wenk {
    0%, 100% { transform: translateY(0); opacity: .6; }
    50%      { transform: translateY(6px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
    .hero__scroll svg { animation: none; }
}

/* Introblok direct onder de hero: hier staan de tekst en de knoppen. */
.hero-intro { padding-block: var(--ruimte-8); border-bottom: 1px solid var(--grijs-licht); scroll-margin-top: var(--kop-hoogte); }
.hero-intro__titel { font-size: var(--kop-l); margin-bottom: var(--ruimte-4); }
.hero-intro__tekst { max-width: 52ch; font-size: var(--tekst-l); color: var(--grijs); margin-bottom: var(--ruimte-5); }
.hero__acties { display: flex; flex-wrap: wrap; gap: var(--ruimte-3); }

/* Doorzichtige header boven de schermvullende hero. */
.heeft-heldere-kop .site-header {
    position: fixed;
    inset-inline: 0;
    background: transparent;
    backdrop-filter: none;
    border-bottom-color: transparent;
    transition: background var(--overgang), border-color var(--overgang);
}
.heeft-heldere-kop .site-header .merk,
.heeft-heldere-kop .site-header .merk__sub { color: var(--wit); }
.heeft-heldere-kop .site-header .hamburger span { background: var(--wit); }
.heeft-heldere-kop .site-header.is-vast {
    background: rgba(245, 245, 245, .94);
    backdrop-filter: blur(10px);
    border-bottom-color: var(--grijs-licht);
}
.heeft-heldere-kop .site-header.is-vast .merk { color: var(--rood); }
.heeft-heldere-kop .site-header.is-vast .merk__sub { color: var(--grijs); }
.heeft-heldere-kop .site-header.is-vast .hamburger span { background: var(--inkt); }

.paginakop { padding-block: var(--ruimte-7) var(--ruimte-4); background: var(--room); }
.paginakop__titel { font-size: var(--kop-m); margin-bottom: var(--ruimte-2); }
.paginakop__intro { max-width: 60ch; margin: 0; color: var(--grijs); }
.paginakop__kruimel { margin: 0 0 var(--ruimte-2); font-size: var(--tekst-xs); text-transform: uppercase; letter-spacing: .1em; }

.cta-band { background: var(--inkt); color: var(--room); }
.cta-band__binnen {
    display: flex;
    flex-direction: column;
    gap: var(--ruimte-4);
    align-items: flex-start;
    padding-block: var(--ruimte-7);
}
.cta-band__titel { font-size: var(--kop-s); color: var(--room); }
.cta-band__tekst { margin: 0; max-width: 60ch; opacity: .85; }

.kaart { border-radius: var(--rond-l); overflow: hidden; box-shadow: var(--schaduw-s); background: var(--wit); }
.kaart iframe { width: 100%; height: 320px; border: 0; }
.kaart__link { margin: 0; padding: var(--ruimte-3) var(--ruimte-4); font-size: var(--tekst-s); }

/* Weeknavigatie boven het rooster */
.weekbalk {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--ruimte-3);
    margin-bottom: var(--ruimte-6);
    padding: var(--ruimte-3) var(--ruimte-4);
    border: 1px solid var(--grijs-licht);
    border-radius: var(--rond-m);
    background: rgba(255, 255, 255, .7);
}
.weekbalk__bereik {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--ruimte-2);
    align-items: baseline;
    font-size: var(--tekst-s);
    color: var(--grijs);
}
.weekbalk__bereik strong { color: var(--inkt); }
.weekbalk__rechts { display: flex; flex-wrap: wrap; gap: var(--ruimte-2); }

.roosterdag__datum {
    margin-left: var(--ruimte-3);
    font-family: var(--font-tekst);
    font-size: var(--tekst-s);
    font-weight: 400;
    letter-spacing: 0;
    color: var(--grijs);
}

/* 6.2 Footer */
.site-footer { background: var(--inkt); color: rgba(232, 232, 232, .85); padding-block: var(--ruimte-7) var(--ruimte-5); margin-top: var(--ruimte-8); }
.site-footer a { color: rgba(232, 232, 232, .85); text-decoration: none; }
.site-footer a:hover { color: var(--wit); text-decoration: underline; }
.site-footer__kop { font-size: var(--tekst-s); text-transform: uppercase; letter-spacing: .14em; color: var(--room); margin-bottom: var(--ruimte-3); }
.site-footer__tekst { font-size: var(--tekst-s); max-width: 38ch; }
.site-footer__lijst li { padding: 0.2rem 0; font-size: var(--tekst-s); }
.site-footer__onder {
    display: flex;
    flex-direction: column;
    gap: var(--ruimte-2);
    margin-top: var(--ruimte-6);
    padding-top: var(--ruimte-4);
    border-top: 1px solid rgba(232, 232, 232, .18);
    font-size: var(--tekst-xs);
}
.site-footer__onder p { margin: 0; }
.site-footer__mini { display: flex; gap: var(--ruimte-4); }

/* 6.3 Adminpaneel */
.admin { background: var(--room-licht); }
.adminbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: var(--ruimte-3);
    padding: var(--ruimte-3) var(--ruimte-4);
    background: var(--inkt);
    color: var(--room);
}
.adminbar__merk { font-family: var(--font-kop); font-weight: 800; color: var(--room); text-decoration: none; letter-spacing: -0.02em; }
.adminbar__merk span { font-weight: 400; opacity: .6; font-size: var(--tekst-xs); text-transform: uppercase; letter-spacing: .15em; }
.adminbar__teller { margin: 0 auto 0 0; font-size: var(--tekst-xs); }
.adminbar__teller a { color: var(--accent-licht); text-decoration: none; font-weight: 700; }
.adminbar__rechts { display: flex; align-items: center; gap: var(--ruimte-3); }
.adminbar__link { color: rgba(232, 232, 232, .8); font-size: var(--tekst-xs); text-decoration: none; }
.hamburger--admin { border-color: rgba(232, 232, 232, .3); }
.hamburger--admin span { background: var(--room); }

.adminlayout { display: block; }
.adminmenu {
    display: none;
    padding: var(--ruimte-3);
    background: var(--wit);
    border-bottom: 1px solid var(--grijs-licht);
}
.adminmenu.is-open { display: block; }
.adminmenu__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--ruimte-2);
    padding: var(--ruimte-2) var(--ruimte-3);
    border-radius: var(--rond-s);
    color: var(--inkt);
    text-decoration: none;
    font-size: var(--tekst-s);
    font-weight: 600;
}
.adminmenu__link:hover { background: var(--room); color: var(--rood); }
.adminmenu__link.active { background: var(--rood); color: var(--room); }
.adminmenu__badge { padding: 0.1rem 0.5rem; border-radius: var(--rond-vol); background: var(--accent); color: var(--wit); font-size: var(--tekst-xs); }

.admininhoud { padding: var(--ruimte-5) var(--ruimte-4) var(--ruimte-8); }
.admin__kop { display: flex; flex-wrap: wrap; gap: var(--ruimte-3); align-items: center; justify-content: space-between; margin-bottom: var(--ruimte-5); }
.admin__titel { font-size: var(--kop-s); margin: 0; }
.admin__subtitel { font-size: var(--tekst-l); margin: var(--ruimte-6) 0 var(--ruimte-3); }

/* ---------------------------------------------------------------------
   7. UTILITIES
   --------------------------------------------------------------------- */
.visueel-verborgen {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

/* Alle foto's monochroom. Zodra het beeldmateriaal zelf zwart-wit is
   aangeleverd mag dit blok weg; op reeds zwart-witte foto's heeft het
   geen zichtbaar effect. */
.leskaart img,
.stijlkaart__beeld,
.beeldraster img,
.galerij img,
.docentkaart img,
.paneel img,
.lightbox img { filter: grayscale(1); }

[data-animeer] { opacity: 0; transform: translateY(18px); transition: opacity 500ms ease, transform 500ms ease; }
[data-animeer].is-zichtbaar { opacity: 1; transform: none; }

/* ---------------------------------------------------------------------
   8. MEDIA QUERIES
   --------------------------------------------------------------------- */

/* Tablet vanaf 768px */
@media (min-width: 768px) {
    .sectie { padding-block: var(--ruimte-8); }
    .hero-intro { padding-block: var(--ruimte-9); }
    .beeldraster { grid-template-columns: repeat(2, 1fr); }
    .beeldraster--breed { grid-template-columns: repeat(4, 1fr); }
    .cta-band__binnen { flex-direction: row; align-items: center; justify-content: space-between; }
    .site-footer__onder { flex-direction: row; align-items: center; justify-content: space-between; }
    .galerij { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

    .roostertabel thead { display: table-header-group; }
    .roostertabel tbody tr {
        display: table-row;
        background: transparent;
        box-shadow: none;
        border-bottom: 1px solid var(--grijs-licht);
    }
    .roostertabel th, .roostertabel td { padding: var(--ruimte-3); text-align: left; }
    .roostertabel td::before { content: none; }
    .roostertabel thead th { background: var(--room); font-size: var(--tekst-xs); text-transform: uppercase; letter-spacing: .08em; }
}

/* Desktop vanaf 1024px */
@media (min-width: 1024px) {
    .hamburger { display: none; }
    .hoofdmenu {
        position: static;
        display: flex;
        align-items: center;
        gap: var(--ruimte-5);
        max-height: none;
        padding: 0;
        overflow: visible;
        background: transparent;
        border: 0;
        transform: none;
    }
    .hoofdmenu__lijst { flex-direction: row; gap: var(--ruimte-1); margin-bottom: 0; }
    .hoofdmenu__link { padding: var(--ruimte-2) var(--ruimte-3); font-size: var(--tekst-s); }
    .hoofdmenu__acties { flex-wrap: nowrap; }

    /* Menu in wit zolang de doorzichtige header over de hero ligt. */
    .heeft-heldere-kop .site-header:not(.is-vast) .hoofdmenu__link,
    .heeft-heldere-kop .site-header:not(.is-vast) .taalwissel__knop { color: rgba(255, 255, 255, .85); }
    .heeft-heldere-kop .site-header:not(.is-vast) .hoofdmenu__link:hover,
    .heeft-heldere-kop .site-header:not(.is-vast) .hoofdmenu__link.active { background: rgba(255, 255, 255, .14); color: var(--wit); }
    .heeft-heldere-kop .site-header:not(.is-vast) .taalwissel { border-color: rgba(255, 255, 255, .35); }
    .heeft-heldere-kop .site-header:not(.is-vast) .taalwissel__knop.is-actief { background: var(--wit); color: var(--inkt); }
    .heeft-heldere-kop .site-header:not(.is-vast) .knop--lijn { border-color: rgba(255, 255, 255, .7); color: var(--wit); }
    .heeft-heldere-kop .site-header:not(.is-vast) .knop--lijn:hover { background: var(--wit); color: var(--inkt); }
    .heeft-heldere-kop .site-header:not(.is-vast) .knop--accent { background: var(--wit); border-color: var(--wit); color: var(--inkt); }
    .heeft-heldere-kop .site-header:not(.is-vast) .knop--accent:hover { background: transparent; color: var(--wit); }

    .adminlayout { display: grid; grid-template-columns: 240px 1fr; align-items: start; }
    .adminmenu {
        display: block;
        position: sticky;
        top: 64px;
        height: calc(100vh - 64px);
        overflow-y: auto;
        border-bottom: 0;
        border-right: 1px solid var(--grijs-licht);
    }
    .hamburger--admin { display: none; }
    .admininhoud { padding: var(--ruimte-6); }
}

/* Groot scherm vanaf 1440px */
@media (min-width: 1440px) {
    .container { max-width: 1320px; }
    .sectie { padding-block: var(--ruimte-9); }
}

/* Bewegingsvoorkeur respecteren */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
    [data-animeer] { opacity: 1; transform: none; }
}

/* Afdrukken */
@media print {
    .site-header, .site-footer, .adminbar, .adminmenu, .knop, .filterbalk, .lightbox { display: none !important; }
    body { background: #fff; color: #000; }
    .sectie { padding-block: 1rem; }
}
