/* CastFeel — huisstijl
   Palet geïnspireerd op gips: kalkwit, verbandcrème, met een diepe klei-terracotta als accent */

:root {
  --gips: #f6f2ea;          /* kalkwit */
  --gips-donker: #eae3d5;   /* verbandcrème */
  --inkt: #2b2620;          /* warm bijna-zwart */
  --inkt-zacht: #6b6257;
  --accent: #b05c3a;        /* terracotta / klei */
  --accent-donker: #8a4128;
  --lijn: #d9d0bf;
  --wit: #fffdf9;
  --radius: 14px;
  --schaduw: 0 10px 30px rgba(43, 38, 32, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Avenir Next", "Segoe UI", system-ui, sans-serif;
  background: var(--gips);
  color: var(--inkt);
  line-height: 1.7;
  font-size: 17px;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

a { color: var(--accent-donker); }

.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Leeftijdspoort ---------- */
#leeftijdspoort {
  position: fixed;
  inset: 0;
  background: rgba(43, 38, 32, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 24px;
}

#leeftijdspoort[hidden] { display: none; }

#leeftijdspoort .poort-kaart {
  background: var(--wit);
  border-radius: var(--radius);
  max-width: 460px;
  padding: 40px 36px;
  text-align: center;
  box-shadow: var(--schaduw);
}

#leeftijdspoort h2 { margin-bottom: 12px; font-size: 1.5rem; }
#leeftijdspoort p { color: var(--inkt-zacht); margin-bottom: 24px; font-size: 0.95rem; }

.poort-knoppen { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Knoppen ---------- */
.knop {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  border: none;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}

.knop:hover { transform: translateY(-1px); }

.knop-primair {
  background: linear-gradient(135deg, var(--accent), var(--accent-donker));
  color: var(--wit);
  box-shadow: 0 6px 18px rgba(176, 92, 58, 0.32);
}
.knop-primair:hover {
  background: linear-gradient(135deg, var(--accent-donker), var(--accent-donker));
  box-shadow: 0 10px 26px rgba(176, 92, 58, 0.4);
}

.knop-secundair {
  background: transparent;
  color: var(--inkt);
  border: 1.5px solid var(--lijn);
}
.knop-secundair:hover { border-color: var(--inkt-zacht); }

/* ---------- Navigatie ---------- */
header.site-kop {
  background: rgba(255, 253, 249, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--lijn);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-balk {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 980px;
  margin: 0 auto;
}

.logo {
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--inkt);
}

.logo span { color: var(--accent); }

nav.hoofdnav { display: flex; gap: 26px; }

nav.hoofdnav a {
  text-decoration: none;
  color: var(--inkt-zacht);
  font-weight: 600;
  font-size: 0.95rem;
}

nav.hoofdnav a:hover, nav.hoofdnav a.actief { color: var(--accent-donker); }

/* ---------- Uitklapmenu's ---------- */
.dropdown { position: relative; }

.dropdown summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--inkt-zacht);
  display: flex;
  align-items: center;
  gap: 5px;
  user-select: none;
}

.dropdown summary::-webkit-details-marker { display: none; }

.dropdown summary::after {
  content: "▾";
  font-size: 0.72em;
  transition: transform 0.2s ease;
}

.dropdown[open] summary::after { transform: rotate(180deg); }

.dropdown summary:hover,
.dropdown[open] summary,
.dropdown.actief-groep summary { color: var(--accent-donker); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -12px;
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: 12px;
  box-shadow: 0 14px 36px rgba(43, 38, 32, 0.14);
  padding: 8px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  z-index: 70;
}

.dropdown-menu a {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.95rem;
}

.dropdown-menu a:hover { background: var(--gips); }

/* ---------- Hero ---------- */
.hero {
  padding: 90px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(176, 92, 58, 0.07), transparent 55%),
    radial-gradient(ellipse at 85% 100%, rgba(176, 92, 58, 0.06), transparent 50%);
}

/* Zacht zwevende kleurvlekken achter de hero */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  background: radial-gradient(circle, rgba(176, 92, 58, 0.35), transparent 65%);
  top: -160px;
  left: -120px;
  animation: drijf 16s ease-in-out infinite alternate;
}

.hero::after {
  background: radial-gradient(circle, rgba(201, 162, 118, 0.4), transparent 65%);
  bottom: -180px;
  right: -100px;
  animation: drijf 19s ease-in-out infinite alternate-reverse;
}

@keyframes drijf {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(70px, 45px) scale(1.15); }
}

.hero .container { position: relative; z-index: 1; }

