/* ====================================================
   WAY Landingspagina — Stylesheet
   Placeholderkleuren zijn gemarkeerd met het comment:
   "VERVANG DOOR EIGEN FOTO"
   ==================================================== */

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

:root {
  --dark: #0d0d0d;
  --white: #ffffff;
  --off-white: #f5f5f5;
  --text-muted: rgba(255, 255, 255, 0.75);
  --brand: #1e5c7e;        /* Kerkkleur Hervormd Woudenberg */
  --brand-dark: #154560;
  --brand-light: #e8f2f8;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
  --nav-height: 64px;
}

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

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

/* === DARK SECTION HELPER === */
.block--dark {
  background-color: var(--dark);
  color: var(--white);
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 13px 28px;
  background: var(--brand);
  color: var(--white);
  border: 2px solid var(--brand);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  align-self: flex-start;
}

.btn:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--dark);
}

.block--dark .btn {
  background: var(--white);
  color: var(--brand-dark);
  border-color: var(--white);
}

.block--dark .btn:hover {
  background: transparent;
  color: var(--white);
}

/* ====================================================
   NAVIGATIE
   ==================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
  line-height: 1.15;
}

.nav__logo-sub {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  opacity: 0.55;
  text-transform: uppercase;
}

.nav__dove {
  flex-shrink: 0;
  margin-right: 8px;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.nav__links a:hover {
  opacity: 1;
}

/* Logo afbeelding in de navigatiebalk */
.nav__logo-img {
  height: 36px;
  width: auto;
  margin-right: 10px;
  flex-shrink: 0;
}

/* CTA knop in de navigatiebalk */
.nav__cta {
  padding: 9px 22px;
  font-size: 0.8rem;
  flex-shrink: 0;
  align-self: center;
}

.nav__cta-mobile {
  display: none;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger open state */
.nav__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.nav__links.is-open {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--white);
  padding: 20px 32px 28px;
  gap: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.nav__links.is-open a {
  font-size: 1rem;
}

/* ====================================================
   HERO
   ==================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 0 8% 72px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

/* VERVANG DOOR EIGEN FOTO: verwijder deze rule en voeg
   style="background-image: url('images/hero.jpg')" toe aan het element */
.hero__bg--placeholder {
  background-image: url('images/hero.jpg');
  background-position: center top;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
}

.hero__card {
  position: relative;
  z-index: 1;
  background: var(--white);
  max-width: 520px;
  padding: 48px 44px;
}

.hero__card h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.hero__card p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #444;
}

/* ====================================================
   STATISTIEKEN STRIP
   ==================================================== */
.stats {
  background: var(--brand);
  color: var(--white);
  padding: 48px 32px;
}

.stats__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.stats__number {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stats__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
  line-height: 1.4;
}

/* ====================================================
   MISSIE
   ==================================================== */
.mission {
  background: var(--dark);
  color: var(--white);
  padding: 96px 32px;
  text-align: center;
}

