/* Nedbase-huisstijl voor de workshopspellen (bron: www.nedbase.nl, 26-08-2026) */
@font-face { font-family: Unytour; src: url(../fonts/Unytour-300.woff2) format("woff2"); font-weight: 300; font-display: swap; }
@font-face { font-family: Unytour; src: url(../fonts/Unytour-400.woff2) format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: Unytour; src: url(../fonts/Unytour-600.woff2) format("woff2"); font-weight: 600; font-display: swap; }
@font-face { font-family: Unytour; src: url(../fonts/Unytour-700.woff2) format("woff2"); font-weight: 700; font-display: swap; }
@font-face { font-family: Unytour; src: url(../fonts/Unytour-800.woff2) format("woff2"); font-weight: 800; font-display: swap; }
@font-face { font-family: "Hanken Grotesk"; src: url(../fonts/HankenGrotesk-Variable.woff2) format("woff2-variations"); font-weight: 300 900; font-display: swap; }

:root {
  --c-bg: #f0eae4;
  --c-bg-soft: #f7f4f1;
  --c-border: #dcd2c8;
  --c-ink: #2f322f;
  --c-ink-soft: #5a5a55;
  --c-accent: #e47463;
  --c-yellow: #fcdd64;
  --c-error: #ed4337;
  --c-ok: #2e7d4f;
  --c-muted: #acacac;
  --font-head: Unytour, system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
  --r-card: 1.25rem;
  --r-small: .625rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.6;
}

h1, h2, h3, .kop { font-family: var(--font-head); font-weight: 700; line-height: 1.15; margin: 0 0 .75rem; }
h1, .kop--1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2, .kop--2 { font-size: clamp(1.5rem, 3vw, 2.25rem); color: var(--c-accent); }
h3, .kop--3 { font-size: 1.25rem; font-weight: 600; }
p { margin: 0 0 1rem; }
strong { font-weight: 700; }
a { color: var(--c-ink); text-decoration-thickness: .08em; text-underline-offset: .15em; }
a:hover { color: var(--c-accent); }

:focus-visible { outline: 3px solid var(--c-accent); outline-offset: 3px; border-radius: .2rem; }

.container { width: min(72rem, 100% - 3rem); margin-inline: auto; }
.visually-hidden {
  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;
}

/* Skiplink (zoals nedbase.nl: een .button die pas bij focus zichtbaar wordt) */
.skiplink { position: absolute; left: 1rem; top: -100vh; z-index: 1000; }
.skiplink:focus { top: 1rem; }

/* Knoppen */
.button {
  --button-background: var(--c-accent);
  --button-color: var(--c-ink);
  --button-dot: var(--c-ink);
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .85rem 1.5rem; border: 2px solid var(--button-background); border-radius: 6.25rem;
  background: var(--button-background); color: var(--button-color);
  font: inherit; font-weight: 600; text-decoration: none; cursor: pointer;
}
.button::before { content: ""; width: .5rem; height: .5rem; border-radius: 50%; background: var(--button-dot); }
.button:hover { filter: brightness(1.05); }
.button--secondary { --button-background: var(--c-ink); --button-color: #fff; --button-dot: var(--c-accent); }
.button--ghost { --button-background: transparent; border-color: var(--c-ink); --button-dot: var(--c-accent); }
.button--small { padding: .5rem 1rem; font-size: .95rem; }

/* Header */
.site-header { background: var(--c-bg-soft); border-bottom: 1px solid var(--c-border); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1rem 0; flex-wrap: wrap; }
.brand { display: inline-flex; align-items: center; gap: .75rem; color: var(--c-ink); text-decoration: none; }
.brand svg { width: 9rem; height: auto; display: block; }
.brand__sub { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 600; color: var(--c-ink-soft); }
.site-nav ul { list-style: none; display: flex; gap: 1.5rem; margin: 0; padding: 0; }
.site-nav a { text-decoration: none; font-weight: 600; padding: .5rem 0; border-bottom: 2px solid transparent; }
.site-nav a[aria-current], .site-nav a.actief { border-bottom-color: var(--c-accent); }

/* Hero */
.hero { padding: 3rem 0 1rem; }
.hero__grid { display: grid; gap: 2rem; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 60rem) { .hero__grid { grid-template-columns: 1.1fr 1fr; } }
.hero img { width: 100%; height: auto; border-radius: var(--r-card); display: block; }
.hero .badge { margin-top: 1rem; }
.badge {
  display: inline-block; padding: .4rem .9rem; border-radius: 6.25rem;
  background: var(--c-yellow); font-weight: 700; font-size: .95rem;
}
.hero__meta { font-size: 1.25rem; margin-bottom: .5rem; }

/* Secties */
.sectie { padding: 2.5rem 0; border-top: 1px solid var(--c-border); }

/* Tabel */
.tabel { width: 100%; border-collapse: collapse; background: var(--c-bg-soft); border-radius: var(--r-card); overflow: hidden; }
.tabel th, .tabel td, .tabel .cel { padding: .9rem 1rem; text-align: left; border-bottom: 1px solid var(--c-border); }
.tabel th, .tabel .cel--kop { font-family: var(--font-head); font-weight: 600; background: var(--c-bg); }
.tabel th[scope=row], .tabel .cel--rij { font-weight: 600; white-space: nowrap; color: var(--c-ink-soft); }
.tabel caption { text-align: left; font-weight: 600; padding: 0 0 .75rem; color: var(--c-ink-soft); }

/* Prijs */
.prijs-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); }
.prijs-kaart { background: var(--c-bg-soft); border: 1px solid var(--c-border); border-radius: var(--r-card); padding: 1.5rem; }
.prijs-kaart .label { display: block; font-weight: 600; color: var(--c-ink-soft); margin-bottom: .25rem; }
.prijs-kaart .bedrag { font-family: var(--font-head); font-size: 2.5rem; font-weight: 700; }
.prijs-kaart s { color: var(--c-muted); font-size: 1.25rem; margin-left: .5rem; }