.hero h1 {
  font-size: clamp(2.3rem, 5.5vw, 4rem);
  max-width: 720px;
  margin: 0 auto 20px;
}

@media (prefers-reduced-motion: reduce) {
  .hero::before, .hero::after { animation: none; }
}

.hero p.intro {
  max-width: 620px;
  margin: 0 auto 34px;
  color: var(--inkt-zacht);
  font-size: 1.12rem;
}

.hero .label {
  display: inline-block;
  background: var(--gips-donker);
  color: var(--inkt-zacht);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}

/* ---------- Foto's: polaroids & collage ---------- */
.media-rij {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.polaroid {
  --rot: 0deg;
  margin: 0;
  background: var(--wit);
  padding: 14px 14px 16px;
  box-shadow: 0 6px 14px rgba(43, 38, 32, 0.16), 0 18px 40px rgba(43, 38, 32, 0.12);
  transform: rotate(var(--rot));
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  border-radius: 4px;
}

.polaroid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.polaroid figcaption {
  font-family: "Bradley Hand", "Segoe Print", "Comic Sans MS", cursive;
  color: var(--inkt-zacht);
  font-size: 1.05rem;
  text-align: center;
  padding-top: 12px;
}

.polaroid:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 0 10px 22px rgba(43, 38, 32, 0.2), 0 28px 60px rgba(43, 38, 32, 0.16);
  z-index: 5;
}

@keyframes zweef-in {
  from { opacity: 0; transform: translateY(22px) rotate(var(--rot)); }
  to   { opacity: 1; transform: translateY(0) rotate(var(--rot)); }
}

.collage .polaroid { animation: zweef-in 0.7s ease both; }
.collage .polaroid:nth-child(1) { animation-delay: 0.05s; }
.collage .polaroid:nth-child(2) { animation-delay: 0.2s; }
.collage .polaroid:nth-child(3) { animation-delay: 0.35s; }

@media (prefers-reduced-motion: reduce) {
  .collage .polaroid { animation: none; }
}

/* Hero-collage: overlappende polaroids */
.hero-inhoud {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 50px;
  align-items: center;
  text-align: left;
}

.hero-inhoud .intro { margin-left: 0; }

.collage {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  aspect-ratio: 10 / 10.5;
}

.collage .polaroid { position: absolute; width: 62%; }
.collage .polaroid:nth-child(1) { top: 0; left: 0; z-index: 1; }
.collage .polaroid:nth-child(2) { top: 22%; right: 0; z-index: 2; }
.collage .polaroid:nth-child(3) { bottom: 0; left: 9%; z-index: 3; }

/* Foto "vastgeplakt" met plakband */
.plakband {
  position: relative;
}

.plakband::before,
.plakband::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 34px;
  background: rgba(234, 227, 213, 0.75);
  box-shadow: 0 1px 3px rgba(43, 38, 32, 0.12);
  top: -14px;
}

.plakband::before { left: -34px; transform: rotate(-38deg); }
.plakband::after { right: -34px; transform: rotate(38deg); }

@media (max-width: 860px) {
  .hero-inhoud { grid-template-columns: 1fr; text-align: center; }
  .hero-inhoud .intro { margin-left: auto; margin-right: auto; }
  .collage { margin-top: 16px; }
  .polaroid figcaption { font-size: 0.92rem; }
}

@media (max-width: 760px) {
  .media-rij { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- Statistiekenband ---------- */
.statband {
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-donker) 100%);
  color: var(--wit);
  padding: 48px 0;
}

.statgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 26px;
  text-align: center;
}

.stat-cijfer {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
}

.stat-label {
  display: block;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.76rem;
  font-weight: 700;
  opacity: 0.88;
}

/* ---------- Ledenchips ---------- */
.leden-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lid-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gips);
  border: 1px solid var(--lijn);
  border-radius: 999px;
  padding: 9px 18px;
  text-decoration: none;
  color: var(--inkt);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.lid-chip:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 8px 20px rgba(43, 38, 32, 0.1);
}

.lid-chip .land {
  color: var(--inkt-zacht);
  font-weight: 500;
  font-size: 0.85rem;
}

/* ---------- Onthul-animatie bij scrollen ---------- */
.onthul {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.onthul.zichtbaar {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .onthul { opacity: 1; transform: none; transition: none; }
}

/* ---------- Secties ---------- */
section.blok { padding: 70px 0; }
section.blok.wit { background: var(--wit); border-top: 1px solid var(--lijn); border-bottom: 1px solid var(--lijn); }

.blok h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 14px;
}

.blok p.sectie-intro {
  color: var(--inkt-zacht);
  max-width: 640px;
  margin-bottom: 40px;
}

