/* HetZiterIn Theme CSS – Developed by Ptah Ankh Re – PARAAR (paraar.com) */

:root {
  --teal: #2ABFBF;
  --teal-dark: #1a9090;
  --teal-light: #a8e8e8;
  --teal-pale: #e8f8f8;
  --yellow: #F5C842;
  --yellow-light: #fff8dc;
  --blue: #3B6EA5;
  --blue-light: #e8f0fa;
  --green: #2E8B4A;
  --green-light: #c8e6d2;
  --white: #ffffff;
  --cream: #fdfaf6;
  --text: #1a2a2a;
  --text-soft: #4a6060;
  --radius: 20px;
  --radius-lg: 40px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ─── PARTICLES ─── */
#particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: float linear infinite;
}
@keyframes float {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.15; }
  90% { opacity: 0.15; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

/* ─── NAVBAR ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(253,250,246,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(42,191,191,0.15);
  transition: all 0.3s ease;
}
nav.scrolled {
  box-shadow: 0 4px 30px rgba(42,191,191,0.1);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img,
.nav-logo .custom-logo,
.nav-logo .custom-logo-link img {
  height: 44px !important;
  width: auto !important;
  max-width: none !important;
  display: block;
}
.nav-logo .custom-logo-link {
  display: flex;
  align-items: center;
  line-height: 0;
}
/* WordPress site logo block */
.nav-logo figure,
.nav-logo .wp-block-site-logo {
  margin: 0 !important;
  line-height: 0;
}
.nav-logo figure img,
.nav-logo .wp-block-site-logo img {
  height: 44px !important;
  width: auto !important;
}
.nav-logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--teal);
  transition: width 0.3s;
  border-radius: 2px;
}
.nav-links a:hover { color: var(--teal-dark); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--teal);
  color: white !important;
  padding: 10px 24px;
  border-radius: 50px;
  transition: background 0.3s, transform 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--teal-dark) !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 5% 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 70% at 70% 40%, rgba(42,191,191,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(245,200,66,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 30% 40% at 85% 85%, rgba(59,110,165,0.08) 0%, transparent 50%),
    var(--cream);
  z-index: 0;
}
.hero-blob {
  position: absolute;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  filter: blur(60px);
  opacity: 0.2;
  animation: morphBlob 12s ease-in-out infinite;
}
.hero-blob-1 {
  width: 500px; height: 500px;
  background: var(--teal);
  top: -100px; right: -100px;
  animation-delay: 0s;
}
.hero-blob-2 {
  width: 350px; height: 350px;
  background: var(--yellow);
  bottom: 0; left: 10%;
  animation-delay: -4s;
}
@keyframes morphBlob {
  0%, 100% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; transform: rotate(0deg); }
  33% { border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%; transform: rotate(5deg); }
  66% { border-radius: 70% 30% 50% 50% / 30% 70% 30% 70%; transform: rotate(-5deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-text { }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-pale);
  border: 1px solid rgba(42,191,191,0.3);
  color: var(--teal-dark);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease forwards;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}