.mission__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.mission__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mission__text span {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.2vw, 2.6rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

/* ====================================================
   CTA BANNER
   ==================================================== */
.banner {
  position: relative;
  height: 220px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

/* VERVANG DOOR EIGEN FOTO */
.banner__bg--placeholder {
  background: linear-gradient(120deg, #2d1b69 0%, #11998e 100%);
}

.banner__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
}

.banner__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 8%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.banner__label {
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.8;
}

.banner__link {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  transition: opacity 0.2s;
}

.banner__link:hover {
  opacity: 0.75;
}

/* ====================================================
   CONTENT BLOKKEN (afwisselend tekst/foto)
   ==================================================== */
.block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

/* Omdraaien: foto links, tekst rechts */
.block--reversed {
  direction: rtl;
}

.block--reversed > * {
  direction: ltr;
}

.block__card {
  padding: 72px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  background: var(--white);
}

.block--dark .block__card {
  background: var(--dark);
  color: var(--white);
}

.block__card h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.block__card p {
  font-size: 0.95rem;
  line-height: 1.78;
  opacity: 0.82;
  max-width: 420px;
}

/* Foto-kant van een blok */
.block__photo {
  background-size: cover;
  background-position: center;
  min-height: 400px;
}

/* VERVANG DOOR EIGEN FOTO's — gradients als placeholder */
.block__photo--p1 { background-image: url('images/block-p1.jpg'); }
.block__photo--p2 { background-image: url('images/block-p2.jpg'); }
.block__photo--p3 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.block__photo--p4 { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }

/* Care-blok: foto met tekstoverlay */
.block__photo--care {
  background: linear-gradient(160deg, #1a1a2e 0%, #2d3561 100%);
  /* VERVANG DOOR EIGEN FOTO */
  display: flex;
  align-items: flex-end;
  padding: 36px 40px;
}

.block__photo-overlay p {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.25;
}

/* ====================================================
   UPCOMING EVENTS
   ==================================================== */
.events {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  background: var(--brand);
  color: var(--white);
}

.events__left {
  padding: 72px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.events__left h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
}

.events__intro {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.6;
}

.events__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.events__list li {
  display: flex;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.events__list li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.events__date {
  opacity: 0.5;
  min-width: 88px;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.events__name {
  font-weight: 500;
}

.events__carousel {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

.carousel__track {
  display: flex;
  height: 100%;
  min-height: 480px;
  transition: transform 0.5s ease;
}

.carousel__slide {
  flex: 0 0 100%;
  background-size: cover;
  background-position: center;
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.35);
  color: var(--white);
  border: none;
  width: 44px;
  height: 44px;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  pointer-events: auto;
}

.carousel__btn:hover {
  background: rgba(0,0,0,0.6);
}

.carousel__btn--prev { left: 12px; }
.carousel__btn--next { right: 12px; }

.carousel__dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.carousel__dot.is-active {
  background: var(--white);
}

/* ====================================================
   LEIDERS / PASTORS
   ==================================================== */
.leaders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.leaders__text {
  padding: 72px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.leaders__text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.leaders__text p {
  font-size: 0.95rem;
  line-height: 1.75;
  opacity: 0.82;
}

.leaders__photo {
  background-size: cover;
  background-position: top center;
  min-height: 400px;
}

/* VERVANG DOOR EIGEN FOTO */
.leaders__photo--placeholder {
  background-image: url('images/leaders.jpg');
  background-position: center top;
}

/* ====================================================
   MEEWERKEN / VOLUNTEER
   ==================================================== */
.volunteer {
  padding: 80px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.volunteer__card {
  background: var(--white);
  color: var(--dark);
  max-width: 660px;
  width: 100%;
  padding: 60px 52px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.volunteer__card h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
}

.volunteer__card p {
  font-size: 0.95rem;
  line-height: 1.75;
  opacity: 0.8;
}

/* ====================================================
   INSTAGRAM
   ==================================================== */
.instagram {
  padding: 64px 32px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.instagram__handle {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  opacity: 0.85;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}

.instagram__handle:hover {
  opacity: 1;
}

.instagram__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  width: 100%;
  max-width: 720px;
}

.instagram__item {
  aspect-ratio: 1 / 1;
}

/* VERVANG DOOR EIGEN FOTO's */
.instagram__item--1 { background: linear-gradient(135deg, #667eea, #764ba2); }
.instagram__item--2 { background: linear-gradient(135deg, #f093fb, #f5576c); }
.instagram__item--3 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.instagram__item--4 { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.instagram__item--5 { background: linear-gradient(135deg, #fa709a, #fee140); }
.instagram__item--6 { background: linear-gradient(135deg, #a18cd1, #fbc2eb); }

/* ====================================================
   3 PIJLERS
   ==================================================== */
.pillars {
  background: var(--dark);
  color: var(--white);
  padding: 96px 32px;
}

.pillars__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.pillars__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 48px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pillar {
  padding: 48px 40px 48px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pillar:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 40px;
}

.pillar--mid {
  padding-left: 40px;
}

.pillar__rel {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  opacity: 0.9;
}

.pillar__name {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.pillar__kern {
  font-size: 1rem;
  line-height: 1.65;
  opacity: 0.85;
  flex: 1;
}

.pillar__base {
  font-size: 0.75rem;
  opacity: 0.4;
  letter-spacing: 0.04em;
  margin-top: 8px;
}

/* ====================================================
   HERO EXTRA KNOPPEN
   ==================================================== */
.hero__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  color: var(--white);
}

/* ====================================================
   VIDEO PLACEHOLDER
   ==================================================== */
.block__photo--video {
  background: linear-gradient(160deg, #1a1a2e 0%, #2d3561 100%);
  /* VERVANG DOOR EIGEN VIDEO: gebruik een <iframe> of <video> tag */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  cursor: pointer;
}

.video-play {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--white);
  opacity: 0.85;
}

.video-play span {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ====================================================
   LEEFTIJDSGROEPEN
   ==================================================== */
.ages {
  padding: 80px 32px;
}

.ages__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.ages__inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.ages__intro {
  font-size: 0.95rem;
  opacity: 0.7;
  margin-bottom: 48px;
  white-space: nowrap;
}

.ages__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.age-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.age-card--wide {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
}
.age-card--wide h3 { margin: 0; }
.age-card--wide ul { margin: 0; }

.age-card__range {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.5;
}

.age-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
}

.age-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.age-card ul li {
  font-size: 0.875rem;
  opacity: 0.75;
  padding-left: 12px;
  position: relative;
}

.age-card ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  opacity: 0.5;
}

/* ====================================================
   ROLLEN / VACATURES
   ==================================================== */
.roles {
  padding: 80px 32px;
}

.roles__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.roles__inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.roles__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.role-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.2s;
}

.role-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.role-card__icon {
  font-size: 1.8rem;
  line-height: 1;
}

.role-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.role-card__sub {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  opacity: 0.5;
  text-transform: uppercase;
}

.role-card p:last-child {
  font-size: 0.875rem;
  opacity: 0.75;
  line-height: 1.6;
}

/* ====================================================
   BENEFIT LIST
   ==================================================== */
.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
}

.benefit-list li {
  font-size: 0.95rem;
  opacity: 0.85;
  padding-left: 20px;
  position: relative;
}

.benefit-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  opacity: 0.5;
}

/* ====================================================
   AANMELDFORMULIER
   ==================================================== */
.form-section {
  background: var(--off-white);
  padding: 80px 32px;
}

.form-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.form-section--club {
  padding: 64px 32px;
}

.form-section__inner--single {
  max-width: 680px;
  grid-template-columns: 1fr;
  gap: 32px;
}

.form-section__inner--single .form-section__text {
  max-width: 100%;
}

.form-section__text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.1;
}

.form-section__text p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #555;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__row label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #555;
}

.form__row input,
.form__row select,
.form__row textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form__row input:focus,
.form__row select:focus,
.form__row textarea:focus {
  border-color: var(--dark);
}

.form__check input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  border: revert;
  width: auto;
  padding: 0;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--brand);
  cursor: pointer;
}

.form__row textarea {
  resize: vertical;
}

.form__success {
  padding: 24px;
  background: #f0faf4;
  border: 1px solid #a8d5b8;
  color: #1d6636;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
}

/* ====================================================
   SLOTBLOK
   ==================================================== */
.closing {
  padding: 96px 32px;
  text-align: center;
}

.closing__inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.closing__text {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.55;
  opacity: 0.9;
}

.closing__btn {
  align-self: center;
}

/* ====================================================
   FOOTER
   ==================================================== */
.footer {
  padding-top: 64px;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px 56px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 10px;
}

.footer__brand p {
  opacity: 0.55;
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.footer__socials {
  display: flex;
  gap: 16px;
  margin-top: 4px;
}

.footer__socials a {
  opacity: 0.5;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
}

.footer__socials a:hover {
  opacity: 1;
}

.footer__links h3,
.footer__contact h3 {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.45;
  margin-bottom: 16px;
}

.footer__links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a,
.footer__contact a {
  font-size: 0.875rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer__links a:hover,
.footer__contact a:hover {
  opacity: 1;
}

.footer__contact p {
  font-size: 0.875rem;
  line-height: 1.7;
  opacity: 0.7;
  margin-bottom: 6px;
}

.footer__bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 32px;
  font-size: 0.78rem;
  opacity: 0.35;
}

.footer__bottom a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ====================================================
   BESCHIKBAARHEID — split layout
   ==================================================== */
/* ---- Custom checkbox dropdown ---- */
.avail-check {
  position: relative;
}

.avail-check__btn {
  width: 100%;
  height: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid #ddd;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s;
}

.avail-check__btn:focus {
  outline: none;
  border-color: var(--dark);
}

.avail-check__btn[aria-expanded="true"] {
  border-color: var(--dark);
}

.avail-check__summary {
  flex: 1;
  color: inherit;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.avail-check__summary.is-placeholder {
  color: #999;
}

.avail-check__chevron {
  flex-shrink: 0;
  color: #888;
  transition: transform 0.18s;
}

.avail-check__btn[aria-expanded="true"] .avail-check__chevron {
  transform: rotate(180deg);
}

.avail-check__panel {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  display: flex;
  background: var(--white);
  border: 1px solid #ddd;
  z-index: 200;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

.avail-check__panel[hidden] {
  display: none;
}

.avail-check__left {
  flex: 1;
  padding: 8px 0;
}

.avail-check__right {
  width: 140px;
  flex-shrink: 0;
  border-left: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avail-check__unknown {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  font-size: 0.85rem;
  color: #444;
  cursor: pointer;
  text-align: center;
  line-height: 1.3;
}

.avail-check__group {
  padding: 8px 0 4px;
}

.avail-check__group + .avail-check__group {
  border-top: 1px solid #eee;
  margin-top: 4px;
  padding-top: 10px;
}

.avail-check__groeplabel {
  padding: 0 14px 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #aaa;
  margin: 0;
}

.avail-check__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  font-size: 0.9rem;
  color: var(--dark);
  cursor: pointer;
  transition: background 0.12s;
}

.avail-check__item:hover {
  background: #f5f5f5;
}

.avail-check__item input[type="checkbox"],
.avail-check__unknown input[type="checkbox"] {
  width: 16px;
  height: 16px;
  appearance: auto;
  -webkit-appearance: auto;
  accent-color: var(--brand);
  cursor: pointer;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  border: revert;
}

.avail-check.is-disabled .avail-check__btn {
  opacity: 0.35;
  cursor: not-allowed;
  background: #f5f5f5;
  pointer-events: none;
}

/* ====================================================
   ACTUELE VACATURES
   ==================================================== */
.vacancies {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #ddd;
}

.vacancies__title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 12px;
}

.vacancies__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vacancies__list li {
  padding-left: 14px;
  position: relative;
}

.vacancies__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-size: 0.875rem;
}

.vacancies__list a {
  font-size: 0.9rem;
  color: var(--brand);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}

.vacancies__list a:hover {
  opacity: 0.7;
}

/* ====================================================
   RESPONSIVE — TABLET (max 900px)
   ==================================================== */
@media (max-width: 900px) {
  .block__card,
  .events__left,
  .leaders__text {
    padding: 56px 40px;
  }
}

/* ====================================================
   RESPONSIVE — MOBIEL (max 768px)
   ==================================================== */
@media (max-width: 768px) {

  /* Nav */
  .nav__inner { padding: 0 20px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__cta { display: none; }
  .nav__cta-mobile { display: list-item; }

  /* Hero */
  .hero {
    padding: 0 16px 40px;
    align-items: flex-end;
  }
  .hero__card {
    margin: 0;
    padding: 32px 24px;
    max-width: 100%;
  }

  /* Missie */
  .mission { padding: 72px 20px; }

  /* Banner */
  .banner__content {
    padding: 0 20px;
    align-items: flex-start;
  }

  /* Blokken: stapel verticaal */
  .block,
  .block--reversed,
  .events,
  .leaders {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .block__photo,
  .block__photo--care,
  .events__photo,
  .leaders__photo {
    min-height: 260px;
    order: -1;
  }

  .block__card {
    padding: 40px 20px;
  }
  .block__card p { max-width: 100%; }

  .events__left {
    padding: 40px 20px;
  }

  .leaders__text {
    padding: 40px 20px;
  }

  /* Volunteer */
  .volunteer { padding: 48px 20px; }
  .volunteer__card { padding: 40px 24px; }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 20px 40px;
  }
  .footer__bottom { padding: 16px 20px; }

  /* Pijlers */
  .pillars { padding: 64px 20px; }
  .pillars__grid { grid-template-columns: 1fr; gap: 0; }
  .pillar { padding: 32px 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .pillar--mid { padding-left: 0; }
  .pillar:last-child { padding-left: 0; border-bottom: none; }

  /* Leeftijdsgroepen */
  .ages { padding: 56px 20px; }
  .ages__grid { grid-template-columns: repeat(2, 1fr); }

  /* Rollen */
  .roles { padding: 56px 20px; }
  .roles__grid { grid-template-columns: repeat(2, 1fr); }

  /* Formulier */
  .form-section { padding: 56px 20px; }
  .form-section__inner { grid-template-columns: 1fr; gap: 40px; }
  .form-section--club { padding: 48px 20px; }

  /* Slotblok */
  .closing { padding: 64px 20px; }

  /* Instagram */
  .instagram { padding: 48px 20px 56px; }
}

/* ====================================================
   RESPONSIVE — KLEIN MOBIEL (max 480px)
   ==================================================== */
@media (max-width: 480px) {
  .instagram__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats__inner { gap: 40px; }
  .stats__number { font-size: 2.2rem; }
}

/* ====================================================
   INTERACTIEVE KALENDER (FullCalendar)
   ==================================================== */
.cal-interactive {
  padding: 80px 32px;
  background: var(--white);
}

.cal-interactive__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.cal-interactive__inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cal-interactive__intro {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-bottom: 28px;
}

/* FullCalendar overrides */
#fullcalendar .fc-toolbar-title {
  font-family: var(--font-heading);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1rem;
}

#fullcalendar .fc-button-primary {
  background: var(--brand);
  border-color: var(--brand);
  font-size: 0.8rem;
}

#fullcalendar .fc-button-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

#fullcalendar .fc-button-primary:not(:disabled).fc-button-active,
#fullcalendar .fc-button-primary:not(:disabled):active {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

#fullcalendar .fc-list-event:hover td {
  background: var(--brand-light);
  cursor: pointer;
}

/* ICS Downloads */
.ics-downloads {
  background: var(--off-white);
  padding: 56px 32px;
  border-top: 1px solid #e8e8e8;
}

.ics-downloads__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.ics-downloads__inner h3 {
  font-family: var(--font-heading);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.ics-downloads__inner p {
  font-size: 0.9rem;
  opacity: 0.65;
  margin-bottom: 20px;
}

.ics-downloads__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ics-btn {
  padding: 9px 18px;
  border: 1px solid var(--brand);
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}

.ics-btn:hover {
  background: var(--brand);
  color: var(--white);
}

@media (max-width: 768px) {
  .cal-interactive { padding: 56px 20px; }
  .ics-downloads { padding: 40px 20px; }
}

/* ====================================================
   CLUB PAGINA'S
   ==================================================== */

/* Leeftijdsbadge in de hero */
.hero__age {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}

/* Groot statement blok onder de hero */
.club-tagline {
  background: var(--dark);
  color: var(--white);
  padding: 72px 32px;
  text-align: center;
}

.club-tagline__inner {
  max-width: 800px;
  margin: 0 auto;
}

.club-tagline p {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.4;
}

/* Praktisch info items in een blok__card */
.praktisch {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.praktisch__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
}

.praktisch__item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.praktisch__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
}

.praktisch__value {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}

/* Klikbare club-items in age-cards (homepage) */
.age-card a {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.18s;
}

.age-card a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

/* ====================================================
   VACATURE CARDS
   ==================================================== */
.vacancies__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.vacancy-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 16px;
  border: 2px solid var(--brand);
  background: var(--white);
  color: var(--dark);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.vacancy-card:hover {
  background: var(--brand);
  color: var(--white);
}

.vacancy-card__role {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vacancy-card__desc {
  font-size: 0.8rem;
  opacity: 0.7;
  line-height: 1.4;
}

.vacancy-card__cta {
  margin-top: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.03em;
}

.vacancy-card:hover .vacancy-card__cta {
  color: var(--white);
}

@media (max-width: 600px) {
  .vacancies__cards {
    grid-template-columns: 1fr;
  }
}

/* ====================================================
   JEUGDRAAD — TEAM OVERZICHT
   ==================================================== */
.team-section {
  padding: 80px 32px;
  background: var(--off-white);
}

.team-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.team-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.1;
}

.team-section__intro {
  font-size: 0.95rem;
  opacity: 0.65;
  margin-bottom: 48px;
  max-width: 600px;
  line-height: 1.65;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}

.team-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.team-card__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team-card__photo--placeholder {
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
}

.team-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.team-card__name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

.team-card__role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.team-card--vacancy .team-card__name {
  opacity: 0.5;
}

@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .team-section { padding: 56px 20px; }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
}

/* ====================================================
   LEIDING CLUBS & CATECHESE — DONKERE VARIANT
   ==================================================== */
.team-section--leiding {
  background: var(--dark);
  color: var(--white);
}

.team-section--leiding h2 {
  color: var(--white);
}

.team-section--leiding .team-card__role {
  color: var(--brand-light);
}

.team-section--leiding .team-card__photo--placeholder {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.22);
}

.team-section--leiding .team-card--vacancy .team-card__name {
  opacity: 0.35;
  color: var(--white);
}

.team-section__manifesto {
  margin-bottom: 56px;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.team-section__manifesto p {
  font-size: 1rem;
  line-height: 1.55;
  opacity: 0.82;
  padding-left: 22px;
  position: relative;
}

.team-section__manifesto p::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--brand-light);
  font-weight: 700;
}

.team-section__groups {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.team-section__group-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 28px;
}

/* ====================================================
   FOOTER LICHT (wit)
   ==================================================== */
.footer--light {
  background: var(--off-white);
  color: var(--dark);
  padding-top: 64px;
}

.footer--light .footer__inner {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer--light .footer__logo {
  color: var(--dark);
}

.footer--light .footer__brand p {
  color: var(--dark);
  opacity: 0.55;
}

.footer--light .footer__socials a {
  color: var(--dark);
}

.footer--light .footer__links h3,
.footer--light .footer__contact h3 {
  color: var(--dark);
  opacity: 0.45;
}

.footer--light .footer__links a,
.footer--light .footer__contact a,
.footer--light .footer__contact p {
  color: var(--dark);
}

.footer--light .footer__bottom {
  color: var(--dark);
  opacity: 0.4;
}

.footer--light .footer__bottom a {
  color: var(--dark);
}

/* ====================================================
   BLOK LICHT (wit) — "Waarom zou je meedoen?"
   ==================================================== */
.block__card--light {
  background: var(--white);
  color: var(--dark);
}

.block__card--light h2 {
  color: var(--dark);
}

.block__card--light p,
.block__card--light li {
  color: var(--dark);
}

/* Responsive: carousel */
@media (max-width: 768px) {
  .events__carousel {
    min-height: 260px;
    order: -1;
  }
  .carousel__track,
  .carousel__slide {
    min-height: 260px;
  }
  .ages__intro {
    white-space: normal;
  }
}

/* ====================================================
   NAV DROPDOWN — Wat we doen (desktop only)
   ==================================================== */
.nav__item--dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__dropdown-chevron {
  flex-shrink: 0;
  color: currentColor;
  transition: transform 0.18s;
}

.nav__item--dropdown:hover .nav__dropdown-chevron,
.nav__item--dropdown.is-open .nav__dropdown-chevron {
  transform: rotate(180deg);
}

.nav__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
  min-width: 230px;
  list-style: none;
  padding: 8px 0;
  z-index: 200;
  max-height: calc(100vh - 90px);
  overflow-y: auto;
}

.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown.is-open .nav__dropdown {
  display: block;
}

.nav__dropdown li a {
  display: block;
  padding: 7px 16px;
  font-size: 0.83rem;
  font-weight: 500;
  opacity: 0.8;
  letter-spacing: 0;
  transition: background 0.12s, opacity 0.12s;
  white-space: nowrap;
}

.nav__dropdown li a:hover {
  background: var(--off-white);
  opacity: 1;
}

.nav__dropdown-header {
  padding: 8px 16px 2px;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  opacity: 0.85;
}

.nav__dropdown-divider {
  border-top: 1px solid #eee;
  margin: 6px 0;
}

.nav__dropdown-nolink {
  display: block;
  padding: 7px 16px;
  font-size: 0.83rem;
  opacity: 0.45;
  white-space: nowrap;
}

.nav__dropdown-featured a {
  color: var(--brand);
  font-weight: 600;
  opacity: 1;
}

@media (max-width: 768px) {
  .nav__dropdown { display: none !important; }
  .nav__dropdown-chevron { display: none; }
}