/* ---------- Kaartenraster ---------- */
.raster {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.kaart {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--schaduw);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.kaart:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(43, 38, 32, 0.13);
}

section.wit .kaart { background: var(--gips); }

.kaart .icoon {
  font-size: 1.7rem;
  display: block;
  margin-bottom: 14px;
}

.kaart h3 { font-size: 1.15rem; margin-bottom: 10px; }
.kaart p { color: var(--inkt-zacht); font-size: 0.97rem; }

/* ---------- Tekstpagina's ---------- */
.pagina-kop {
  padding: 70px 0 50px;
  text-align: center;
}

.pagina-kop h1 { font-size: clamp(2rem, 4.5vw, 2.8rem); margin-bottom: 14px; }
.pagina-kop p { color: var(--inkt-zacht); max-width: 620px; margin: 0 auto; }

.inhoud {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.inhoud h2 { font-size: 1.5rem; margin: 44px 0 14px; }
.inhoud h3 { font-size: 1.15rem; margin: 28px 0 10px; }
.inhoud p { margin-bottom: 16px; }
.inhoud ul, .inhoud ol { margin: 0 0 16px 24px; }
.inhoud li { margin-bottom: 8px; }

.waarschuwing {
  background: #fbeee6;
  border: 1px solid #eccbb8;
  border-left: 5px solid var(--accent);
  border-radius: 10px;
  padding: 20px 22px;
  margin: 28px 0;
}

.waarschuwing strong { color: var(--accent-donker); }

.tip {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: 10px;
  padding: 20px 22px;
  margin: 28px 0;
}

/* ---------- FAQ ---------- */
details.faq-item {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
}

details.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  font-family: Georgia, serif;
  font-size: 1.08rem;
  list-style: none;
  position: relative;
  padding-right: 52px;
}

details.faq-item summary::-webkit-details-marker { display: none; }

details.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--accent);
  font-family: system-ui;
}

details.faq-item[open] summary::after { content: "–"; }

details.faq-item .antwoord {
  padding: 0 24px 22px;
  color: var(--inkt-zacht);
}

/* ---------- Woordenlijst ---------- */
dl.woordenlijst dt {
  font-weight: 700;
  font-family: Georgia, serif;
  margin-top: 20px;
}

dl.woordenlijst dd {
  margin-left: 0;
  color: var(--inkt-zacht);
}

/* ---------- Taalwissel ---------- */
.taalwissel {
  display: flex;
  gap: 4px;
  margin-left: 18px;
}

.taalwissel a {
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--inkt-zacht);
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid transparent;
}

.taalwissel a:hover { border-color: var(--lijn); }
.taalwissel a.actief {
  background: var(--accent);
  color: var(--wit);
}

/* ---------- Niveau-badges (soorten casts) ---------- */
.niveau {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 999px;
}