/* Beoordeling */
.beoordeling { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.sterren { font-size: 2rem; color: var(--c-accent); letter-spacing: .1em; line-height: 1; }
.quotes { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); margin: 0; padding: 0; list-style: none; }
.quotes blockquote, .quotes .quote { margin: 0; background: var(--c-bg-soft); border-left: 4px solid var(--c-yellow); padding: 1rem 1.25rem; border-radius: 0 var(--r-small) var(--r-small) 0; }
.quotes cite, .quotes .wie { display: block; font-style: normal; font-weight: 600; margin-top: .5rem; font-size: .95rem; color: var(--c-ink-soft); }

/* Kaarten */
.kaarten { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); list-style: none; margin: 0; padding: 0; }
.kaart { background: var(--c-bg-soft); border: 1px solid var(--c-border); border-radius: var(--r-card); padding: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.kaart img, .kaart svg { width: 100%; height: auto; display: block; }
.kaart .kaart__titel { margin: 0; }
.kaart p { margin: 0; flex: 1; }
.icoonknoppen { display: flex; gap: .5rem; margin-top: 1rem; }
.icoonknop {
  display: inline-grid; place-items: center; width: 2.75rem; height: 2.75rem; border-radius: 50%;
  border: 1px solid var(--c-border); background: #fff; color: var(--c-ink); cursor: pointer; font: inherit;
}
.icoonknop svg { width: 1.25rem; height: 1.25rem; }

/* Meer weten-lijst */
.meerweten { list-style: none; margin: 0; padding: 0; display: grid; gap: .75rem; }
.meerweten li { display: flex; align-items: center; gap: 1rem; }
.meerweten img { display: block; border-radius: var(--r-small); }

/* Formulier */
.formulier { background: var(--c-bg-soft); border: 1px solid var(--c-border); border-radius: var(--r-card); padding: 2rem; max-width: 40rem; }
.veld { margin-bottom: 1.25rem; }
.veld label, .veld .label, fieldset legend { display: block; font-weight: 600; margin-bottom: .35rem; }
.veld .hint { display: block; font-size: .95rem; color: var(--c-ink-soft); margin-bottom: .35rem; }
.veld input[type=text], .veld input[type=email], .veld select, .veld .invoer {
  width: 100%; padding: .875rem 1rem; border: 1px solid var(--c-border); border-radius: .5rem;
  font: inherit; background: #fff; color: var(--c-ink);
}
.veld input::placeholder { color: var(--c-muted); }
fieldset { border: 0; padding: 0; margin: 0 0 1.25rem; }
.keuze { display: flex; align-items: center; gap: .6rem; padding: .5rem 0; font-weight: 400; }
.keuze input { width: 1.25rem; height: 1.25rem; accent-color: var(--c-accent); margin: 0; }
.verplicht { color: var(--c-error); font-weight: 600; }
.fout { color: var(--c-error); font-weight: 600; font-size: .95rem; margin-top: .35rem; }
.foutsamenvatting { border: 2px solid var(--c-error); border-radius: var(--r-small); padding: 1rem 1.25rem; margin-bottom: 1.5rem; background: #fff; }
.foutsamenvatting h3 { color: var(--c-error); margin-bottom: .5rem; }
.foutsamenvatting ul { margin: 0; padding-left: 1.25rem; }
.status { margin-top: 1.25rem; padding: 1rem 1.25rem; border-radius: var(--r-small); background: #e3f3e8; border: 1px solid var(--c-ok); color: var(--c-ok); font-weight: 600; }
.status:empty { display: none; }

/* Footer */
.site-footer { margin-top: 3rem; padding: 2rem 0; background: var(--c-ink); color: #fff; font-size: .95rem; }
.site-footer a { color: #fff; }
.site-footer .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.site-footer ul { list-style: none; display: flex; gap: 1.5rem; margin: 0; padding: 0; }
