/*
Theme Name:  SwaneNest
Theme URI:   https://swanenest.nl
Description: Professioneel WordPress thema voor Gezinshuis 't SwaneNest. Volledig beheerbaar via het dashboard. Donkerblauw design met warme accenten.
Version:     1.0.0
Author:      Gezinshuis 't SwaneNest
Author URI:  https://swanenest.nl
License:     Proprietary
Text Domain: swanenest
Tags:        responsive-layout, custom-colors, custom-menu, custom-logo, featured-images, full-width-template, theme-options
*/

/* ═══════════════════════════════════════════════════════════════
   CSS CUSTOM PROPERTIES — SwaneNest Design Tokens
═══════════════════════════════════════════════════════════════ */
:root {
  --sn-blauw:       #003d82;
  --sn-blauw-mid:   #0057b8;
  --sn-blauw-licht: #dbeafe;
  --sn-blauw-bg:    #f0f6ff;
  --sn-zwart:       #0d1f3c;
  --sn-grijs:       #475569;
  --sn-grijs-licht: #94a3b8;
  --sn-grijs-bg:    #f1f5f9;
  --sn-wit:         #ffffff;
  --sn-warm:        #f7f4ef;
  --sn-groen:       #16a34a;
  --sn-groen-licht: #dcfce7;
  --sn-goud:        #d97706;
  --sn-rood:        #dc2626;
  --sn-paars:       #7c3aed;

  --sn-radius:      12px;
  --sn-radius-lg:   20px;
  --sn-shadow:      0 4px 24px rgba(0, 61, 130, 0.10);
  --sn-shadow-lg:   0 8px 40px rgba(0, 61, 130, 0.15);

  --sn-font:        'Segoe UI', system-ui, -apple-system, sans-serif;
  --sn-font-serif:  Georgia, 'Times New Roman', serif;

  --sn-max-width:   1200px;
  --sn-pad:         clamp(16px, 4vw, 40px);
}

/* ═══════════════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sn-font);
  color: var(--sn-zwart);
  background: var(--sn-wit);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sn-blauw-mid); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--sn-blauw); }
ul, ol { list-style: none; }

.container {
  max-width: var(--sn-max-width);
  margin: 0 auto;
  padding: 0 var(--sn-pad);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ═══════════════════════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════════════════════ */
h1, h2, h3, h4, h5 {
  font-family: var(--sn-font);
  color: var(--sn-zwart);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; color: var(--sn-grijs); }
p:last-child { margin-bottom: 0; }

.lead { font-size: 1.2rem; line-height: 1.8; color: var(--sn-grijs); }

/* Serif koppen voor speciale secties */
.serif { font-family: var(--sn-font-serif); }

/* ═══════════════════════════════════════════════════════════════
   KNOPPEN
═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primair {
  background: var(--sn-wit);
  color: var(--sn-blauw);
}
.btn-primair:hover {
  background: var(--sn-blauw-licht);
  color: var(--sn-blauw);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-blauw {
  background: var(--sn-blauw);
  color: var(--sn-wit);
}
.btn-blauw:hover {
  background: var(--sn-blauw-mid);
  color: var(--sn-wit);
  transform: translateY(-2px);
  box-shadow: var(--sn-shadow);
}

.btn-outline {
  background: transparent;
  color: var(--sn-blauw);
  border: 2px solid var(--sn-blauw);
}
.btn-outline:hover {
  background: var(--sn-blauw);
  color: var(--sn-wit);
}

.btn-groen {
  background: var(--sn-groen);
  color: var(--sn-wit);
}
.btn-groen:hover {
  background: #15803d;
  color: var(--sn-wit);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

/* ═══════════════════════════════════════════════════════════════
   NAVIGATIE
═══════════════════════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(0, 26, 64, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

#site-header.scrolled {
  background: rgba(0, 20, 50, 0.99);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo img {
  height: 48px;
  width: auto;
  max-width: 56px;
  object-fit: contain;
}

.logo-tekst { display: flex; flex-direction: column; }
.logo-naam {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sn-wit);
  line-height: 1.2;
}
.logo-sub {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Hoofd navigatie */
#primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
}

#primary-nav > li { position: relative; }

#primary-nav > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  border-radius: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
}
#primary-nav > li > a:hover,
#primary-nav > li > a.actief {
  color: var(--sn-wit);
  background: rgba(255,255,255,0.1);
}

/* Dropdown */
.sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--sn-wit);
  border-radius: var(--sn-radius);
  box-shadow: var(--sn-shadow-lg);
  border: 1px solid var(--sn-blauw-licht);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 100;
}

li:hover > .sub-menu,
li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu li a {
  display: block;
  padding: 10px 16px;
  color: var(--sn-zwart);
  font-size: 0.875rem;
  transition: all 0.15s;
}
.sub-menu li a:hover {
  background: var(--sn-blauw-bg);
  color: var(--sn-blauw);
}
.sub-menu li:first-child a { border-radius: var(--sn-radius) var(--sn-radius) 0 0; }
.sub-menu li:last-child a  { border-radius: 0 0 var(--sn-radius) var(--sn-radius); }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--sn-wit);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
/* Menu + knoppen naar rechts; blijft netjes als de Portaal/CTA-knop ontbreekt */
#primary-nav-wrapper { margin-left: auto; }
.header-cta:empty { display: none; }

/* Mobile nav */
#mobile-nav {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0; bottom: 0;
  background: var(--sn-zwart);
  overflow-y: auto;
  z-index: 999;
  padding: 20px;
}
#mobile-nav.open { display: block; }

#mobile-nav a {
  display: block;
  padding: 14px 16px;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 1rem;
  transition: color 0.2s;
}
#mobile-nav a:hover { color: var(--sn-wit); }