h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
  animation: fadeInUp 0.9s ease 0.2s forwards;
  opacity: 0;
}
h1 em {
  font-style: italic;
  color: var(--teal-dark);
}
h1 strong {
  font-weight: 600;
  color: var(--green);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 300;
  animation: fadeInUp 0.9s ease 0.4s forwards;
  opacity: 0;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.6s forwards;
  opacity: 0;
}
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
  from { opacity: 0; transform: translateY(20px); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(42,191,191,0.35);
  border: none;
  cursor: pointer;
  display: inline-block;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(42,191,191,0.45);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1.5px solid rgba(42,191,191,0.4);
  transition: all 0.3s;
  display: inline-block;
  cursor: pointer;
}
.btn-secondary:hover {
  background: var(--teal-pale);
  border-color: var(--teal);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  animation: fadeInRight 1s ease 0.3s forwards;
  opacity: 0;
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
.hero-card-stack {
  position: relative;
  height: 480px;
}
.hero-card {
  position: absolute;
  border-radius: 28px;
  padding: 32px;
  transition: transform 0.3s;
}
.hero-card:hover { transform: translateY(-5px); }
.card-main {
  background: white;
  width: 85%;
  top: 20px; left: 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  z-index: 3;
}
.card-behind {
  background: linear-gradient(135deg, var(--teal-pale), var(--teal-light));
  width: 70%;
  top: 0; right: 0;
  height: 200px;
  z-index: 1;
  border: 1px solid rgba(42,191,191,0.2);
}
.card-accent {
  background: linear-gradient(135deg, var(--yellow-light), rgba(245,200,66,0.3));
  width: 55%;
  bottom: 0; right: 10%;
  height: 180px;
  z-index: 2;
  border: 1px solid rgba(245,200,66,0.3);
}
.card-logo-wrap {
  width: 80px; height: 80px;
  margin-bottom: 20px;
}
.card-logo-wrap img { width: 100%; height: 100%; object-fit: contain; }
.card-main h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}
.card-main p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 20px;
}
.card-stats {
  display: flex;
  gap: 24px;
}
.stat { }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--teal-dark);
  display: block;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.floating-tag {
  position: absolute;
  background: white;
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: floatTag 4s ease-in-out infinite;
  z-index: 10;
}
.tag-1 { top: 30px; right: -20px; animation-delay: 0s; }
.tag-2 { bottom: 200px; right: -10px; animation-delay: -2s; }
.tag-icon { font-size: 1.1rem; }
@keyframes floatTag {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ─── SECTION BASE ─── */
section {
  position: relative;
  z-index: 1;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 5%;
}
.section-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  width: 30px; height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 20px;
}
h2 em { font-style: italic; color: var(--teal-dark); }
h2 strong { font-weight: 600; }

/* ─── WAVE DIVIDER ─── */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -2px;
}
.wave-divider svg { display: block; width: 100%; }

/* ─── KERNWAARDEN ─── */
.kernwaarden {
  background: white;
}
.kw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}
.kw-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(42,191,191,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}
.kw-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 4px 4px 0 0;
}
.kw-card:nth-child(1)::before { background: var(--teal); }
.kw-card:nth-child(2)::before { background: var(--yellow); }
.kw-card:nth-child(3)::before { background: var(--blue); }
.kw-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.kw-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}
.kw-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}
.kw-card p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ─── OVER ONS ─── */
.over-ons {
  background: var(--cream);
}
.over-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.over-visual {
  position: relative;
}
.over-img-frame {
  background: linear-gradient(135deg, var(--teal-pale), rgba(42,191,191,0.15));
  border-radius: 40px 20px 40px 20px;
  padding: 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(42,191,191,0.2);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.over-img-frame::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(42,191,191,0.2), transparent);
  top: -50px; right: -50px;
  border-radius: 50%;
}
.over-logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 10px 30px rgba(42,191,191,0.3));
}
.over-quote {
  margin-top: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--teal-dark);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.over-text p {
  font-size: 0.97rem;
  color: var(--text-soft);
  line-height: 1.85;
  margin-bottom: 18px;
  font-weight: 300;
}
.over-text p strong {
  color: var(--text);
  font-weight: 500;
}
.over-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.over-tag {
  background: var(--teal-pale);
  color: var(--teal-dark);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid rgba(42,191,191,0.25);
  transition: all 0.3s;
}
.over-tag:hover {
  background: var(--teal);
  color: white;
  transform: translateY(-2px);
}

/* ─── MISSIE VISIE ─── */
.missie {
  background: linear-gradient(135deg, var(--teal-dark) 0%, #1a7a7a 50%, var(--blue) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.missie::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  top: -150px; right: -100px;
}
.missie::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  bottom: -80px; left: -60px;
}
.missie .section-inner { position: relative; z-index: 1; }
.missie .section-label { color: rgba(255,255,255,0.6); }
.missie .section-label::before { background: rgba(255,255,255,0.4); }
.missie h2 { color: white; }
.missie h2 em { color: var(--yellow); }
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}
.mv-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 44px 36px;
  transition: background 0.3s, transform 0.3s;
}
.mv-card:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-4px);
}
.mv-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mv-label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--yellow);
}
.mv-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 16px;
  color: white;
}
.mv-card p {
  font-size: 0.93rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
}

