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

body {
  background: #000;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #fff;
  min-height: 100vh;
}

/* CONCEPT BANNER */
.concept-banner {
  background: #FFEA00;
  color: #000;
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 2px solid #000;
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}
@keyframes ticker {
  0%   { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}
.concept-banner-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 55s linear infinite;
  will-change: transform;
}
.concept-item {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #000;
  padding: 0 3rem;
}
.concept-sep {
  font-size: 14px;
  opacity: 0.35;
  padding: 0 0.5rem;
}

/* HEADER */
.header {
  position: sticky;
  top: 36px;
  z-index: 100;
  background: #000;
  border-bottom: 1px solid #1a1a1a;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.header-logo {
  font-size: 20px;
  font-weight: 700;
  color: #FFEA00;
  letter-spacing: -1px;
  flex-shrink: 0;
  text-decoration: none;
}
.header-logo span {
  font-size: 11px;
  font-weight: 600;
  color: #000;
  background: #FFEA00;
  padding: 1px 8px;
  border-radius: 20px;
  margin-left: 6px;
  vertical-align: middle;
}

/* DESKTOP NAV met dropdowns */
.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav .nav-link,
.nav .nav-trigger {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.nav .nav-link:hover,
.nav .nav-link.active,
.nav .nav-trigger:hover,
.nav-group:hover .nav-trigger,
.nav-group.has-active .nav-trigger { color: #FFEA00; font-weight: 600; }
.nav-arrow { font-size: 10px; opacity: 0.7; }

.nav-group {
  position: relative;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: #0a0a0a;
  border: 1px solid #1f1f1f;
  border-radius: 12px;
  padding: 6px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s, transform 0.15s;
  z-index: 110;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav-dropdown a {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.12s, color 0.12s;
  white-space: nowrap;
}
.nav-dropdown a:hover,
.nav-dropdown a.active {
  background: rgba(255,234,0,0.1);
  color: #FFEA00;
}

/* HAMBURGER (mobiel) */
.hamburger {
  display: none;
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #FFEA00;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.mobile-menu-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-open .hamburger span:nth-child(2) { opacity: 0; }
.mobile-menu-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBIEL MENU OVERLAY */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 90;
  padding: 5rem 1.5rem 2rem;
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  overflow-y: auto;
}
.mobile-menu-open .mobile-menu { display: flex; }
.mobile-menu > a {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: 6px 0;
}
.mobile-menu > a.active { color: #FFEA00; }
.mobile-menu-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu-label {
  font-size: 11px;
  font-weight: 700;
  color: #FFEA00;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,234,0,0.2);
  margin-bottom: 0.5rem;
}
.mobile-menu-group a {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 8px 0;
}
.mobile-menu-group a.active { color: #FFEA00; font-weight: 600; }

/* HERO */
.hero {
  padding: 3rem 1.5rem 2.5rem;
  text-align: center;
  border-bottom: 1px solid #1a1a1a;
}
.vida-wordmark {
  font-size: clamp(48px, 12vw, 72px);
  font-weight: 700;
  color: #FFEA00;
  letter-spacing: -3px;
  line-height: 1;
}
.vida-kids-badge {
  display: inline-block;
  background: #FFEA00;
  color: #000;
  font-size: 13px;
  font-weight: 600;
  padding: 3px 14px;
  border-radius: 20px;
  margin-top: 8px;
}
.hero-tagline {
  font-size: 15px;
  color: #888;
  margin-top: 1.25rem;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* SECTIONS */
.section {
  padding: 2.5rem 1.25rem 0;
  max-width: 680px;
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: #555;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-size: 26px;
  font-weight: 700;
  color: #FFEA00;
  margin-bottom: 0.5rem;
}
.section-subtitle {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2rem;
}
.intro-text {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  border-left: 2px solid rgba(255,234,0,0.3);
  padding-left: 1rem;
  margin-bottom: 2rem;
}

/* VISIE */
.visie-section {
  padding: 2.5rem 1.5rem;
  border-bottom: 1px solid #1a1a1a;
}
.visie-label {
  font-size: 11px;
  font-weight: 600;
  color: #FFEA00;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-align: center;
}
.visie-titel {
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.25;
  max-width: 640px;
  margin: 0 auto 1.25rem;
  letter-spacing: -0.5px;
}
.visie-titel span { color: #FFEA00; }
.visie-tekst {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

/* FOTO STRIP (single set, scrollable) */
.foto-strip-wrap {
  overflow-x: auto;
  width: 100%;
  background: #000;
  padding: 1.5rem 1.25rem 0;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.foto-strip-wrap::-webkit-scrollbar { display: none; }
.foto-strip {
  display: flex;
  gap: 10px;
  width: max-content;
}
.foto-item {
  width: 150px;
  height: 110px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid #222;
}
.foto-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* KAARTEN (home) */
.kaarten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  margin-top: 1rem;
}
.kaart {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  transition: border-color 0.15s, background 0.15s;
  text-decoration: none;
}
.kaart:hover {
  border-color: rgba(255,234,0,0.4);
  background: rgba(255,234,0,0.04);
}
.kaart-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,234,0,0.1);
  border: 0.5px solid rgba(255,234,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.kaart-titel { font-size: 14px; font-weight: 600; color: #FFEA00; margin-bottom: 2px; }
.kaart-beschrijving { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.4; }
.kaart-arrow { margin-left: auto; color: rgba(255,255,255,0.2); font-size: 16px; flex-shrink: 0; }

/* DOEL ITEMS */
.doel-lijst { display: flex; flex-direction: column; gap: 12px; }
.doel-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 14px;
}
.doel-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255,234,0,0.1);
  border: 0.5px solid rgba(255,234,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.doel-titel { font-size: 13px; font-weight: 600; color: #FFEA00; margin-bottom: 4px; }
.doel-tekst { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* BIJBELTEKST (klikbare afkorting + pop-up) */
.vers-chips {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.vers-chips .vers-chip { margin-top: 0; }
.vers-chip {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #FFEA00;
  background: rgba(255,234,0,0.1);
  border: 0.5px solid rgba(255,234,0,0.25);
  border-radius: 20px;
  padding: 4px 11px;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s, border-color 0.15s;
}
.vers-chip:hover, .vers-chip:active {
  background: rgba(255,234,0,0.18);
  border-color: rgba(255,234,0,0.5);
}
.vers-chip::before { content: "📖"; font-size: 11px; }

/* POP-UP / MODAL */
.vers-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.vers-modal-overlay.open { display: flex; }
.vers-modal {
  background: #111;
  border: 0.5px solid rgba(255,234,0,0.3);
  border-radius: 18px;
  max-width: 440px;
  width: 100%;
  padding: 1.75rem 1.5rem 1.5rem;
  position: relative;
  animation: versPop 0.2s ease;
}
@keyframes versPop {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}
.vers-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.vers-modal-close:hover { background: rgba(255,255,255,0.15); color: #fff; }
.vers-modal-ref {
  font-size: 12px;
  font-weight: 700;
  color: #FFEA00;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.vers-modal-tekst {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  line-height: 1.75;
  font-style: italic;
}

/* TIJDLIJN (programma) */
.tijdlijn { position: relative; }
.tijdlijn::before {
  content: '';
  position: absolute;
  left: 5.5rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255,234,0,0.12);
}
.tijdblok {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.tijdblok-tijd {
  width: 4.5rem;
  flex-shrink: 0;
  padding-top: 1rem;
  text-align: right;
  font-size: 13px;
  font-weight: 600;
  color: #FFEA00;
}
.tijdblok-dot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  padding-top: 1rem;
}
.tijdblok-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255,234,0,0.3);
  background: #000;
  z-index: 1;
  flex-shrink: 0;
}
.tijdblok-dot.nieuw { background: #FFEA00; border-color: #FFEA00; }
.tijdblok-kaart {
  flex: 1;
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.tijdblok-kaart.nieuw {
  background: rgba(255,234,0,0.04);
  border-color: rgba(255,234,0,0.3);
}
.tijdblok-kaart-icon { font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.tijdblok-titel { font-size: 13px; font-weight: 600; color: #FFEA00; margin-bottom: 3px; display: flex; align-items: center; gap: 6px; }
.nieuw-badge {
  font-size: 9px;
  background: #FFEA00;
  color: #000;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tijdblok-beschrijving { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.5; }

/* LESINHOUD SERIES */
.series-lijst { display: flex; flex-direction: column; gap: 14px; }
.serie-kaart {
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  overflow: hidden;
}
.serie-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1rem;
  border-bottom: 0.5px solid rgba(255,255,255,0.05);
}
.serie-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255,234,0,0.1);
  border: 0.5px solid rgba(255,234,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.serie-titel { font-size: 13px; font-weight: 600; color: #FFEA00; }
.serie-thema {
  font-size: 10px;
  color: #FFEA00;
  background: rgba(255,234,0,0.1);
  border: 0.5px solid rgba(255,234,0,0.2);
  padding: 1px 8px;
  border-radius: 20px;
  margin-top: 2px;
  display: inline-block;
}
.serie-leeftijd { font-size: 11px; color: rgba(255,255,255,0.25); margin-top: 1px; }
.serie-body { padding: 0.9rem 1rem; }
.serie-kernteksten {
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
}
.serie-kernteksten-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,234,0,0.65);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.serie-kernteksten .vers-chips { margin-top: 0; }
.serie-verhaal {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: color 0.15s;
}
.serie-verhaal:hover, .serie-verhaal:active { color: #FFEA00; }
.serie-verhaal::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,234,0,0.4);
  flex-shrink: 0;
}
.serie-verhaal::after {
  content: '📖';
  font-size: 10px;
  margin-left: auto;
  opacity: 0;
  transition: opacity 0.15s;
}
.serie-verhaal:hover::after, .serie-verhaal:active::after { opacity: 0.7; }

/* METHODE */
.methode-lijst { display: flex; flex-direction: column; gap: 12px; }
.methode-kaart {
  padding: 1rem;
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 14px;
}
.methode-header { display: flex; align-items: flex-start; gap: 12px; }
.methode-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255,234,0,0.1);
  border: 0.5px solid rgba(255,234,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.methode-titel { font-size: 13px; font-weight: 600; color: #FFEA00; margin-bottom: 3px; }
.methode-tekst { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* JAARPLANNING */
.kwartaal-lijst { display: flex; flex-direction: column; gap: 20px; }
.kwartaal-kaart {
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
}
.kwartaal-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 1rem 1.25rem;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
}
.kwartaal-nummer {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #FFEA00;
  color: #000;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.kwartaal-kaart.geweest .kwartaal-nummer {
  background: rgba(255,234,0,0.15);
  color: rgba(255,234,0,0.6);
}
.kwartaal-naam { font-size: 14px; font-weight: 600; color: #fff; }
.kwartaal-periode { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 1px; }
.kwartaal-body { padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: 10px; }
.maand-rij {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.maand-rij.geweest .maand-label { color: rgba(255,234,0,0.4); }
.maand-rij.geweest .maand-serie { color: rgba(255,255,255,0.4); }
.maand-label {
  width: 60px;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,234,0,0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-top: 2px;
}
.maand-content { flex: 1; }
.maand-serie {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}
.maand-thema {
  display: inline-block;
  font-size: 10px;
  color: #FFEA00;
  background: rgba(255,234,0,0.08);
  border: 0.5px solid rgba(255,234,0,0.2);
  padding: 1px 8px;
  border-radius: 20px;
}
.check-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  color: #FFEA00;
  background: rgba(255,234,0,0.1);
  border: 0.5px solid rgba(255,234,0,0.3);
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 6px;
}
.huidig-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  color: #000;
  background: #FFEA00;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 6px;
}
.bijzonder-rij {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(255,234,0,0.05);
  border: 0.5px solid rgba(255,234,0,0.15);
  border-radius: 8px;
  margin-top: 4px;
}
.bijzonder-icon { font-size: 14px; flex-shrink: 0; }
.bijzonder-tekst { font-size: 11px; color: rgba(255,255,255,0.5); }
.bijzonder-tekst strong { color: rgba(255,234,0,0.8); font-weight: 600; }

/* CONTACT */
.contact-lijst {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, transform 0.15s;
}
a.contact-item:hover {
  border-color: rgba(255,234,0,0.4);
  transform: translateY(-1px);
}
.contact-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,234,0,0.08);
  border-radius: 10px;
}
.contact-label {
  font-size: 11px;
  font-weight: 600;
  color: #FFEA00;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}
.contact-waarde {
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
  word-break: break-word;
}
.contact-extra {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}
.contact-cta {
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255,234,0,0.08), rgba(255,234,0,0.02));
  border: 1px solid rgba(255,234,0,0.2);
  border-radius: 16px;
  text-align: center;
}
.contact-cta-titel {
  font-size: 16px;
  font-weight: 700;
  color: #FFEA00;
  margin-bottom: 0.4rem;
}
.contact-cta-tekst {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 2rem 1.5rem 1rem;
  color: #333;
  font-size: 12px;
  border-top: 1px solid #111;
  margin-top: 3rem;
}
.footer span { color: #FFEA00; }

/* WERKWIJZE STAPPEN */
.stap-lijst { display: flex; flex-direction: column; gap: 14px; }
.stap-kaart {
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
}
.stap-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.75rem;
}
.stap-nummer {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFEA00;
  color: #000;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stap-titel { font-size: 15px; font-weight: 600; color: #FFEA00; }
.stap-tijd {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,234,0,0.7);
  background: rgba(255,234,0,0.08);
  border: 0.5px solid rgba(255,234,0,0.2);
  padding: 2px 9px;
  border-radius: 20px;
}
.stap-tekst {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.stap-tekst ul { margin-top: 0.5rem; padding-left: 1.1rem; }
.stap-tekst li { margin-bottom: 0.3rem; }
.stap-tekst strong { color: rgba(255,234,0,0.85); font-weight: 600; }

/* ROOSTER */
.rooster-legenda {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 1.25rem;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}
.rooster-legenda strong { color: #FFEA00; font-weight: 700; }
.rooster-lijst { display: flex; flex-direction: column; gap: 8px; }
.rooster-rij {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}
.rooster-rij.geweest { opacity: 0.55; }
.rooster-rij.vandaag {
  background: rgba(255,234,0,0.07);
  border-color: rgba(255,234,0,0.4);
}
.rooster-datum {
  width: 60px;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  color: #FFEA00;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.rooster-locatie {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,234,0,0.7);
  background: rgba(255,234,0,0.1);
  border: 0.5px solid rgba(255,234,0,0.2);
  padding: 1px 7px;
  border-radius: 20px;
  flex-shrink: 0;
}
.rooster-team {
  flex: 1;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}
.rooster-status {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  flex-shrink: 0;
}
.rooster-status.geweest { color: rgba(255,255,255,0.4); border: 0.5px solid rgba(255,255,255,0.15); }
.rooster-status.vandaag { color: #000; background: #FFEA00; }
.rooster-backup {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(255,234,0,0.05);
  border: 0.5px solid rgba(255,234,0,0.15);
  border-radius: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}
.rooster-backup strong { color: rgba(255,234,0,0.85); font-weight: 700; }

/* GROEPSAPP (contact) */
.groepsapp-kaart {
  margin-top: 1.5rem;
  background: linear-gradient(135deg, rgba(37,211,102,0.08), rgba(37,211,102,0.02));
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: 16px;
  padding: 1.5rem;
}
.groepsapp-titel {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.groepsapp-naam {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}
.groepsapp-naam strong { color: #fff; font-weight: 600; }
.groepsapp-personen { display: flex; flex-direction: column; gap: 10px; margin-bottom: 1rem; }
.groepsapp-persoon {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
}
.groepsapp-persoon-naam {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.groepsapp-persoon-rol {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}
.groepsapp-persoon-nr {
  font-size: 13px;
  color: #FFEA00;
  text-decoration: none;
  margin-top: 4px;
}
.groepsapp-toelichting {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* AANMELDEN — concept formulieren */
.aanmeld-tabs {
  display: flex;
  gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 1.25rem;
}
.aanmeld-tab {
  flex: 1;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  padding: 0.6rem 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.aanmeld-tab.actief {
  background: #FFEA00;
  color: #000;
}
.aanmeld-form {
  display: none;
  flex-direction: column;
  gap: 14px;
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 1.25rem;
}
.aanmeld-form.actief { display: flex; }
.form-intro {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 0.25rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form-field label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,234,0,0.85);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.form-field label .req { color: rgba(255,80,80,0.85); margin-left: 2px; }
.form-input,
.form-textarea,
.form-select {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 9px;
  padding: 0.7rem 0.85rem;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.15s, background 0.15s;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: rgba(255,234,0,0.5);
  background: rgba(0,0,0,0.55);
}
.form-textarea { resize: vertical; min-height: 70px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-radio-group { display: flex; flex-wrap: wrap; gap: 8px; }
.form-radio {
  flex: 1;
  min-width: 90px;
  position: relative;
}
.form-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.form-radio label {
  display: block;
  text-align: center;
  padding: 0.55rem 0.6rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: all 0.15s;
  text-transform: none;
  font-weight: 600;
  letter-spacing: 0;
}
.form-radio input:checked + label {
  background: rgba(255,234,0,0.12);
  border-color: rgba(255,234,0,0.5);
  color: #FFEA00;
}
.form-submit {
  margin-top: 0.4rem;
  background: #FFEA00;
  color: #000;
  border: none;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255,234,0,0.2);
}
.form-hint {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin-top: 0.2rem;
}

@media (max-width: 720px) {
  .form-row { grid-template-columns: 1fr; }
}

/* VIDA APP DOWNLOAD CTA */
.app-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 1.2rem 1.4rem;
  background: rgba(255,234,0,0.08);
  border: 1px solid rgba(255,234,0,0.3);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s, transform 0.15s;
}
.app-cta:hover {
  background: rgba(255,234,0,0.13);
  transform: translateY(-1px);
}
.app-cta-icon { font-size: 28px; flex-shrink: 0; }
.app-cta-titel {
  font-size: 15px;
  font-weight: 700;
  color: #FFEA00;
  margin-bottom: 2px;
}
.app-cta-tekst {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.app-cta-pijl {
  margin-left: auto;
  font-size: 22px;
  color: #FFEA00;
  flex-shrink: 0;
}
.app-store-links {
  margin-top: 0.5rem;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-align: center;
}
.app-store-links a {
  color: rgba(255,234,0,0.75);
  text-decoration: none;
  padding: 0 6px;
}
.app-store-links a:hover { color: #FFEA00; }

/* OVER VIDA KAMPEN PAGINA */
.vk-card {
  background: linear-gradient(135deg, rgba(255,234,0,0.08), rgba(255,234,0,0.02));
  border: 1px solid rgba(255,234,0,0.2);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}
.vk-card-titel {
  font-size: 17px;
  font-weight: 700;
  color: #FFEA00;
  margin-bottom: 0.5rem;
}
.vk-card-tekst {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}
.vk-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px;
  margin-bottom: 1.5rem;
}
.vk-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 12px;
}
.vk-info-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255,234,0,0.1);
  border: 0.5px solid rgba(255,234,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.vk-info-label {
  font-size: 11px;
  font-weight: 700;
  color: #FFEA00;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.vk-info-tekst {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}
.vk-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 1.4rem 1.5rem;
  background: #FFEA00;
  color: #000;
  border-radius: 16px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  margin-top: 1rem;
}
.vk-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255,234,0,0.2);
}
.vk-cta-pijl {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}
.vk-cta-titel {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 2px;
}
.vk-cta-tekst {
  font-size: 12px;
  color: rgba(0,0,0,0.65);
  line-height: 1.5;
}

/* HOME: components-grid (Crèche, Events, Café) */
.componenten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 1rem;
}
.component-kaart {
  padding: 1.1rem 1.2rem;
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 14px;
}
.component-icon {
  font-size: 22px;
  margin-bottom: 0.5rem;
  display: inline-block;
}
.component-titel {
  font-size: 14px;
  font-weight: 700;
  color: #FFEA00;
  margin-bottom: 0.35rem;
}
.component-leeftijd {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,234,0,0.7);
  background: rgba(255,234,0,0.08);
  border: 0.5px solid rgba(255,234,0,0.2);
  padding: 1px 8px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.component-tekst {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
}

/* NOW BAR (datum + tijdstip bovenaan) */
.now-bar {
  background: rgba(255,234,0,0.06);
  border-bottom: 1px solid rgba(255,234,0,0.18);
  padding: 0.75rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.now-bar-datum {
  font-weight: 600;
  color: #fff;
}
.now-bar-tijd {
  color: #FFEA00;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.now-bar-tijd::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FFEA00;
  animation: nowPulse 2s infinite;
}
@keyframes nowPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.45; transform: scale(0.85); }
}

/* PROGRAMMA: actief blok */
.tijdblok.actief .tijdblok-kaart {
  background: rgba(255,234,0,0.12);
  border-color: rgba(255,234,0,0.5);
  box-shadow: 0 0 0 1px rgba(255,234,0,0.2);
}
.tijdblok.actief .tijdblok-dot {
  background: #FFEA00;
  border-color: #FFEA00;
  box-shadow: 0 0 0 5px rgba(255,234,0,0.18);
}
.tijdblok.actief .tijdblok-tijd { color: #FFEA00; }
.nu-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.7px;
  background: #FFEA00;
  color: #000;
  padding: 2px 7px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-left: 6px;
}
.nu-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #000;
  animation: nowPulse 1.5s infinite;
}

/* ROOSTER: volgende zondag */
.rooster-rij.volgende {
  background: rgba(255,234,0,0.05);
  border-color: rgba(255,234,0,0.3);
}
.rooster-status.volgende {
  color: rgba(255,234,0,0.85);
  background: rgba(255,234,0,0.1);
  border: 0.5px solid rgba(255,234,0,0.3);
}

/* ===== COMPACTE MOBIELE VERSIE ===== */
@media (max-width: 720px) {
  .nav { display: none; }
  .hamburger { display: flex; }

  .header { padding: 0.6rem 1rem; gap: 0.75rem; }
  .header-logo { font-size: 17px; }

  .hero { padding: 2rem 1.25rem 1.5rem; }
  .hero-tagline { font-size: 14px; margin-top: 0.9rem; }

  .visie-section { padding: 1.75rem 1.25rem; }
  .visie-tekst { font-size: 14px; }

  .section { padding: 1.75rem 1rem 0; }
  .section-title { font-size: 22px; }
  .section-subtitle { margin-bottom: 1.5rem; }
  .intro-text { margin-bottom: 1.5rem; }

  .foto-item { width: 130px; height: 95px; }

  .kaart { padding: 0.85rem 1rem; gap: 12px; }
  .kaart-icon { width: 36px; height: 36px; font-size: 16px; }

  .doel-item { padding: 0.85rem 1rem; gap: 12px; }

  .tijdblok { gap: 1rem; margin-bottom: 0.75rem; }
  .tijdlijn::before { left: 4.25rem; }
  .tijdblok-tijd { width: 3.5rem; }

  .kwartaal-header { padding: 0.85rem 1rem; }
  .kwartaal-body { padding: 0.85rem 1rem; }
  .maand-label { width: 50px; }

  .rooster-rij { padding: 0.75rem 0.85rem; gap: 8px; flex-wrap: wrap; }
  .rooster-datum { width: 52px; font-size: 11px; }
  .rooster-team { font-size: 12px; flex-basis: 100%; order: 5; }

  .stap-kaart { padding: 0.95rem 1rem; }
  .stap-header { gap: 10px; }
  .stap-titel { font-size: 14px; }

  .now-bar { padding: 0.6rem 1rem; font-size: 12px; gap: 0.4rem 1rem; }

  .footer { margin-top: 2rem; padding: 1.5rem 1.25rem 1rem; }
}