#mobile-nav .sub-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  background: rgba(255,255,255,0.05);
  border-radius: 0;
  border: none;
  padding-left: 16px;
}
#mobile-nav .sub-menu a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  padding: 10px 16px;
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTIE
═══════════════════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #001a52 0%, #003d82 50%, #0057b8 100%);
  padding-top: 70px;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.hero-shape-1 {
  width: 600px; height: 600px;
  top: -200px; right: -100px;
}
.hero-shape-2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -100px;
  background: rgba(255,255,255,0.03);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-titel {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--sn-wit);
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero-titel em {
  font-style: normal;
  color: #7dd3fc;
}

.hero-subtitel {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-knoppen {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hero-stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--sn-radius);
  padding: 16px;
  text-align: center;
}

.hero-stat-getal {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--sn-wit);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.hero-afbeelding {
  position: relative;
}

.hero-foto {
  border-radius: var(--sn-radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.hero-vrije-plaatsen {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--sn-groen);
  color: var(--sn-wit);
  border-radius: var(--sn-radius);
  padding: 16px 20px;
  box-shadow: var(--sn-shadow-lg);
}

.hero-vp-getal {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.hero-vp-label {
  font-size: 0.75rem;
  opacity: 0.85;
}

/* ═══════════════════════════════════════════════════════════════
   SECTIES ALGEMEEN
═══════════════════════════════════════════════════════════════ */
.sectie {
  padding: clamp(60px, 8vw, 100px) 0;
}

.sectie-licht { background: var(--sn-wit); }
.sectie-blauw-bg { background: var(--sn-blauw-bg); }
.sectie-warm { background: var(--sn-warm); }
.sectie-donker {
  background: linear-gradient(135deg, #001a52, #003d82);
  color: var(--sn-wit);
}
.sectie-donker h2,
.sectie-donker h3,
.sectie-donker p { color: rgba(255,255,255,0.9); }
.sectie-donker p { color: rgba(255,255,255,0.7); }

.sectie-kop {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.sectie-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--sn-blauw-licht);
  color: var(--sn-blauw);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.sectie-donker .sectie-label {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
}

.sectie-kop h2 {
  margin-bottom: 16px;
}

.sectie-kop p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }

/* Kaart */
.kaart {
  background: var(--sn-wit);
  border-radius: var(--sn-radius);
  padding: 28px;
  box-shadow: var(--sn-shadow);
  border: 1px solid rgba(0,61,130,0.06);
  transition: all 0.3s ease;
}
.kaart:hover {
  transform: translateY(-4px);
  box-shadow: var(--sn-shadow-lg);
}

.kaart-icoon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.kaart h3 {
  font-size: 1.1rem;
  color: var(--sn-blauw);
  margin-bottom: 10px;
}

/* ═══════════════════════════════════════════════════════════════
   MISSIE SECTIE
═══════════════════════════════════════════════════════════════ */
#missie-visie {
  background: linear-gradient(135deg, #001a52, #003d82);
  padding: 80px 0;
}

.missie-quote {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.missie-quote-tekst {
  font-family: var(--sn-font-serif);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  color: var(--sn-wit);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.missie-quote-tekst::before {
  content: '"';
  font-size: 6rem;
  color: rgba(255,255,255,0.1);
  position: absolute;
  top: -20px;
  left: -20px;
  line-height: 1;
  font-family: Georgia, serif;
}

.missie-attrib {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.missie-waarden {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 60px;
}

.missie-waarde {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--sn-radius);
  padding: 24px;
  text-align: center;
}

.missie-waarde-icoon { font-size: 2rem; margin-bottom: 12px; }
.missie-waarde-titel {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--sn-wit);
  margin-bottom: 6px;
}
.missie-waarde-tekst {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

/* ═══════════════════════════════════════════════════════════════
   GEZINSOUDERS
═══════════════════════════════════════════════════════════════ */
.gezinsouder-kaart {
  background: var(--sn-wit);
  border-radius: var(--sn-radius-lg);
  overflow: hidden;
  box-shadow: var(--sn-shadow);
  transition: all 0.3s;
}
.gezinsouder-kaart:hover { transform: translateY(-6px); box-shadow: var(--sn-shadow-lg); }

.gezinsouder-foto {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.gezinsouder-foto-placeholder {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  background: linear-gradient(135deg, var(--sn-blauw-bg), var(--sn-blauw-licht));
}

.gezinsouder-info { padding: 24px; }
.gezinsouder-naam { font-size: 1.2rem; color: var(--sn-blauw); font-weight: 700; margin-bottom: 4px; }
.gezinsouder-rol { font-size: 0.85rem; color: var(--sn-grijs-licht); margin-bottom: 12px; }
.gezinsouder-bio { font-size: 0.9rem; color: var(--sn-grijs); line-height: 1.65; margin-bottom: 16px; }

.gezinsouder-socials {
  display: flex;
  gap: 8px;
}
.social-link {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--sn-blauw-bg);
  color: var(--sn-blauw);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  transition: all 0.2s;
  text-decoration: none;
}
.social-link:hover {
  background: var(--sn-blauw);
  color: var(--sn-wit);
}

/* ═══════════════════════════════════════════════════════════════
   VOOR WIE SECTIES (jeugdigen / ouders / professionals)
═══════════════════════════════════════════════════════════════ */
.voor-wie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--sn-radius-lg);
  overflow: hidden;
  box-shadow: var(--sn-shadow-lg);
}

.voor-wie-blok {
  padding: 48px 40px;
}

.voor-wie-blok.blauw {
  background: var(--sn-blauw);
  color: var(--sn-wit);
}
.voor-wie-blok.licht { background: var(--sn-blauw-bg); }

.voor-wie-blok .icoon-groot {
  font-size: 3rem;
  margin-bottom: 20px;
}

.voor-wie-blok h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: inherit;
}
.voor-wie-blok.blauw h3 { color: var(--sn-wit); }

.voor-wie-blok ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.voor-wie-blok.blauw ul li { border-bottom-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); }