/* ─── PROJECTEN ─── */
.projecten {
  background: white;
}
.proj-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.proj-card {
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}
.proj-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.proj-card.teal { background: linear-gradient(135deg, var(--teal-pale), rgba(168,232,232,0.4)); border: 1px solid rgba(42,191,191,0.2); }
.proj-card.yellow { background: linear-gradient(135deg, var(--yellow-light), rgba(245,200,66,0.2)); border: 1px solid rgba(245,200,66,0.3); }
.proj-card.blue { background: linear-gradient(135deg, var(--blue-light), rgba(59,110,165,0.1)); border: 1px solid rgba(59,110,165,0.2); }
.proj-card.green { background: linear-gradient(135deg, var(--green-light), rgba(46,139,74,0.1)); border: 1px solid rgba(46,139,74,0.2); }
.proj-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
  display: block;
}
.proj-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}
.proj-card p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.7;
}
.proj-deco {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 100px; height: 100px;
  border-radius: 50%;
  opacity: 0.15;
}
.proj-card.teal .proj-deco { background: var(--teal); }
.proj-card.yellow .proj-deco { background: var(--yellow); }
.proj-card.blue .proj-deco { background: var(--blue); }
.proj-card.green .proj-deco { background: var(--green); }

/* ─── AANMELDEN FORMULIER ─── */
.aanmelden {
  background: var(--cream);
}
.form-container {
  background: white;
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.06);
  overflow: hidden;
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid rgba(42,191,191,0.1);
}
.form-header {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  padding: 40px 50px;
  color: white;
}
.form-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 8px;
}
.form-header p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Steps indicator */
.steps-indicator {
  display: flex;
  align-items: center;
  padding: 28px 50px;
  background: var(--teal-pale);
  border-bottom: 1px solid rgba(42,191,191,0.15);
}
.step-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.step-item:not(:last-child)::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(42,191,191,0.3);
  margin: 0 16px;
}
.step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.3s;
  background: rgba(42,191,191,0.15);
  color: var(--teal-dark);
  border: 2px solid rgba(42,191,191,0.3);
  flex-shrink: 0;
}
.step-num.active {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
  box-shadow: 0 4px 15px rgba(42,191,191,0.4);
}
.step-num.done {
  background: var(--green);
  color: white;
  border-color: var(--green);
}
.step-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-soft);
}
.step-label.active { color: var(--teal-dark); }

/* Form panels */
.form-body {
  padding: 50px;
}
.form-panel { display: none; }
.form-panel.active { display: block; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-group label span {
  color: var(--teal);
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(42,191,191,0.2);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--cream);
  transition: all 0.3s;
  outline: none;
}
.form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(42,191,191,0.1);
  background: white;
}
.form-control::placeholder { color: rgba(74,96,96,0.4); }

select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 100px; }

.interest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}
.interest-item {
  position: relative;
}
.interest-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.interest-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 1.5px solid rgba(42,191,191,0.2);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.87rem;
  background: var(--cream);
}
.interest-label:hover {
  border-color: var(--teal);
  background: var(--teal-pale);
}
.interest-item input:checked + .interest-label {
  border-color: var(--teal);
  background: var(--teal-pale);
  color: var(--teal-dark);
}
.interest-check {
  width: 20px; height: 20px;
  border-radius: 6px;
  border: 2px solid rgba(42,191,191,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
}
.interest-item input:checked + .interest-label .interest-check {
  background: var(--teal);
  border-color: var(--teal);
}
.interest-item input:checked + .interest-label .interest-check::after {
  content: '✓';
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
}

.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(42,191,191,0.1);
}
.btn-back {
  background: none;
  border: 1.5px solid rgba(42,191,191,0.3);
  color: var(--text-soft);
  padding: 12px 28px;
  border-radius: 50px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.btn-back:hover { background: var(--teal-pale); }
.btn-next {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(42,191,191,0.3);
}
.btn-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(42,191,191,0.4);
}

