/*
  Schermhelden – platte site CSS
  - Herbruikbare utilities en componenten
  - Fluid, responsive met CSS Grid/Flex
  - Max tekstbreedte, full-bleed secties mogelijk
*/

:root {
  --color-primary: #88a201; /* groen */
  --color-secondary: #fdc474; /* oranje */
  --color-accent: #242952; /* donkerblauw */
  --color-bg: #ffffff;
  --color-bg-alt: #ead6c0; /* beige i.p.v. grijs */
  --color-text: #1b1b1f;
  --color-muted: #6b7280;
  --color-white: #ffffff;

  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 14px 38px rgba(0,0,0,.12);

  --container-max: 78rem; /* ruimer op desktop */
  --container-pad: clamp(16px, 2.5vw, 24px);

  --font-sans: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  --font-display: 'Arvo', Georgia, serif; /* kopteksten uit oude site-stijl */

  /* Section-level tokens (kunnen door thema's worden overschreven) */
  --section-bg: var(--color-bg);
  --section-text: var(--color-text);
  --section-link: var(--color-accent);
  --section-btn-bg: var(--color-accent);
  --section-btn-text: var(--color-white);

  /* Palet van oude site */
  --palette-white: #ffffff;
  --palette-beige: #ead6c0;
  --palette-rose: #d8688e;
  --palette-orange: #f3b15f;

  /* Typografie groottes - makkelijk aan te passen */
  --font-size-base: 18px; /* Basis tekstgrootte (was 16px) */
  --font-size-h1: clamp(32px, 5.5vw, 52px); /* H1 groter op desktop */
  --font-size-h2: clamp(26px, 4.5vw, 38px); /* H2 groter op desktop */
  --font-size-h3: clamp(22px, 4vw, 28px); /* H3 groter op desktop */
  --font-size-h4: clamp(20px, 3.5vw, 24px); /* H4 groter op desktop */
  --font-size-h5: clamp(18px, 3vw, 20px); /* H4 groter op desktop */
  --font-size-body: clamp(16px, 2.5vw, 20px); /* Body tekst groter op desktop */
  --font-size-small: clamp(14px, 2vw, 16px); /* Kleine tekst groter op desktop */
}

/* Reset/normalise (lichtgewicht) */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; } /* Voeg scroll-padding-top toe */
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: var(--font-size-base);
}
ul {
  list-style-type: square; /* Vierkante bullets */
  margin-top: 0; /* Geen extra marge boven */
  margin-bottom: 1em; /* Zelfde marge als paragrafen */
  padding-left: 1.2em; /* Inspringen voor bullets */
}
ul li {
  font-size: var(--font-size-body); /* Zelfde grootte als body tekst */
  line-height: 1.6; /* Zelfde line-height als body tekst */
  margin-bottom: 0.5em; /* Kleine marge tussen list items */
}
ul li:last-child { margin-bottom: 0; }
img, video, iframe { max-width: 100%; height: auto; display: block; }
img { image-rendering: auto; }
a { color: var(--color-accent); text-decoration: none; font-family: inherit; }
a:hover { text-decoration: underline; }

/* Lay-out helpers */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding: clamp(32px, 6vw, 72px) 0;
  background: var(--section-bg);
  color: var(--section-text);
}
.section--alt { background: var(--color-bg-alt); }
.section--full-bleed { padding: 0; }

.grid {
  display: grid;
  gap: clamp(16px, 2.5vw, 24px);
}
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid--40-60 { grid-template-columns: 0.4fr 0.6fr; }
@media (max-width: 900px) { .grid--40-60 { grid-template-columns: 1fr; } }

.grid--image-40-text-60 { grid-template-columns: 0.4fr 0.6fr; }
@media (max-width: 900px) { .grid--image-40-text-60 { grid-template-columns: 1fr; } }

@media (max-width: 900px) {
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .hide-on-small-mobile { display: none; }
}

.stack { display: grid; gap: clamp(12px, 2vw, 16px); }
.cluster { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.text-center { text-align: center; }

.social-icons {
  justify-content: center; /* Horizontaal centreren */
  gap: 20px; /* Meer ruimte tussen iconen */
}
.social-icons a {
  font-size: 2.5rem; /* Grote iconen */
  color: var(--color-accent); /* Kleur van de iconen */
  transition: color 0.2s ease;
}
.social-icons a:hover {
  color: var(--color-primary); /* Hover kleur */
  text-decoration: none; /* Geen onderstreping bij hover */
}

/* Typografie */
h1, h2, h3, h4, h5 { line-height: 1.2; margin: 0 0 .5em; font-family: var(--font-display); }
h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }
h5 { font-size: var(--font-size-h5); }
p { margin: 0 0 1em; color: var(--color-text); font-size: var(--font-size-body); }
.eyebrow { text-transform: uppercase; letter-spacing: .08em; font-weight: 700; color: var(--color-primary); font-size: var(--font-size-small); }
.muted { color: var(--color-text); font-size: var(--font-size-body); } /* Grijze tekst naar zwart */