.voor-wie-blok ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--sn-blauw-mid);
  font-weight: 700;
}
.voor-wie-blok.blauw ul li::before { color: #7dd3fc; }

/* ═══════════════════════════════════════════════════════════════
   MATCHING / WERKWIJZE
═══════════════════════════════════════════════════════════════ */
.stappen-lijst {
  counter-reset: stap;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stap {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.stap-nummer {
  counter-increment: stap;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sn-blauw);
  color: var(--sn-wit);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.stap-inhoud h4 {
  font-size: 1rem;
  color: var(--sn-blauw);
  margin-bottom: 4px;
}
.stap-inhoud p { font-size: 0.9rem; margin: 0; }

/* ═══════════════════════════════════════════════════════════════
   ERVARINGEN / TESTIMONIALS
═══════════════════════════════════════════════════════════════ */
.ervaringen-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.3) transparent;
}
.ervaringen-grid::-webkit-scrollbar { height: 6px; }
.ervaringen-grid::-webkit-scrollbar-track { background: rgba(255,255,255,0.08); border-radius: 999px; }
.ervaringen-grid::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.3); border-radius: 999px; }
.ervaringen-grid > .ervaring-kaart {
  flex: 0 0 clamp(280px, 80vw, 360px);
  scroll-snap-align: start;
}
@media (min-width: 768px) {
  .ervaringen-grid > .ervaring-kaart { flex-basis: 360px; }
}

.ervaring-kaart {
  background: var(--sn-wit);
  border-radius: var(--sn-radius);
  padding: 28px;
  box-shadow: var(--sn-shadow);
  border-top: 4px solid var(--sn-blauw);
  transition: all 0.3s;
}
.ervaring-kaart:hover { transform: translateY(-4px); }

.ervaring-sterren { color: #f59e0b; font-size: 1.1rem; margin-bottom: 12px; }
.ervaring-tekst { font-style: italic; color: var(--sn-grijs); line-height: 1.75; margin-bottom: 16px; }
.ervaring-auteur { font-weight: 700; color: var(--sn-blauw); font-size: 0.9rem; }
.ervaring-rol { font-size: 0.8rem; color: var(--sn-grijs-licht); }

/* ═══════════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════════ */
.faq-lijst {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--sn-wit);
  border-radius: var(--sn-radius);
  border: 1px solid var(--sn-blauw-licht);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item:hover { box-shadow: var(--sn-shadow); }

.faq-vraag {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--sn-zwart);
  transition: background 0.2s;
  gap: 12px;
}
.faq-vraag:hover { background: var(--sn-blauw-bg); }
.faq-vraag[aria-expanded="true"] { background: var(--sn-blauw-bg); color: var(--sn-blauw); }

.faq-icoon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--sn-blauw-licht);
  color: var(--sn-blauw);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform 0.3s;
}
.faq-vraag[aria-expanded="true"] .faq-icoon { transform: rotate(45deg); }

.faq-antwoord {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-antwoord-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--sn-grijs);
}

/* ═══════════════════════════════════════════════════════════════
   PARTNERS SECTIE
═══════════════════════════════════════════════════════════════ */
.partners-balk {
  background: var(--sn-grijs-bg);
  padding: 40px 0;
  border-top: 1px solid var(--sn-blauw-licht);
  border-bottom: 1px solid var(--sn-blauw-licht);
}

.partners-titel {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--sn-grijs-licht);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.partners-rij {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.partner-item {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.65;
  transition: opacity 0.2s;
  text-decoration: none;
}
.partner-item:hover { opacity: 1; }

.partner-logo {
  height: 40px;
  width: auto;
  filter: grayscale(100%);
  transition: filter 0.2s;
}
.partner-item:hover .partner-logo { filter: grayscale(0%); }

.partner-naam {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--sn-grijs);
}

/* ═══════════════════════════════════════════════════════════════
   DOWNLOADS SECTIE
═══════════════════════════════════════════════════════════════ */
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.download-item {
  background: var(--sn-wit);
  border-radius: var(--sn-radius);
  padding: 24px;
  border: 1px solid var(--sn-blauw-licht);
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: all 0.2s;
}
.download-item:hover {
  border-color: var(--sn-blauw);
  background: var(--sn-blauw-bg);
  transform: translateY(-2px);
  box-shadow: var(--sn-shadow);
}

.download-icoon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--sn-blauw-licht);
  color: var(--sn-blauw);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.download-naam { font-weight: 600; font-size: 0.9rem; color: var(--sn-zwart); margin-bottom: 2px; }
.download-type { font-size: 0.75rem; color: var(--sn-grijs-licht); }

/* ═══════════════════════════════════════════════════════════════
   CONTACT SECTIE
═══════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 20px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--sn-blauw-licht);
}
.contact-item:last-child { border-bottom: none; }

.contact-icoon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sn-blauw-licht);
  color: var(--sn-blauw);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-label { font-size: 0.75rem; color: var(--sn-grijs-licht); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-waarde { font-weight: 600; color: var(--sn-zwart); font-size: 0.95rem; }

/* Contact formulier */
.contact-formulier {
  background: var(--sn-wit);
  border-radius: var(--sn-radius-lg);
  padding: 36px;
  box-shadow: var(--sn-shadow-lg);
}

.form-veld {
  margin-bottom: 18px;
}
.form-veld label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sn-grijs);
  margin-bottom: 6px;
}
.form-veld input,
.form-veld select,
.form-veld textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--sn-blauw-licht);
  border-radius: 9px;
  font-size: 0.95rem;
  font-family: var(--sn-font);
  color: var(--sn-zwart);
  background: var(--sn-wit);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-veld input:focus,