/* Success state */
.success-state {
  text-align: center;
  padding: 60px 50px;
}
.success-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 28px;
  animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes successPop {
  from { transform: scale(0); }
  to { transform: scale(1); }
}
.success-state h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 12px;
}
.success-state p { color: var(--text-soft); line-height: 1.7; }

/* ─── VRIJWILLIGERS ─── */
.vrijwilligers {
  background: white;
}
.vol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.vol-list {
  list-style: none;
  margin: 30px 0 36px;
}
.vol-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(42,191,191,0.1);
  font-size: 0.93rem;
  color: var(--text-soft);
  line-height: 1.6;
}
.vol-list li:last-child { border-bottom: none; }
.vol-check {
  width: 28px; height: 28px;
  background: var(--teal-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--teal-dark);
  flex-shrink: 0;
  border: 1.5px solid rgba(42,191,191,0.3);
}
.vol-visual {
  background: linear-gradient(135deg, var(--cream), var(--teal-pale));
  border-radius: 32px;
  padding: 50px 40px;
  border: 1px solid rgba(42,191,191,0.15);
  text-align: center;
}
.vol-visual-icon {
  font-size: 5rem;
  margin-bottom: 24px;
  display: block;
  animation: bounceIcon 3s ease-in-out infinite;
}
@keyframes bounceIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.vol-visual h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
}
.vol-visual p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ─── CONTACT ─── */
.contact {
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 20px;
}
.contact-info p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 36px;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(42,191,191,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: var(--text);
}
.contact-method:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}
.cm-icon {
  width: 44px; height: 44px;
  background: var(--teal-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid rgba(42,191,191,0.2);
}
.cm-text { }
.cm-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  margin-bottom: 2px;
}
.cm-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.contact-form-wrap {
  background: white;
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.05);
  border: 1px solid rgba(42,191,191,0.1);
}
.contact-form-wrap h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 28px;
}

/* ─── QUOTE BANNER ─── */
.quote-banner {
  background: var(--yellow-light);
  border-top: 1px solid rgba(245,200,66,0.4);
  border-bottom: 1px solid rgba(245,200,66,0.4);
}
.quote-banner .section-inner {
  padding: 60px 5%;
  text-align: center;
}
blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
}
blockquote cite {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-top: 20px;
  letter-spacing: 0.05em;
}

/* ─── ANBI/LEGAL ─── */
.anbi {
  background: white;
}
.anbi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.anbi-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(42,191,191,0.1);
  transition: transform 0.3s;
  cursor: pointer;
}
.anbi-card:hover { transform: translateY(-4px); }
.anbi-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text);
}
.anbi-card p {
  font-size: 0.84rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ─── FOOTER ─── */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 5% 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo img {
  height: 40px;
  filter: brightness(0) invert(1) opacity(0.8);
}
.footer-logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: white;
}
.footer-brand p {
  font-size: 0.86rem;
  line-height: 1.8;
  margin-bottom: 24px;
}
.footer-kvk {
  font-size: 0.78rem;
  opacity: 0.5;
  line-height: 1.8;
}
.footer-col h4 {
  color: white;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  text-decoration: none;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--teal-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-bottom-links a:hover { color: var(--teal-light); }

/* ─── MOBILE NAV ─── */
.mobile-menu {
  position: fixed;
  top: 75px; left: 0; right: 0;
  background: rgba(253,250,246,0.97);
  backdrop-filter: blur(20px);
  padding: 24px 5%;
  z-index: 999;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(42,191,191,0.15);
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { padding: 14px 0; border-bottom: 1px solid rgba(42,191,191,0.1); }
.mobile-menu ul li a {
  text-decoration: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { display: none; }
  .over-grid { grid-template-columns: 1fr; gap: 50px; }
  .mv-grid { grid-template-columns: 1fr; }
  .kw-grid { grid-template-columns: 1fr; }
  .proj-grid { grid-template-columns: 1fr; }
  .vol-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .anbi-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .form-body { padding: 30px; }
  .steps-indicator { padding: 20px 30px; }
  .form-header { padding: 30px; }
  .contact-form-wrap { padding: 32px; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .interest-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
}

/* ─── BACK TO TOP ─── */
#back-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 48px; height: 48px;
  background: var(--teal);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(42,191,191,0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  z-index: 999;
}
#back-top.visible { opacity: 1; transform: translateY(0); }
#back-top:hover { background: var(--teal-dark); transform: translateY(-2px); }

/* ─── COOKIE BANNER ─── */
#cookie {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: white;
  padding: 20px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.08);
  z-index: 9999;
  border-top: 1px solid rgba(42,191,191,0.2);
  font-size: 0.85rem;
  color: var(--text-soft);
  transform: translateY(100%);
  transition: transform 0.4s ease 0.5s;
}
#cookie.show { transform: translateY(0); }
#cookie-accept {
  background: var(--teal);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: background 0.3s;
}
#cookie-accept:hover { background: var(--teal-dark); }