/* Tabellen */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1em;
  font-size: var(--font-size-body);
}

th,
td {
  padding: 12px 15px;
  border: 1px solid #e5e7eb;
  text-align: left;
}

th {
  background-color: #f1f5f9;
  font-weight: bold;
  color: var(--color-text);
}

/* Responsive tabel wrapper */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Hulpklassen voor zichtbaarheid op breakpoints */
.hide-on-mobile { display: block; }
.hide-on-desktop { display: none; }
@media (max-width: 840px) {
  .hide-on-mobile { display: none; }
  .hide-on-desktop { display: block; }
}

/* Styling voor de nieuwe mobiele hero content sectie */
.section--hero-content-mobile {
  background: var(--color-accent); /* Blauwe achtergrond */
  color: var(--color-white); /* Witte tekst */
  padding: clamp(24px, 4vw, 48px) 0; /* Padding boven en onder voor gelijke ruimte */
}
.section--hero-content-mobile h1, .section--hero-content-mobile h2, .section--hero-content-mobile h3, .section--hero-content-mobile h4, .section--hero-content-mobile p { color: var(--color-white); }
.section--hero-content-mobile .eyebrow { color: var(--color-primary); } /* Primaire kleur voor eyebrow */
.section--hero-content-mobile .muted { color: rgba(255,255,255,0.8); } /* Lichtere muted tekst */
.section--hero-content-mobile a:not(.btn) { color: var(--color-secondary); } /* Oranje kleur voor links */
.section--hero-content-mobile .btn--primary,
.section--hero-content-mobile .btn--cta {
  background: var(--color-primary) !important; /* Groene CTA op blauwe achtergrond */
  color: #0d1b06 !important;
  border-color: #000000 !important;
}
.section--hero-content-mobile .btn--white {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #000000 !important;
}
.section--hero-content-mobile .btn--primary:hover,
.section--hero-content-mobile .btn--cta:hover {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #000000 !important;
}
.section--hero-content-mobile .btn--white:hover {
  background: #000000 !important;
  color: #ffffff !important;
  border-color: #000000 !important;
}