.form-veld select:focus,
.form-veld textarea:focus {
  border-color: var(--sn-blauw-mid);
  box-shadow: 0 0 0 3px rgba(0,87,184,0.12);
}
.form-veld textarea { min-height: 120px; resize: vertical; }

/* ═══════════════════════════════════════════════════════════════
   KENNISBANK / NIEUWS
═══════════════════════════════════════════════════════════════ */
.artikel-kaart {
  background: var(--sn-wit);
  border-radius: var(--sn-radius);
  overflow: hidden;
  box-shadow: var(--sn-shadow);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.artikel-kaart:hover { transform: translateY(-4px); box-shadow: var(--sn-shadow-lg); }

.artikel-afbeelding {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
}

.artikel-afbeelding-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--sn-blauw-bg), var(--sn-blauw-licht));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.artikel-inhoud {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.artikel-categorie {
  display: inline-block;
  background: var(--sn-blauw-licht);
  color: var(--sn-blauw);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.artikel-titel {
  font-size: 1.05rem;
  color: var(--sn-zwart);
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}

.artikel-samenvatting {
  font-size: 0.875rem;
  color: var(--sn-grijs);
  flex: 1;
  margin-bottom: 16px;
}

.artikel-meta {
  font-size: 0.75rem;
  color: var(--sn-grijs-licht);
  display: flex;
  justify-content: space-between;
}

/* ═══════════════════════════════════════════════════════════════
   VRIJE PLAATSEN BANNER
═══════════════════════════════════════════════════════════════ */
.vrije-plaatsen-banner {
  background: linear-gradient(135deg, var(--sn-groen), #15803d);
  color: var(--sn-wit);
  padding: 20px 0;
  text-align: center;
}

.vp-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.vp-getal {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}
.vp-tekst { font-size: 1rem; opacity: 0.9; }

.vp-gesloten-banner {
  background: linear-gradient(135deg, var(--sn-goud), #b45309);
}

/* ═══════════════════════════════════════════════════════════════
   CTA SECTIE
═══════════════════════════════════════════════════════════════ */
.cta-sectie {
  background: linear-gradient(135deg, #001a52, #003d82);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-sectie::before {
  content: '🦢';
  position: absolute;
  font-size: 200px;
  opacity: 0.04;
  right: -40px;
  bottom: -40px;
  line-height: 1;
}

.cta-sectie h2 { color: var(--sn-wit); margin-bottom: 16px; }
.cta-sectie p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 32px; font-size: 1.05rem; }

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

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
#site-footer {
  background: var(--sn-zwart);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; text-decoration: none; }
.footer-logo img { height: 36px; }
.footer-logo-naam { font-size: 0.95rem; font-weight: 700; color: var(--sn-wit); }

.footer-omschrijving {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.55);
}

.footer-socials { display: flex; gap: 8px; }
.footer-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.footer-social:hover { background: var(--sn-blauw-mid); color: var(--sn-wit); }

.footer-kolom h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--sn-wit);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-kolom ul li { margin-bottom: 8px; }
.footer-kolom ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-kolom ul li a:hover { color: var(--sn-wit); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}
.footer-contact-item strong { color: rgba(255,255,255,0.85); }

.footer-bodem {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}

.footer-bodem-links { display: flex; gap: 16px; }
.footer-bodem-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bodem-links a:hover { color: var(--sn-wit); }

/* ═══════════════════════════════════════════════════════════════
   SOCIAL DEELKNOPPEN
═══════════════════════════════════════════════════════════════ */
.social-delen {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.deel-knop {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.deel-facebook { background: #1877f2; color: #fff; }
.deel-twitter  { background: #000; color: #fff; }
.deel-linkedin { background: #0a66c2; color: #fff; }
.deel-whatsapp { background: #25d366; color: #fff; }
.deel-email    { background: var(--sn-grijs-bg); color: var(--sn-zwart); }

.deel-knop:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }

/* ═══════════════════════════════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════════════════════════════ */
#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 480px;
  background: var(--sn-zwart);
  border-radius: var(--sn-radius);
  padding: 20px 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  z-index: 9999;
  border-top: 3px solid var(--sn-blauw-mid);
  display: none;
}

#cookie-banner.zichtbaar { display: block; }

.cookie-tekst { font-size: 0.875rem; color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 16px; }
.cookie-tekst a { color: #93c5fd; }

.cookie-knoppen { display: flex; gap: 8px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════════════════════════════ */
#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sn-blauw);
  color: var(--sn-wit);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--sn-shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 990;
  text-decoration: none;
}
#back-to-top.zichtbaar { opacity: 1; pointer-events: auto; }
#back-to-top:hover { background: var(--sn-blauw-mid); transform: translateY(-3px); }

/* ═══════════════════════════════════════════════════════════════
   WORDPRESS SPECIFIEK
═══════════════════════════════════════════════════════════════ */
.wp-block-image { margin: 2rem 0; }
.wp-block-quote { border-left: 4px solid var(--sn-blauw); padding-left: 20px; margin: 2rem 0; }
.wp-block-quote p { font-style: italic; color: var(--sn-grijs); }

/* Alignments */
.aligncenter { text-align: center; margin: 0 auto; }
.alignleft { float: left; margin: 0 20px 16px 0; }
.alignright { float: right; margin: 0 0 16px 20px; }

/* Sticky post */
.sticky { border-top: 3px solid var(--sn-blauw); }

/* ═══════════════════════════════════════════════════════════════
   MATOMO
═══════════════════════════════════════════════════════════════ */
/* Matomo opt-out iframe styling */
.matomo-optout iframe {
  width: 100%;
  border: none;
  min-height: 80px;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIEF
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  #primary-nav { display: none; }
  .menu-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-afbeelding { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .voor-wie-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .header-cta .btn:not(.btn-sm) { display: none; }
  .missie-waarden { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; }
  .missie-waarden { grid-template-columns: 1fr; }
  .cta-knoppen { flex-direction: column; align-items: center; }
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIES
═══════════════════════════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.fade-in-up.delay-1 { animation-delay: 0.1s; }
.fade-in-up.delay-2 { animation-delay: 0.2s; }
.fade-in-up.delay-3 { animation-delay: 0.3s; }

/* Intersection observer klassen */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.zichtbaar { opacity: 1; transform: translateY(0); }

/* Print */
@media print {
  #site-header, #site-footer, #cookie-banner, #back-to-top { display: none; }
  body { padding-top: 0; }
}

/* ── Losse pagina-inhoud (page.php) ───────────────────────── */
.paginainhoud h2,
.paginainhoud h3 {
    font-family: var(--sn-font-serif);
    color: var(--sn-blauw);
    margin: 32px 0 12px;
    line-height: 1.3;
}
.paginainhoud h3 { font-size: 1.3rem; }
.paginainhoud h2 { font-size: 1.55rem; }
.paginainhoud p { margin: 0 0 18px; }
.paginainhoud ul {
    margin: 0 0 24px;
    padding-left: 0;
    list-style: none;
}
.paginainhoud ul li {
    position: relative;
    padding: 8px 0 8px 30px;
    border-bottom: 1px solid var(--sn-blauw-licht);
}
.paginainhoud ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--sn-blauw);
    font-weight: 700;
}
.paginainhoud strong { color: var(--sn-zwart); }
.paginainhoud a { color: var(--sn-blauw); text-decoration: underline; }

/* ── Topbalk (utility menu) ───────────────────────────────── */
#sn-topbar {
    background: #001230;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.82rem;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1002;
    color: rgba(255,255,255,0.7);
}
#sn-topbar .container {
    display: flex;
    justify-content: flex-end;
}
#sn-topbar-menu {
    display: flex;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 8px 0;
}
#sn-topbar-menu li { margin: 0; padding: 0; list-style: none; }
#sn-topbar-menu li::before { display: none !important; content: none !important; }
#sn-topbar #sn-topbar-menu a,
#sn-topbar #sn-topbar-menu li a {
    color: rgba(255,255,255,0.75) !important;
    text-decoration: none !important;
    transition: color 0.2s;
    font-weight: 500;
    border: none !important;
}
#sn-topbar #sn-topbar-menu a:hover { color: #fff !important; }
@media (max-width: 768px) {
    #sn-topbar { display: none; }
    body.heeft-topbar #site-header { top: 0; }
}

/* Header onder de topbalk laten beginnen (alleen desktop, als topbalk aanwezig) */
body.heeft-topbar #site-header { top: 39px; }

/* ── Zwevende status-badge (vrije plaatsen) ───────────────── */
#sn-status-badge {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
#sn-status-badge.zichtbaar {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.sn-status-inner {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border-radius: 999px;
    padding: 9px 18px;
    font-size: 0.9rem;
    font-weight: 700;
    background: #fff;
    box-shadow: 0 6px 24px rgba(0,60,120,0.18);
}
.status-open .sn-status-inner { color: #16a34a; border: 1.5px solid #22c55e; }
.status-dicht .sn-status-inner { color: #dc2626; border: 1.5px solid #ef4444; }
.sn-status-stip {
    width: 11px; height: 11px;
    border-radius: 50%;
    flex-shrink: 0;
    animation: snpulse 2s infinite;
}
.status-open .sn-status-stip { background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,0.3); }
.status-dicht .sn-status-stip { background: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.3); }
.sn-status-cta {
    background: linear-gradient(135deg, #0057b8, #003d82);
    color: #fff;
    padding: 9px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 18px rgba(0,60,120,0.3);
}
.sn-status-sub {
    background: #fff;
    color: var(--sn-grijs);
    padding: 7px 16px;
    border-radius: 12px;
    font-size: 0.78rem;
    max-width: 260px;
    text-align: right;
    box-shadow: 0 4px 18px rgba(0,60,120,0.12);
}
@keyframes snpulse {
    0%   { box-shadow: 0 0 0 0 currentColor; opacity: 1; }
    70%  { box-shadow: 0 0 0 8px transparent; opacity: 0.85; }
    100% { box-shadow: 0 0 0 0 transparent; opacity: 1; }
}
@media (max-width: 600px) {
    #sn-status-badge { bottom: 16px; right: 16px; }
    .sn-status-cta, .sn-status-sub { display: none; }
}

/* ── Hero status-indicator (altijd zichtbaar bij binnenkomst) ── */
.hero-status {
    position: absolute;
    bottom: -20px;
    left: -20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: var(--sn-radius);
    padding: 14px 22px;
    box-shadow: var(--sn-shadow-lg);
    background: #fff;
}
.hero-status-open  { border-left: 5px solid #22c55e; }
.hero-status-dicht { border-left: 5px solid #ef4444; }
.hero-status .hero-vp-getal { font-size: 1.25rem; font-weight: 800; line-height: 1.1; }
.hero-status .hero-vp-label { font-size: 0.78rem; font-weight: 600; margin-top: 2px; }
.hero-status-open  .hero-vp-getal { color: #16a34a; }
.hero-status-open  .hero-vp-label { color: #16a34a; opacity: 0.85; }
.hero-status-dicht .hero-vp-getal { color: #dc2626; }
.hero-status-dicht .hero-vp-label { color: #dc2626; opacity: 0.85; }
.hero-status-stip {
    width: 14px; height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
    animation: snpulse 2s infinite;
}
.hero-status-open  .hero-status-stip { background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,0.3); }
.hero-status-dicht .hero-status-stip { background: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.3); }
@media (max-width: 768px) {
    .hero-status { left: 0; bottom: -16px; padding: 12px 18px; }
}

/* Content-offset wanneer topbalk aanwezig is (desktop) */
body.heeft-topbar #home { padding-top: 139px !important; }
body.heeft-topbar .paginainhoud,
body.heeft-topbar > #site-header + * [style*="margin-top:70px"] { }
@media (min-width: 769px) {
    body.heeft-topbar [style*="margin-top:70px"] { margin-top: 109px !important; }
}

/* ── Hero slider ──────────────────────────────────────────── */
.hero-slider { position: relative; min-height: 380px; }
.hero-slide {
    position: absolute;
    top: 0; left: 0; right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}
.hero-slide.actief {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.hero-dots {
    display: flex;
    gap: 10px;
    margin-top: 28px;
}
.hero-dot {
    width: 10px; height: 10px;
    border-radius: 999px;
    border: none;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    padding: 0;
    transition: width 0.3s ease, background 0.3s ease;
}
.hero-dot.actief {
    width: 28px;
    background: #fff;
}

/* ── Fix: ervaringskaart-tekst zichtbaar in donkere sectie ── */
.sectie-donker .ervaring-kaart p,
.sectie-donker .ervaring-tekst { color: #475569 !important; }
.sectie-donker .ervaring-auteur { color: var(--sn-blauw) !important; }
.sectie-donker .ervaring-rol { color: #94a3b8 !important; }
/* Reveal-fallback: nooit volledig onzichtbaar blijven */
.no-js .reveal, .reveal.zichtbaar { opacity: 1; transform: none; }

/* ── Artikelkaart klikbaar maken ──────────────────────────── */
.artikel-kaart-link { display:block; text-decoration:none; color:inherit; }
.artikel-kaart-link:hover { transform:translateY(-4px); box-shadow:0 12px 32px rgba(0,60,120,0.14); }
.artikel-lees-link { display:inline-block; margin-top:12px; color:var(--sn-blauw); font-weight:700; font-size:0.85rem; }

/* ── Voor-wie CTA knoppen ─────────────────────────────────── */
.voor-wie-cta { display:inline-block; margin-top:18px; padding:10px 22px; border-radius:10px; font-weight:700; font-size:0.88rem; text-decoration:none; background:rgba(255,255,255,0.18); color:#fff; border:1px solid rgba(255,255,255,0.35); transition:all 0.2s; }
.voor-wie-cta:hover { background:#fff; color:var(--sn-blauw); }
.voor-wie-cta-blauw { background:var(--sn-blauw); color:#fff; border:none; }
.voor-wie-cta-blauw:hover { background:#003063; color:#fff; }

/* ── FAQ tweekolommen met uitgelicht blok ─────────────────── */
.faq-grid { display:grid; grid-template-columns:1fr 360px; gap:48px; align-items:start; }
.faq-grid .faq-lijst { max-width:none; margin:0; }
.faq-kolom-rechts { position:sticky; top:120px; display:flex; flex-direction:column; gap:20px; }
.faq-cta-kaart { background:linear-gradient(135deg,#003d82,#0057b8); border-radius:20px; padding:32px 28px; color:#fff; text-align:center; }
.faq-cta-icoon { font-size:2.5rem; margin-bottom:12px; }
.faq-cta-kaart h3 { font-family:var(--sn-font-serif); font-size:1.3rem; color:#fff; margin:0 0 12px; }
.faq-cta-kaart p { font-size:0.92rem; line-height:1.7; color:rgba(255,255,255,0.85); margin:0 0 20px; }
.faq-cta-knop { display:block; background:#fff; color:var(--sn-blauw); padding:12px 18px; border-radius:10px; text-decoration:none; font-weight:700; font-size:0.92rem; margin-bottom:10px; }
.faq-cta-knop-licht { background:rgba(255,255,255,0.15); color:#fff; border:1px solid rgba(255,255,255,0.3); }
.faq-cta-link { display:inline-block; margin-top:8px; color:rgba(255,255,255,0.85); font-size:0.82rem; text-decoration:underline; }
.faq-kennisbank-kaart { background:#fff; border:1px solid #e8f0fe; border-radius:16px; padding:24px 26px; box-shadow:0 2px 12px rgba(0,60,120,0.06); }
.faq-kb-icoon { font-size:1.8rem; margin-bottom:10px; }
.faq-kennisbank-kaart h4 { font-family:var(--sn-font-serif); font-size:1.05rem; color:var(--sn-zwart); margin:0 0 8px; }
.faq-kennisbank-kaart p { font-size:0.88rem; color:var(--sn-grijs); line-height:1.65; margin:0 0 14px; }
.faq-kb-link { color:var(--sn-blauw); font-weight:700; font-size:0.88rem; text-decoration:none; }
@media (max-width:900px) {
    .faq-grid { grid-template-columns:1fr; gap:32px; }
    .faq-kolom-rechts { position:static; }
}

/* ── Themapagina's (SKJ, LSCI, planmatig, intervisie, elanzorg) ── */
.thp-intro { background:linear-gradient(135deg,#003d82,#0057b8); border-radius:20px; padding:32px 36px; color:#fff; margin-bottom:40px; }
.thp-intro h2 { font-family:var(--sn-font-serif); font-size:1.45rem; margin:0 0 14px; color:#fff; }
.thp-intro p { font-size:1rem; line-height:1.85; color:rgba(255,255,255,0.88); margin:0 0 14px; }
.thp-intro p:last-child { margin-bottom:0; }
.thp-kop { font-family:var(--sn-font-serif); font-size:1.5rem; color:var(--sn-blauw); margin:0 0 24px; }
.thp-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:18px; margin-bottom:40px; }
.thp-kaart { background:#fff; border:1px solid #e8f0fe; border-radius:16px; padding:24px 26px; box-shadow:0 2px 10px rgba(0,60,120,0.06); }
.thp-icoon { font-size:2rem; margin-bottom:12px; }
.thp-kaart h3 { font-family:var(--sn-font-serif); font-size:1.1rem; color:var(--sn-blauw); margin:0 0 8px; }
.thp-kaart p { font-size:0.92rem; color:var(--sn-grijs); line-height:1.75; margin:0; }
.thp-quote { background:#eff6ff; border-left:4px solid var(--sn-blauw); border-radius:0 12px 12px 0; padding:24px 28px; }
.thp-quote p { font-style:italic; font-size:1.05rem; color:var(--sn-zwart); line-height:1.7; margin:0; }
.thp-tekst { font-size:1rem; color:var(--sn-grijs); line-height:1.85; margin-bottom:24px; }
.thp-tekst h3 { font-family:var(--sn-font-serif); font-size:1.2rem; color:var(--sn-zwart); margin:28px 0 10px; }

/* ── Gerelateerde links op themapagina's ──────────────────── */
.thp-gerelateerd { background:#f8faff; border:1px solid #e8f0fe; border-radius:16px; padding:24px 28px; margin-top:8px; }
.thp-gerelateerd h3 { font-family:var(--sn-font-serif); font-size:1.1rem; color:var(--sn-zwart); margin:0 0 16px; }
.thp-gerelateerd-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:12px; }
.thp-gerel-link { display:block; background:#fff; border:1px solid #e8f0fe; border-radius:10px; padding:13px 18px; text-decoration:none; color:var(--sn-blauw); font-weight:600; font-size:0.9rem; transition:all 0.2s; }
.thp-gerel-link:hover { border-color:var(--sn-blauw); transform:translateX(3px); }

/* ── Schilderij van Myrthe in de hero ─────────────────────── */
.hero-schilderij-wrap {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.hero-schilderij {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: heroKenBurns 24s ease-in-out infinite alternate;
}
@keyframes heroKenBurns {
    0%   { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.12) translate(-2%, -3%); }
}
.hero-schilderij-bijschrift {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 28px 18px 14px;
    font-size: 0.82rem;
    color: #fff;
    background: linear-gradient(to top, rgba(0,15,40,0.75), transparent);
    text-align: center;
}
@media (prefers-reduced-motion: reduce) {
    .hero-schilderij { animation: none; }
}

/* ── Sectie "De zwaan / onze naam" ────────────────────────── */
.zwaan-grid { display:grid; grid-template-columns:0.85fr 1fr; gap:56px; align-items:center; }
.zwaan-beeld { position:relative; border-radius:20px; overflow:hidden; box-shadow:0 16px 40px rgba(0,60,120,0.18); }
.zwaan-beeld img { width:100%; height:100%; object-fit:cover; display:block; aspect-ratio:4/5; }
.zwaan-beeld-bijschrift { position:absolute; left:0; right:0; bottom:0; padding:24px 16px 12px; font-size:0.8rem; color:#fff; text-align:center; background:linear-gradient(to top, rgba(0,15,40,0.7), transparent); }
.zwaan-tekst h2 { font-family:var(--sn-font-serif); font-size:1.9rem; color:var(--sn-blauw); margin:8px 0 18px; }
.zwaan-tekst p { font-size:1.02rem; line-height:1.85; color:var(--sn-grijs); margin:0 0 16px; }
.zwaan-tekst em { color:var(--sn-blauw); font-style:italic; }
.zwaan-citaat { margin-top:24px; padding:20px 26px; background:#eff6ff; border-left:4px solid var(--sn-blauw); border-radius:0 12px 12px 0; }
.zwaan-citaat p { font-family:var(--sn-font-serif); font-style:italic; font-size:1.15rem; color:var(--sn-zwart); margin:0 0 6px; }
.zwaan-citaat span { font-size:0.85rem; color:var(--sn-grijs); }
@media (max-width:820px) {
    .zwaan-grid { grid-template-columns:1fr; gap:32px; }
}

/* ── Ervaringen-popup (rechtsonder, boven de status-badge) ── */
#sn-ervaring-popup {
    position: fixed;
    right: 16px;
    bottom: 88px;
    z-index: 900;
    width: 280px;
    max-width: calc(100vw - 32px);
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e8f0fe;
    box-shadow: 0 8px 28px rgba(0,61,130,0.16), 0 2px 8px rgba(0,0,0,0.07);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
#sn-ervaring-popup.zichtbaar { opacity: 1; transform: translateY(0); }
.sn-ep-header {
    background: linear-gradient(135deg,#003d82,#0057b8);
    padding: 10px 14px;
    display: flex; align-items: center; justify-content: space-between;
}
.sn-ep-titel { font-size: 0.72rem; font-weight: 700; color: #fff; letter-spacing: 0.5px; display: flex; align-items: center; gap: 6px; }
.sn-ep-teller { font-size: 0.62rem; color: rgba(255,255,255,0.55); font-weight: 600; }
.sn-ep-sluit { background: none; border: none; color: rgba(255,255,255,0.7); font-size: 1.2rem; line-height: 1; cursor: pointer; padding: 0 2px; }
.sn-ep-sluit:hover { color: #fff; }
.sn-ep-inhoud { padding: 14px 16px; }
.sn-ep-sterren { color: #f59e0b; font-size: 0.85rem; margin-bottom: 8px; letter-spacing: 1px; }
.sn-ep-tekst { font-size: 0.82rem; color: #475569; line-height: 1.65; margin: 0 0 10px; font-style: italic; }
.sn-ep-voet { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.sn-ep-naam { font-size: 0.75rem; font-weight: 700; color: var(--sn-zwart); }
.sn-ep-rol { font-size: 0.68rem; color: #94a3b8; }
.sn-ep-knop { background: linear-gradient(135deg,#003d82,#0057b8); color: #fff; border-radius: 8px; padding: 6px 12px; font-size: 0.68rem; font-weight: 700; text-decoration: none; flex-shrink: 0; }
.sn-ep-balk { height: 3px; background: #f1f5f9; display: flex; gap: 2px; padding: 0 2px 2px; }
.sn-ep-balk span { flex: 1; height: 2px; border-radius: 999px; background: #dbeafe; transition: background 0.3s; }
.sn-ep-balk span.actief { background: #0057b8; }
/* Status-badge iets compacter onderaan zodat de popup erboven past */
@media (max-width: 600px) {
    #sn-ervaring-popup {
        right: 10px;
        bottom: 78px;
        width: 248px;
    }
}

/* ── Fluent Forms in SwaneNest-huisstijl ──────────────────── */
.sn-fluentform-wrap .ff-el-input--label label,
.sn-fluentform-wrap .ff_form_instance label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sn-zwart);
    margin-bottom: 6px;
}
.sn-fluentform-wrap input[type="text"],
.sn-fluentform-wrap input[type="email"],
.sn-fluentform-wrap input[type="tel"],
.sn-fluentform-wrap input[type="url"],
.sn-fluentform-wrap select,
.sn-fluentform-wrap textarea {
    width: 100%;
    border: 1.5px solid #dbeafe !important;
    border-radius: 10px !important;
    padding: 12px 14px !important;
    font-size: 0.95rem !important;
    font-family: var(--sn-font) !important;
    color: var(--sn-zwart) !important;
    background: #fff !important;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: none !important;
}
.sn-fluentform-wrap input:focus,
.sn-fluentform-wrap select:focus,
.sn-fluentform-wrap textarea:focus {
    border-color: var(--sn-blauw) !important;
    box-shadow: 0 0 0 3px rgba(0,87,184,0.12) !important;
    outline: none !important;
}
.sn-fluentform-wrap textarea { min-height: 120px; resize: vertical; }
.sn-fluentform-wrap .ff-el-group { margin-bottom: 16px !important; }
/* Verzendknop in huisstijl */
.sn-fluentform-wrap .ff-btn-submit,
.sn-fluentform-wrap button[type="submit"] {
    background: linear-gradient(135deg,#0057b8,#003d82) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 13px 28px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    width: 100%;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(0,60,120,0.25) !important;
}
.sn-fluentform-wrap .ff-btn-submit:hover,
.sn-fluentform-wrap button[type="submit"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,60,120,0.35) !important;
}
/* Akkoord-checkbox netjes */
.sn-fluentform-wrap .ff-el-form-check label { font-weight: 400; font-size: 0.82rem; color: var(--sn-grijs); }
/* Succes- en foutmeldingen */
.sn-fluentform-wrap .ff-message-success {
    background: #f0fdf4 !important;
    border: 1px solid #bbf7d0 !important;
    color: #166534 !important;
    border-radius: 10px !important;
    padding: 16px !important;
}

/* ── Review insturen (in donkere ervaringen-sectie) ───────── */
.review-blok { margin-top: 40px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; padding: 32px; }
.review-intro { text-align: center; }
.review-intro h3 { font-family: var(--sn-font-serif); font-size: 1.4rem; color: #fff; margin: 0 0 10px; }
.review-intro p { font-size: 0.95rem; color: rgba(255,255,255,0.78); line-height: 1.7; max-width: 560px; margin: 0 auto 20px; }
.review-knop { background: #fff; color: var(--sn-blauw); border: none; border-radius: 10px; padding: 13px 28px; font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: transform 0.15s, box-shadow 0.2s; }
.review-knop:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.25); }
.review-formulier-wrap { margin-top: 24px; background: #fff; border-radius: 16px; padding: 28px; max-width: 640px; margin-left: auto; margin-right: auto; }
.review-formulier-wrap[hidden] { display: none; }

/* ── Eigen review-formulier ───────────────────────────────── */
.review-form { text-align: left; }
.review-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.review-melding { border-radius: 10px; padding: 14px 18px; margin-bottom: 18px; font-size: 0.92rem; font-weight: 600; }
.review-melding-ok { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }
.review-melding-fout { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.review-sterren-kies { margin-bottom: 18px; }
.review-sterren-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--sn-zwart); margin-bottom: 6px; }
.review-sterren-rij { display: flex; gap: 4px; }
.review-ster { background: none; border: none; font-size: 1.8rem; line-height: 1; color: #dbeafe; cursor: pointer; padding: 0; transition: color 0.15s, transform 0.1s; }
.review-ster.actief { color: #f59e0b; }
.review-ster:hover { transform: scale(1.15); }
.review-veld { margin-bottom: 16px; }
.review-veld label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--sn-zwart); margin-bottom: 6px; }
.review-veld input[type="text"],
.review-veld select,
.review-veld textarea {
    width: 100%; border: 1.5px solid #dbeafe; border-radius: 10px; padding: 12px 14px;
    font-size: 0.95rem; font-family: var(--sn-font); color: var(--sn-zwart); background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.review-veld input:focus, .review-veld select:focus, .review-veld textarea:focus {
    border-color: var(--sn-blauw); box-shadow: 0 0 0 3px rgba(0,87,184,0.12); outline: none;
}
.review-veld textarea { resize: vertical; min-height: 110px; }
.review-checkbox label { display: flex; align-items: center; gap: 8px; font-weight: 400; font-size: 0.9rem; color: var(--sn-grijs); }
.review-checkbox input { width: auto; }
.review-verzend {
    background: linear-gradient(135deg,#0057b8,#003d82); color: #fff; border: none;
    border-radius: 10px; padding: 13px 28px; font-size: 0.95rem; font-weight: 700;
    cursor: pointer; width: 100%; transition: transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(0,60,120,0.25);
}
.review-verzend:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,60,120,0.35); }
.review-disclaimer { font-size: 0.78rem; color: #94a3b8; margin: 14px 0 0; line-height: 1.5; }