/* ─── VERHALEN ─── */
.verhalen { background: var(--cream); }
.verhalen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.verhaal-card {
  background: white;
  border-radius: 24px;
  padding: 36px 30px;
  border: 1px solid rgba(42,191,191,0.12);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.verhaal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.verhaal-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--teal-light);
  position: absolute;
  top: 16px; left: 24px;
  user-select: none;
}
.verhaal-text {
  font-size: 0.93rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
  padding-top: 30px;
  position: relative;
  z-index: 1;
}
.verhaal-persoon {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(42,191,191,0.12);
  padding-top: 20px;
}
.verhaal-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  border: 2px solid rgba(42,191,191,0.2);
}
.verhaal-avatar.teal { background: var(--teal-pale); }
.verhaal-avatar.yellow { background: var(--yellow-light); }
.verhaal-avatar.blue { background: var(--blue-light); }
.verhaal-naam { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.verhaal-rol { font-size: 0.78rem; color: var(--text-soft); margin-top: 2px; }
.verhaal-tag {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--teal-pale);
  color: var(--teal-dark);
  font-size: 0.72rem;
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 500;
  border: 1px solid rgba(42,191,191,0.2);
}
.verhalen-cta { text-align: center; margin-top: 50px; }
.verhalen-cta p { color: var(--text-soft); font-size: 0.92rem; margin-bottom: 20px; }