/* Leesbaarheid corrigerende helpers op thema's */
.theme-rose .muted,
.theme-rose p { color: var(--color-text); }
.theme-sand .muted,
.theme-sand p { color: var(--color-text); }
.theme-orange .muted,
.theme-orange p { color: var(--color-text); }
.theme-plum .muted,
.theme-plum p { color: var(--color-text); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  background: var(--section-btn-bg, var(--color-accent));
  color: var(--section-btn-text, var(--color-white));
  border: 2px solid #000000; /* Universele zwarte border */
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover {
  background: #ffffff;
  color: #000000;
  text-decoration: none;
  border-color: #000000;
}
.btn--primary { background: var(--color-primary); color: #0d1b06; border: 2px solid #000000; }
.btn--cta { background: var(--color-primary) !important; color: #0d1b06 !important; border: 2px solid #000000; }
/* Zorg dat CTA ook de universele hover volgt */
.btn--cta:hover { background: #ffffff !important; color: #000000 !important; border-color: #000000 !important; }

/* Witte basisbutton -> hover wordt zwart/wit */
.btn--white {
  background: #ffffff;
  color: #000000;
  border: 2px solid #000000;
}
.btn--white:hover {
  background: #000000 !important;
  color: #ffffff !important;
  border-color: #000000 !important;
}
.btn--secondary { background: var(--color-secondary); color: #402b00; border: 2px solid #000000;}
.btn--ghost { background: transparent; color: #000000; border: 2px solid #000000; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.btn--ghost:hover { background: #000000; color: #ffffff; border-color: #000000; }
.theme-rose .btn--ghost { color: #000000; border-color: #000000; }
.theme-sand .btn--ghost { color: #000000; border-color: #000000; }
.theme-orange .btn--ghost { color: #000000; border-color: #000000; }
.theme-plum .btn--ghost { color: #000000; border-color: #000000; }

/* Hover consistent: wit met zwart, ongeacht thema */
.theme-rose .btn--ghost:hover,
.theme-sand .btn--ghost:hover,
.theme-orange .btn--ghost:hover,
.theme-plum .btn--ghost:hover { background: #ffffff; color: #000000; border-color: #000000; }
.btn--block { width: 100%; }

/* Kaarten en elementen */
.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.card__body { padding: 18px; }
.card__media img { width: 100%; height: auto; display: block; }

.pill {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: color-mix(in srgb, var(--color-primary) 18%, white);
  border: 1px solid color-mix(in srgb, var(--color-primary) 40%, transparent);
}

/* Header / Navigatie */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-white);
  border-bottom: 1px solid #e5e7eb;
  padding: 14px 0; /* Aangepaste initiële padding voor groter logo */
  transition: padding 0.3s ease, font-size 0.3s ease; /* Vloeiende overgang */
}
.site-header.is-scrolled {
  padding: 2px 0; /* Aangepaste normale padding bij scrollen voor kleiner logo */
}
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px var(--container-pad);
}
.site-header.is-scrolled .site-header__bar {
  padding: 12px var(--container-pad);
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-weight: 900;
  color: var(--color-accent);
  /* font-size: clamp(24px, 3.5vw, 32px); /* Grotere initiële font size voor brand */ */
  /* transition: font-size 0.3s ease; /* Vloeiende overgang */ */
}
.brand img {
  max-height: 90px; /* Nog grotere initiële maximale hoogte voor het logo */
  transition: max-height 0.3s ease; /* Vloeiende overgang voor hoogte */
}
.site-header.is-scrolled .brand {
  /* font-size: clamp(18px, 2.6vw, 24px); /* Normale font size bij scrollen */ */
}
.site-header.is-scrolled .brand img {
  max-height: 56px; /* Nog grotere hoogte bij scrollen */
}
.brand em { color: var(--color-primary); font-style: normal; }

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav a {
  color: var(--color-text);
  font-weight: normal; /* Normaal gewicht */
  font-family: var(--font-sans);
  font-size: 1.2rem; /* Grotere initiële font size voor menu items */
  text-decoration: none; /* Geen onderstreping */
  transition: font-size 0.3s ease, font-weight 0.2s ease; /* Vloeiende overgang */
  font-synthesis: none; /* Voorkom lay-out verschuiving bij bold */
}
.nav a:hover {
  font-weight: bold; /* Vetgedrukt bij hover */
}
.nav a[aria-current="page"],
.nav .sub-toggle.is-current-parent { color: var(--color-accent); font-weight: bold; }

.has-sub { position: relative; }
.sub-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  background: transparent;
  border: 0;
  color: var(--color-text);
  font-weight: normal; /* Normaal gewicht */
  font-family: var(--font-sans);
  font-size: 1.2rem; /* Grotere initiële font size, gelijk aan .nav a */
  cursor: pointer;
  text-decoration: none; /* Geen onderstreping */
  transition: font-size 0.3s ease, font-weight 0.2s ease; /* Vloeiende overgang */
  font-synthesis: none; /* Voorkom lay-out verschuiving bij bold */
}
.sub-toggle:hover {
  font-weight: bold; /* Vetgedrukt bij hover */
}
.sub-toggle:after {
  content: "▾";
  font-size: 12px; /* Kleinere font size voor pijltje, zodat het niet vet wordt */
}
.submenu {
  position: absolute;
  top: 100%; /* Zet de top op 100% van de hoogte van het parent element */
  left: 0;
  display: none;
  min-width: 220px;
  background: var(--color-white);
  border: 1px solid #e5e7eb;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-sm);
  padding: 8px;
  z-index: 40;
}
.has-sub > .submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px; /* Kleinere negatieve top om hover-brug aan te laten sluiten */
  height: 10px; /* Kleinere hoogte */
}
.submenu li { list-style: none; }
.submenu a,
.submenu .sub-toggle {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-weight: normal; /* Normaal gewicht voor submenu items */
}
.submenu a:hover,
.submenu .sub-toggle:hover { background: #f3f4f6; text-decoration: none; font-weight: bold; }
.has-sub:hover > .submenu { display: block; }
.submenu .has-sub { position: relative; }
.submenu .has-sub > .submenu {
  top: 0;
  left: 100%;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
}
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 840px) {
  .nav { display: none; position: fixed; inset: 0; background: #fff; padding: 64px var(--container-pad) 16px; overflow: hidden auto; }
  .nav.is-open { display: flex; flex-direction: column; gap: 12px; font-size: 1rem; align-items: stretch; }
  .nav > a, .nav .sub-toggle { padding: 12px 0; width: 100%; text-align: left; }
  .nav > a { border-bottom: 1px solid #f1f5f9; }
  .nav > a, .nav .sub-toggle { padding: 8px 0; }
  .nav-toggle { display: inline-flex; position: relative; z-index: 70; }
  .nav.is-open ~ .nav-toggle { display: none; }
  .submenu { position: static; display: none; box-shadow: none; border: 0; padding: 0; }
  .has-sub.is-open > .submenu { display: grid; gap: 6px; }
  .nav .submenu a { padding-left: 16px; }
  .nav .submenu .submenu a { padding-left: 28px; }
}

/* Mobile close button (X) */
.nav-close {
  display: none;
}
@media (max-width: 840px) {
  .nav-close { display: none; position: fixed; top: 16px; right: 16px; background: #fff; border: 1px solid #e5e7eb; padding: 8px; z-index: 80; }
  .nav.is-open + .nav-close, .nav-close.is-open { display: inline-flex; }
}

/* Link onder logo (alleen mobiel) */
.brand-home-link { display: none; font-size: 12px; color: var(--color-accent); margin-left: 4px; }
@media (max-width: 840px) {
  .brand-home-link { display: inline-block; }
}

/* Hero met videoachtergrond */
.hero {
  position: relative;
  min-height: clamp(360px, 70vh, 720px);
  color: var(--color-white);
  display: grid;
  place-items: center;
  overflow: clip;
}
.hero__media video, .hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: relative;
  z-index: 1;
  backdrop-filter: saturate(120%) brightness(0.9);
  padding: clamp(16px, 3vw, 28px);
}
.hero__content {
  background: rgba(36, 41, 82, .75);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(16px, 3vw, 28px);
  color: #ffffff;
  position: relative; /* Belangrijk voor absolute positionering van het logo */
}
.hero .btn + .btn { margin-left: 10px; }

/* Zorg dat tekst in de hero altijd goed leesbaar is */
.hero__content h1,
.hero__content h2,
.hero__content h3,
.hero__content p { color: #ffffff; }
.hero__content .muted { color: rgba(255,255,255,.95); }

.hero__canva-logo {
  position: absolute; /* Positionering binnen de hero__content div */
  top: clamp(16px, 3vw, 28px); /* Afstand van boven, gelijk aan padding van content */
  right: clamp(16px, 3vw, 28px); /* Afstand van rechts, gelijk aan padding van content */
  z-index: 2; /* Zorg dat het boven de inhoud ligt */
}

.hero__canva-logo img {
  max-width: clamp(80px, 15vw, 150px); /* Responsieve breedte voor het logo */
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3)); /* Lichte schaduw voor contrast */
}

@media (max-width: 840px) {
  .hero__canva-logo { display: none; } /* Verberg het logo op mobiel om ruimte te besparen */
}

/* Styling voor de nieuwe mobiele hero content sectie */
.section--hero-content-mobile .container.stack {
  position: relative; /* Noodzakelijk voor absolute positionering van het logo binnen deze sectie */
}

.hero__canva-logo--mobile {
  display: block; /* Toon het logo op mobiel */
  position: absolute; /* Positionering binnen de mobiele hero content */
  top: clamp(16px, 4vw, 24px); /* Afstand van boven, aangepast voor mobiel */
  right: clamp(16px, 4vw, 24px); /* Afstand van rechts, aangepast voor mobiel */
  z-index: 3; /* Zorg dat het boven de inhoud ligt */
}

.hero__canva-logo--mobile img {
  max-width: clamp(60px, 12vw, 100px); /* Kleinere responsieve breedte voor mobiel */
}

/* Styling voor Canva sectie logo */
.canva-section {
  position: relative; /* Noodzakelijk voor absolute positionering van het logo */
  padding-top: clamp(60px, 8vw, 80px); /* Extra ruimte bovenin voor het logo */
}

.canva-section__logo {
  position: absolute; /* Positionering binnen de canva-section */
  top: clamp(16px, 3vw, 24px); /* Kleine marge van de bovenkant */
  right: clamp(16px, 3vw, 24px); /* Kleine marge van de rechterkant */
  z-index: 2; /* Zorg dat het boven de inhoud ligt */
}

.canva-section__logo img {
  max-width: clamp(60px, 12vw, 100px); /* Responsieve breedte voor het logo */
  height: auto;
}

/* Mediategel */
.media-grid { grid-template-columns: 1.2fr 1fr; align-items: center; }
@media (max-width: 900px) { .media-grid { grid-template-columns: 1fr; } }

/* Swap kolomvolgorde op mobiel voor betere leesvolgorde */
.swap-on-mobile > * { order: 0; }
@media (max-width: 900px) {
  .swap-on-mobile > :first-child { order: 2; }
  .swap-on-mobile > :last-child { order: 1; }
}

/* Lessen */
.lessen-grid .card h3 { margin-bottom: .25rem; }
.lessen-grid .card p { color: var(--color-muted); }

/* Video wrappers voor iframes */
.video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.video iframe,
.video img {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; object-fit: cover;
}

/* Play button voor video thumbnails */
.play-button svg {
  width: 80px;
  height: 80px;
}

@media (max-width: 640px) {
  .play-button svg {
    width: 56px; /* 30% kleiner dan 80px */
    height: 56px;
  }
}

/* Contact blok */
.contact {
  background: linear-gradient(180deg, #f1f5f9 0%, #fff 100%);
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
.contact .card { text-align: center; }

/* Footer */
.site-footer {
  background: #000000;
  color: #ffffff;
  padding: 24px 0;
  font-size: var(--font-size-small);
}
.site-footer a { color: #ffffff; text-decoration: underline; }

/* Full-bleed decoratieve bandjes */
.band {
  position: relative;
  background: var(--color-primary);
  min-height: 18px;
}
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(12px); transition: opacity .4s ease, transform .4s ease; }
  .reveal.is-visible { opacity: 1; transform: translateY(0); }
  .btn { transition: filter .2s ease, transform .2s ease; }
  .btn:hover { transform: translateY(-1px); }
  .card { transition: box-shadow .25s ease, transform .25s ease; }
  .card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
}

.bg-sand { background: #ead6c0; }
.bg-rose { background: #d8688e; }
.bg-plum { background: #5a2a6b; color: #fff; }
.bg-plum a { color: #ffe9f8; }

/* Thematecties met variabele overrides 
   - zorgen voor duidelijk kleurcontrast en CTA-kleuren per sectie */
.theme-sand { --section-bg: var(--palette-beige); --section-text: #2a2a2a; --section-link: #242952; --section-btn-bg: #242952; --section-btn-text: #ffffff; }
.theme-rose { --section-bg: var(--palette-rose); --section-text: #1a1020; --section-link: #242952; --section-btn-bg: #242952; --section-btn-text: #ffffff; }
.theme-orange { --section-bg: var(--palette-orange); --section-text: #2a1d0b; --section-link: #242952; --section-btn-bg: #242952; --section-btn-text: #ffffff; }
.theme-plum { --section-bg: #5a2a6b; --section-text: #ffffff; --section-link: #ffe9f8; --section-btn-bg: #88a201; --section-btn-text: #0d1b06; }

/* Links binnen content-secties volgen sectiekleur */
.section a:not(.btn) {
  color: var(--color-text); /* Zwart voor links in content */
  font-weight: bold; /* Vetgedrukt voor links in content */
  text-decoration: none; /* Standaard geen onderstreping */
}
.section a:not(.btn):hover,
.section a:not(.btn):visited {
  text-decoration: underline; /* Onderstreping bij hover en na bezoek */
}

/* Accordion voor lessen */
.accordion { border: 1px solid #ddd; border-radius: var(--radius-md); overflow: hidden; }
.accordion__item:not(:last-child) { border-bottom: 1px solid #ddd; }
.accordion__toggle {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px;
  background: var(--color-bg-alt);
  border: none;
  text-align: left;
  cursor: pointer;
  font-weight: 700;
  color: var(--color-text);
  font-family: var(--font-display);
  transition: background-color 0.3s ease;
}
.accordion__toggle h5 { display: flex; align-items: center; margin: 0; }
.accordion__toggle:hover { background-color: var(--color-accent); color: var(--color-white); }
.accordion__icon {
  margin-right: 12px;
  font-size: var(--font-size-h5); /* Stemt af op de H5 text */
  line-height: normal; /* Zorg dat de line-height normaal is */
  vertical-align: middle; /* Probeer verticale uitlijning */
  transition: transform 0.3s ease;
}
.accordion__item.is-open .accordion__icon { transform: rotate(90deg); }
.accordion__content {
  max-height: 0; /* Begint dicht */
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background-color: var(--color-white); /* Witte achtergrond voor open inhoud */
}
.accordion__item.is-open .accordion__content {
  max-height: 2000px; /* Voldoende grote waarde voor uitklappen */
}
.accordion__inner {
  padding: 16px;
}

/* Thematische aanpassing voor de nieuwe sectie */
.theme-alt-dark { 
  --section-bg: #f8f8f8;
  --section-text: #1b1b1f;
  --section-link: var(--color-accent);
  --section-btn-bg: var(--color-accent);
  --section-btn-text: var(--color-white);
}

.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.mt-3 { margin-top: 24px; }

@media (max-width: 640px) {
  .hero { min-height: clamp(300px, 50vh, 400px); }
}