.niveau-beginner { background: #e3ecdd; color: #3e5c34; }
.niveau-gevorderd { background: #f3e5c8; color: #7a5a17; }
.niveau-expert { background: #f3d5c8; color: #8a3a1d; }

/* ---------- Formulieren ---------- */
.formulier {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.formulier label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: 0.95rem;
}

.formulier input[type="text"],
.formulier input[type="url"],
.formulier textarea,
.formulier select {
  font-family: inherit;
  font-size: 1rem;
  padding: 11px 14px;
  border: 1.5px solid var(--lijn);
  border-radius: 10px;
  background: var(--wit);
  color: var(--inkt);
}

.formulier input:focus,
.formulier textarea:focus,
.formulier select:focus {
  outline: none;
  border-color: var(--accent);
}

.formulier button { align-self: flex-start; }

/* Honeypot: onzichtbaar voor mensen */
.verstopt {
  position: absolute !important;
  left: -9999px !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* ---------- Meldingen ---------- */
.melding {
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 24px;
  font-weight: 600;
}

.melding-succes { background: #e3ecdd; color: #3e5c34; border: 1px solid #c4d6ba; }
.melding-fout { background: #f6dcd2; color: #8a3a1d; border: 1px solid #e8bfa9; }
.melding-info { background: var(--gips-donker); color: var(--inkt-zacht); border: 1px solid var(--lijn); font-weight: 500; }

/* ---------- Links-pagina ---------- */
.link-kaart h3 { word-break: break-word; }

.taal-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--gips-donker);
  color: var(--inkt-zacht);
  padding: 3px 12px;
  border-radius: 999px;
}

.knop-klein { padding: 8px 18px; font-size: 0.9rem; }

/* ---------- Account ---------- */
.nav-account { white-space: nowrap; }

.badge {
  display: inline-block;
  background: var(--accent);
  color: var(--wit);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 1px 8px;
  border-radius: 999px;
  vertical-align: middle;
  margin-left: 4px;
}

/* ---------- Privéberichten ---------- */
.pm-bericht {
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 12px;
  max-width: 85%;
}

.pm-bericht p { margin: 0; }
.pm-bericht .forum-meta { margin-bottom: 6px; margin-top: 0; }

.pm-van-mij {
  background: #f3e0d6;
  border: 1px solid #eaccba;
  margin-left: auto;
}

.pm-van-ander {
  background: var(--wit);
  border: 1px solid var(--lijn);
  margin-right: auto;
}

.account-kolommen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 44px;
}

/* ---------- Forum ---------- */
.forum-onderwerp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 12px;
  text-decoration: none;
  color: var(--inkt);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.forum-onderwerp:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.forum-onderwerp .pijl {
  font-size: 1.6rem;
  color: var(--accent);
}

.forum-meta {
  font-size: 0.85rem;
  color: var(--inkt-zacht);
  font-weight: 500;
  margin-top: 4px;
}

.forum-categorie { cursor: pointer; }

.cat-icoon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.kruimelpad {
  margin-bottom: 12px;
  font-size: 0.92rem;
}

.forum-bericht {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 16px;
}

.forum-bericht .forum-meta { margin-bottom: 10px; margin-top: 0; }
.forum-bericht p { margin-bottom: 0; }

/* ---------- Avatars ---------- */
.avatar-klein,
.avatar-middel,
.avatar-groot {
  border-radius: 50%;
  object-fit: cover;
  vertical-align: middle;
  border: 2px solid var(--wit);
  box-shadow: 0 2px 8px rgba(43, 38, 32, 0.15);
}

.avatar-klein { width: 28px; height: 28px; margin-right: 4px; }
.avatar-middel { width: 46px; height: 46px; flex-shrink: 0; }
.avatar-groot { width: 120px; height: 120px; border-width: 4px; }

/* ---------- Citaat (direct antwoord op een bericht) ---------- */
.citaat {
  margin: 0 0 12px;
  padding: 10px 16px;
  background: var(--gips);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--inkt-zacht);
}

.citaat a { text-decoration: none; }

/* ---------- Berichtacties: duimpje en reageren ---------- */
.bericht-acties {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
}

.duim-knop {
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--lijn);
  background: var(--wit);
  color: var(--inkt-zacht);
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.duim-knop:hover { transform: translateY(-1px); border-color: var(--accent); }

.duim-actief {
  background: #f3e0d6;
  border-color: var(--accent);
  color: var(--accent-donker);
}

.citeer-knop {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--inkt-zacht);
  text-decoration: none;
}

.citeer-knop:hover { color: var(--accent-donker); }

/* ---------- Profielgalerij ---------- */
.profiel-galerij {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}

.profiel-galerij img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--schaduw);
  display: block;
}

.vertaal-info {
  margin-top: 10px;
  font-size: 0.82rem;
}

.vertaal-info summary {
  cursor: pointer;
  color: var(--inkt-zacht);
  list-style: none;
}

.vertaal-info summary::-webkit-details-marker { display: none; }
.vertaal-info summary:hover { color: var(--accent-donker); }

.vertaal-info p {
  margin-top: 8px;
  padding: 12px 16px;
  background: var(--gips);
  border-left: 3px solid var(--lijn);
  border-radius: 8px;
  color: var(--inkt-zacht);
  font-size: 0.95rem;
}

.forum-foto {
  display: block;
  max-width: min(100%, 440px);
  height: auto;
  margin-top: 14px;
  border-radius: 10px;
  box-shadow: var(--schaduw);
}

/* ---------- Footer ---------- */
footer.site-voet {
  background: var(--inkt);
  color: #cfc7ba;
  padding: 50px 0 40px;
  font-size: 0.92rem;
}

footer.site-voet .container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

footer.site-voet a { color: #e8dfd0; }
footer.site-voet .voet-logo { font-family: Georgia, serif; font-size: 1.2rem; color: var(--wit); margin-bottom: 8px; }
footer.site-voet p { max-width: 420px; }

@media (max-width: 760px) {
  .nav-balk { flex-wrap: wrap; gap: 10px; }
  nav.hoofdnav { gap: 14px; font-size: 0.88rem; flex-wrap: wrap; }
  .taalwissel { margin-left: 0; }
  .hero { padding: 60px 0 50px; }
  section.blok { padding: 50px 0; }
}