/* ─── COOKIE BEHEER MODAL ─── */
#cookie { padding: 18px 5%; flex-wrap: wrap; gap: 12px; }
#cookie-details {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#cookie-details.open { display: flex; }
.cookie-modal {
  background: white;
  border-radius: 24px;
  padding: 48px;
  max-width: 560px;
  width: 100%;
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
  animation: modalIn 0.3s cubic-bezier(0.175,0.885,0.32,1.275);
}
@keyframes modalIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; margin-bottom: 8px; }
.cookie-modal > p { font-size: 0.88rem; color: var(--text-soft); line-height: 1.7; margin-bottom: 28px; }
.cookie-cat {
  border: 1px solid rgba(42,191,191,0.15);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.cookie-cat-text { flex: 1; }
.cookie-cat-text h4 { font-size: 0.92rem; font-weight: 600; margin-bottom: 4px; }
.cookie-cat-text p { font-size: 0.8rem; color: var(--text-soft); line-height: 1.6; }
.cookie-cat-badge { font-size: 0.72rem; padding: 3px 10px; border-radius: 50px; font-weight: 600; white-space: nowrap; margin-top: 4px; display: inline-block; }
.badge-required { background: var(--teal-pale); color: var(--teal-dark); }
.toggle-wrap { flex-shrink: 0; margin-top: 4px; }
.toggle { position: relative; width: 44px; height: 24px; display: inline-block; }
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider { position: absolute; inset: 0; background: #ddd; border-radius: 24px; cursor: pointer; transition: background 0.3s; }
.toggle-slider::before {
  content: ''; position: absolute;
  width: 18px; height: 18px;
  background: white; border-radius: 50%;
  top: 3px; left: 3px;
  transition: transform 0.3s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}
.toggle input:checked + .toggle-slider { background: var(--teal); }
.toggle input:checked + .toggle-slider::before { transform: translateX(20px); }
.toggle input:disabled + .toggle-slider { opacity: 0.6; cursor: not-allowed; }
.cookie-modal-btns { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.btn-cookie-all {
  flex: 1;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white; border: none;
  padding: 13px 20px; border-radius: 50px;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem; font-weight: 500; transition: all 0.3s;
}
.btn-cookie-all:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-cookie-save {
  flex: 1; background: none;
  border: 1.5px solid rgba(42,191,191,0.4);
  color: var(--text); padding: 13px 20px;
  border-radius: 50px; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem; transition: all 0.3s;
}
.btn-cookie-save:hover { background: var(--teal-pale); }
#cookie-manage-link {
  font-size: 0.8rem; color: var(--teal-dark);
  text-decoration: underline; cursor: pointer;
  background: none; border: none;
  font-family: 'DM Sans', sans-serif; white-space: nowrap;
}

/* ─── DONATIE ─── */
#donatie-modal {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.55); z-index: 9000;
  align-items: center; justify-content: center; padding: 20px;
}
#donatie-modal.open { display: flex; }
.donatie-modal-inner {
  background: white; border-radius: 32px;
  max-width: 640px; width: 100%;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.2);
  animation: modalIn 0.35s cubic-bezier(0.175,0.885,0.32,1.275);
  max-height: 90vh; overflow-y: auto;
}
.donatie-header {
  background: linear-gradient(135deg, var(--green) 0%, #1a6a35 100%);
  padding: 40px 48px; color: white; position: relative;
}
.donatie-header h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; margin-bottom: 8px; }
.donatie-header p { font-size: 0.9rem; opacity: 0.8; }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  background: rgba(255,255,255,0.2); border: none; color: white;
  width: 36px; height: 36px; border-radius: 50%; cursor: pointer;
  font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.modal-close:hover { background: rgba(255,255,255,0.35); }
.donatie-body { padding: 44px 48px; }
.donatie-body h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-soft); margin-bottom: 16px; }
.bedrag-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 16px; }
.bedrag-btn {
  padding: 16px 12px; border: 1.5px solid rgba(42,191,191,0.25);
  border-radius: 14px; background: var(--cream);
  cursor: pointer; text-align: center;
  transition: all 0.25s; font-family: 'DM Sans', sans-serif;
}
.bedrag-btn:hover { border-color: var(--green); background: var(--green-light); }
.bedrag-btn.active { border-color: var(--green); background: var(--green-light); color: var(--green); }
.bedrag-btn .bedrag-amount { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--text); display: block; margin-bottom: 2px; }
.bedrag-btn.active .bedrag-amount { color: var(--green); }
.bedrag-btn .bedrag-desc { font-size: 0.73rem; color: var(--text-soft); }
.bedrag-eigen { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; }
.bedrag-eigen label { font-size: 0.85rem; color: var(--text-soft); white-space: nowrap; }
.bedrag-eigen .form-control { flex: 1; }
.donatie-freq { display: flex; gap: 10px; margin-bottom: 28px; }
.freq-btn {
  flex: 1; padding: 12px;
  border: 1.5px solid rgba(42,191,191,0.2);
  border-radius: 12px; background: var(--cream);
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; font-weight: 500; transition: all 0.25s; text-align: center;
}
.freq-btn.active { border-color: var(--green); background: var(--green-light); color: var(--green); }
.donatie-impact {
  background: var(--cream); border-radius: 16px;
  padding: 20px 24px; margin-bottom: 28px;
  border: 1px solid rgba(42,191,191,0.12);
  font-size: 0.88rem; color: var(--text-soft); line-height: 1.6;
}
.donatie-impact strong { color: var(--text); }
.impact-icon { font-size: 1.3rem; margin-right: 8px; }
.donatie-persoonsgegevens { margin-bottom: 28px; }
.anbi-note { font-size: 0.78rem; color: var(--text-soft); text-align: center; margin-top: 14px; line-height: 1.6; }
.donatie-success { text-align: center; padding: 20px 0 10px; }
.donatie-success .success-icon { margin-bottom: 20px; background: linear-gradient(135deg, var(--green), #1a6a35); }
.donatie-success h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; margin-bottom: 10px; }
.donatie-success p { color: var(--text-soft); font-size: 0.9rem; line-height: 1.7; }

/* Donatie sectie */
.donatie-sectie {
  background: linear-gradient(135deg, #1a4a2a 0%, var(--green) 60%, #2a7a4a 100%);
  color: white; position: relative; overflow: hidden; text-align: center;
}
.donatie-sectie::before {
  content: ''; position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.04); top: -150px; left: -100px;
}
.donatie-sectie .section-inner { position: relative; z-index: 1; }
.donatie-sectie .section-label { color: rgba(255,255,255,0.6); justify-content: center; }
.donatie-sectie .section-label::before { background: rgba(255,255,255,0.4); }
.donatie-sectie h2 { color: white; }
.donatie-sectie h2 em { color: var(--yellow); }
.donatie-sectie .donatie-intro {
  color: rgba(255,255,255,0.75); max-width: 560px;
  margin: 0 auto 40px; font-size: 0.97rem; line-height: 1.7;
}
.donatie-bedragen-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.donatie-pill {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: white; padding: 14px 28px; border-radius: 50px;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 500; transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.donatie-pill:hover { background: rgba(255,255,255,0.25); border-color: white; transform: translateY(-2px); }
.donatie-pill strong { font-size: 1.1rem; }
.iban-box {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px; padding: 16px 24px; margin-top: 8px;
  font-size: 0.88rem; color: rgba(255,255,255,0.8);
}
.iban-box strong { color: white; font-size: 1rem; letter-spacing: 0.05em; }
.copy-btn {
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  color: white; padding: 6px 14px; border-radius: 8px;
  cursor: pointer; font-size: 0.78rem; transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.copy-btn:hover { background: rgba(255,255,255,0.25); }

@media (max-width: 1024px) {
  .verhalen-grid { grid-template-columns: 1fr; }
  .bedrag-grid { grid-template-columns: repeat(2, 1fr); }
  .donatie-body { padding: 30px; }
  .donatie-header { padding: 30px; }
  .cookie-modal { padding: 30px; }
}


/* ─── VIDEO SECTIE ─── */
.video-sectie {
  background: var(--text);
  position: relative;
  overflow: hidden;
}
.video-sectie::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(42,191,191,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 30% 40% at 10% 20%, rgba(245,200,66,0.05) 0%, transparent 50%);
}
.video-sectie .section-inner { position: relative; z-index: 1; text-align: center; }
.video-sectie .section-label { color: rgba(255,255,255,0.5); justify-content: center; }
.video-sectie .section-label::before { background: rgba(255,255,255,0.3); }
.video-sectie h2 { color: white; }
.video-sectie h2 em { color: var(--teal-light); }
.video-sectie > .section-inner > p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 50px;
}
.video-frame-wrap {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}
/* Decoratieve ringen */
.video-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(42,191,191,0.15);
  pointer-events: none;
}
.video-ring-1 { width: 110%; height: 110%; top: -5%; left: -5%; }
.video-ring-2 { width: 120%; height: 120%; top: -10%; left: -10%; border-color: rgba(245,200,66,0.08); }

.video-outer-frame {
  background: linear-gradient(135deg, rgba(42,191,191,0.3) 0%, rgba(59,110,165,0.3) 50%, rgba(245,200,66,0.2) 100%);
  border-radius: 28px;
  padding: 4px;
  box-shadow:
    0 0 0 1px rgba(42,191,191,0.2),
    0 40px 80px rgba(0,0,0,0.5),
    0 0 80px rgba(42,191,191,0.1);
  position: relative;
  z-index: 1;
}
.video-inner-frame {
  background: #000;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
}
/* Placeholder state */
/* ── Video placeholder met thumbnail ── */
.video-placeholder {
  position: absolute;
  inset: 0;
  cursor: pointer;
  overflow: hidden;
  background: #0a1a1a;
}
.video-placeholder.hidden { display: none; }

/* De YouTube thumbnail vult het volledige kader */
.video-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.video-placeholder:hover .video-thumb-img {
  transform: scale(1.03);
}

/* Donkere overlay voor leesbaarheid play-knop */
.video-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.45) 60%,
    rgba(0,0,0,0.65) 100%
  );
  transition: background 0.3s;
}
.video-placeholder:hover .video-thumb-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.55) 60%,
    rgba(0,0,0,0.70) 100%
  );
}

/* Play-knop en tekst gecentreerd bovenop */
.video-play-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.video-play-btn {
  width: 88px; height: 88px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 40px rgba(42,191,191,0.5), 0 0 0 0 rgba(42,191,191,0.3);
  animation: videoPulse 2.5s ease-in-out infinite;
}
@keyframes videoPulse {
  0%, 100% { box-shadow: 0 8px 40px rgba(42,191,191,0.5), 0 0 0 0 rgba(42,191,191,0.3); }
  50%       { box-shadow: 0 8px 40px rgba(42,191,191,0.5), 0 0 0 22px rgba(42,191,191,0); }
}
.video-placeholder:hover .video-play-btn {
  transform: scale(1.12);
  box-shadow: 0 12px 50px rgba(42,191,191,0.7);
}
.video-placeholder-title {
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  text-align: center;
  padding: 0 20px;
}
.video-placeholder-text {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* iframe verborgen tot play */
iframe.video-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: none;
}
iframe.video-iframe.playing { display: block; }

/* ─── FOOTER CREDIT ─── */
.footer-credit {
  text-align: center;
  padding: 18px 5%;
  background: rgba(0,0,0,0.3);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-credit a {
  color: var(--teal-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.footer-credit a:hover { color: var(--teal); }


/* ─── SAMENWERKENDE PARTNERS ─── */
.partners-sectie {
  background:
    radial-gradient(circle at 12% 20%, rgba(245,200,66,0.18), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(42,191,191,0.16), transparent 30%),
    linear-gradient(135deg, var(--cream) 0%, #ffffff 58%, var(--teal-pale) 100%);
  overflow: hidden;
}
.partners-intro {
  max-width: 760px;
  text-align: center;
  margin: 0 auto 46px;
}
.partners-intro .section-label {
  justify-content: center;
}
.partners-intro p {
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.8;
}
.partners-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0 22px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.partners-track {
  display: flex;
  gap: 26px;
  width: max-content;
  animation: partnersSlide 34s linear infinite;
}
.partners-carousel:hover .partners-track {
  animation-play-state: paused;
}
.partner-card {
  width: min(360px, 82vw);
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(42,191,191,0.14);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 60px rgba(26,42,42,0.09);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.partner-logo-wrap {
  height: 180px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border-bottom: 1px solid rgba(42,191,191,0.10);
}
.partner-logo-wrap img {
  max-width: 100%;
  max-height: 136px;
  object-fit: contain;
  border-radius: 14px;
}
.partner-content {
  padding: 26px 28px 30px;
  flex: 1;
}
.partner-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.partner-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  line-height: 1.2;
  margin-bottom: 12px;
}
.partner-quote {
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 16px;
}
.partner-slogan {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--yellow-light);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@keyframes partnersSlide {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 13px)); }
}
@media (max-width: 700px) {
  .partners-track { animation-duration: 42s; gap: 18px; }
  .partner-logo-wrap { height: 150px; }
  .partner-content { padding: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .partners-track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
  .partners-carousel { mask-image: none; -webkit-mask-image: none; }
}
