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

:root {
  --red:    #FF0000;
  --orange: #FF4600;
  --lime:   #A7C300;
  --teal:   #008471;
  --navy:   #003688;
  --purple: #8A3699;
  --sky:    #009FEA;
  --pink:   #EC9BCE;
  --brown:  #5C3C33;
  --black:  #1A1A1A;
  --offwhite: #F1F1F1;
  --white:  #FFFFFF;

  --grad-brown-red: linear-gradient(90deg, var(--brown), var(--red));
  --grad-warm: linear-gradient(90deg, var(--red), var(--orange), var(--lime));
  --grad-nature: linear-gradient(90deg, var(--lime), var(--teal), var(--navy));
  --grad-cool: linear-gradient(90deg, var(--navy), var(--purple), var(--sky));
  --grad-soft: linear-gradient(90deg, var(--sky), var(--pink));
  --grad-full: linear-gradient(90deg, var(--brown), var(--red), var(--orange), var(--lime), var(--teal), var(--navy), var(--purple), var(--sky), var(--pink));

  --font: 'Work Sans', sans-serif;
  --container: 1400px;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--offwhite);
  font-size: 11px;
}
.top-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px 0 10px 48px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}
.lang-switcher {
  display: flex;
  gap: 4px;
}
.lang-switcher a {
  text-decoration: none;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
  padding: 3px 7px;
  border-radius: 2px;
  transition: all .2s;
}
.lang-switcher a.active {
  background: var(--black);
  color: var(--white);
}
.social-row {
  display: flex;
  gap: 8px;
}
.social-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  letter-spacing: 0;
}

/* ── NAV ── */
nav {
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 100;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 0 16px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo-img {
  width: 100px;
  height: auto;
  display: block;
  margin: 1em 0;
}
.logo-img-wrap {
  line-height: 0;
}
.logo {
  font-size: 26px;
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: var(--black);
  position: relative;
}
.logo-swoosh {
  position: absolute;
  top: -6px;
  left: -8px;
  width: 70px;
  height: 70px;
  pointer-events: none;
}
.nav-links {
  display: flex;
  gap: 48px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-warm);
  transition: width .25s;
}
.nav-links a:hover::after { width: 100%; }

.btn-steun {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 11px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: opacity .2s;
}
.btn-steun:hover { opacity: 0.85; }

/* Hamburger menu (hidden on desktop) */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--black);
  border-radius: 1px;
}

/* ── SECTIE SCHEIDINGSLIJNEN ── */
.section-divider {
  height: 3px;
  width: 100%;
  display: block;
}
.section-divider--brown-red { background: var(--grad-brown-red); }
.section-divider--warm    { background: var(--grad-warm); }
.section-divider--nature  { background: var(--grad-nature); }
.section-divider--cool    { background: var(--grad-cool); }
.section-divider--soft    { background: var(--grad-soft); }
.section-divider--full    { background: var(--grad-full); }
.section-divider--reverse { background: linear-gradient(90deg, var(--pink), var(--sky), var(--purple), var(--navy), var(--teal), var(--lime), var(--orange), var(--red), var(--brown)); }

/* ── NOOD AAN EEN GESPREK BANNER ── */
.urgent {
  background: linear-gradient(135deg, #fce4e4, #fce8dd, #fbf0dc);
  color: var(--black);
  padding: 28px 0;
}

.urgent-inner {
  padding-left: 64px;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.urgent-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.urgent-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2.5s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.urgent h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}
.urgent p {
  font-size: 12px;
  color: #888;
  font-weight: 300;
  margin-top: 2px;
}
.btn-urgent {
  background: var(--black);
  border: none;
  color: var(--white);
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 9px 20px;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s;
}
.btn-urgent:hover {
  opacity: 0.85;
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
  max-width: var(--container);
  margin: 0 auto;
}
.hero-left {
  padding: 112px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid #eee;
  position: relative;
}
.hero-eyebrow {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 28px;
}
.hero-left h1 {
  font-size: 72px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 36px;
  color: var(--black);
}
.hero-left h1 span {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-left p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: #555;
  max-width: 440px;
  margin-bottom: 52px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
}
.btn-primary {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 13px 28px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity .2s;
}
.btn-primary:hover { opacity: 0.8; }
.btn-secondary {
  background: transparent;
  color: var(--black);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 13px 28px;
  border: 2px solid var(--black);
  border-radius: 6px;
  cursor: pointer;
  transition: all .2s;
}
.btn-secondary:hover {
  background: var(--black);
  color: var(--white);
}
.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--offwhite);
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Gradient lijn decoratie over hero foto
.hero-right::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-warm);
} */

/* ── AANBOD ── */
.aanbod {
  background: #fdf9f5;
  padding-bottom: 72px;
}
.aanbod-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.section-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 80px 64px 60px;
}
.section-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--teal);
  margin-bottom: 14px;
}
.section-intro h2 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
}
.link-more {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--black);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 2px;
  border-bottom: 1.5px solid #ccc;
  transition: gap .2s, border-color .2s;
}
.link-more:hover { gap: 14px; border-color: var(--black); }

/* Onthaal featured */
.onthaal-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 64px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.onthaal-text {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  background: var(--white);
}
.tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--teal);
  background: rgba(0,132,113,0.08);
  padding: 5px 12px;
  border-radius: 4px;
  width: fit-content;
}
.onthaal-text h3 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
}
.onthaal-text p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: #555;
  max-width: 420px;
}
.onthaal-img {
  overflow: hidden;
  position: relative;
}
.onthaal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 380px;
}
/* Kleurlijn linkerkant — verwijderd voor card-stijl */

/* 3 activiteiten */
.activiteiten {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 36px 64px 0;
}
.act-card {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: box-shadow .2s, transform .2s;
}
.act-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}
.act-tag {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 12px;
  border-radius: 4px;
  width: fit-content;
}
.act-tag--bib { color: var(--navy); background: rgba(0,54,136,0.08); }
.act-tag--anno { color: var(--purple); background: rgba(138,54,153,0.08); }
.act-tag--draad { color: var(--red); background: rgba(255,0,0,0.08); }

.act-card h4 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.act-card p {
  font-size: 14px;
  font-weight: 300;
  color: #666;
  line-height: 1.8;
  flex-grow: 1;
}
.act-card .link-more {
  font-size: 11px;
  margin-top: 8px;
}

/* ── AGENDA ── */
.agenda {
  max-width: var(--container);
  margin: 0 auto;
  background: var(--white);
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 64px 88px;
  gap: 32px;
}
.event-card {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.event-card:hover {
  border-color: #ccc;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.event-img {
  height: 200px;
  background: var(--offwhite);
  position: relative;
  overflow: hidden;
}
.event-color-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.event-color-bar--1 { background: var(--grad-warm); }
.event-color-bar--2 { background: var(--grad-cool); }
.event-color-bar--3 { background: var(--grad-soft); }

.placeholder-img-colored {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
}

.event-body {
  padding: 36px;
}
.event-date {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 12px;
}
.event-body h4 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 12px;
  line-height: 1.2;
}
.event-body p {
  font-size: 13px;
  font-weight: 300;
  color: #666;
  line-height: 1.75;
  margin-bottom: 20px;
}
.event-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* ── STEUN ONS ── */
.steun {
  display: grid;
  grid-template-columns: 3fr 2fr;
  min-height: 400px;
  max-width: var(--container);
  margin: 0 auto;
  background: var(--white);
}
.steun-links {
  padding: 104px 72px;
  border-right: 1px solid #eee;
  position: relative;
  overflow: hidden;
}

.steun-links h2 {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 0.95;
  margin-bottom: 28px;
}
.steun-links h2 em {
  font-style: normal;
  background: var(--grad-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.steun-links p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: #555;
  max-width: 460px;
  margin-bottom: 48px;
}
.steun-rechts {
  display: flex;
  flex-direction: column;
  background: var(--black);
}
.steun-optie {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 48px;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: background .2s;
}
.steun-optie:last-child { border-bottom: none; }
.steun-optie:hover { background: rgba(255,255,255,0.06); }
.steun-optie span { font-size: 22px; font-weight: 300; }

/* ── FOOTER ── */
footer {
  background: var(--black);
  color: var(--white);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 64px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 88px 64px 72px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 20px;
}
.footer-logo-img {
  width: 100px;
  height: auto;
  display: block;
  margin-bottom: 24px;
}
.footer-desc {
  font-size: 14px;
  font-weight: 300;
  color: #888;
  line-height: 1.8;
  margin-bottom: 28px;
}
.footer-social {
  display: flex;
  gap: 8px;
}
.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: border-color .2s;
}
.footer-social a:hover { border-color: var(--white); }

footer h5 {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #666;
  margin-bottom: 24px;
}
footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
footer ul li a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  color: #aaa;
  transition: color .2s;
}
footer ul li a:hover { color: var(--white); }

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #555;
}

/* Gradient lijn bovenaan footer via section-divider in HTML */
footer::before { display: none; }

/* Taalwisselaar in footer */
.footer-lang {
  display: flex;
  gap: 4px;
  margin-top: 20px;
}
.footer-lang a {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: #666;
  padding: 3px 7px;
  border-radius: 2px;
  transition: all .2s;
}
.footer-lang a.active {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

/* ── SCROLL ANIMATIES ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger-delays voor groepen */
.fade-up.stagger-1 { transition-delay: 0s; }
.fade-up.stagger-2 { transition-delay: 0.12s; }
.fade-up.stagger-3 { transition-delay: 0.24s; }

/* Reduceer animaties voor gebruikers die dat verkiezen */
@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET (≤ 768px)
   ══════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── TOP BAR ── */
  .top-bar-inner {
    padding: 8px 24px;
    gap: 16px;
  }

  /* ── NAV ── */
  .nav-inner {
    padding: 12px 24px;
    gap: 24px;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid #eee;
    padding: 24px;
    gap: 24px;
    z-index: 99;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-logo-img {
    width: 80px;
    margin: 0.5em 0;
  }
  .btn-steun {
    font-size: 11px;
    padding: 9px 18px;
  }

  /* ── URGENT ── */
  .urgent-inner {
    padding: 0 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  /* ── HERO ── */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 56px 24px;
    border-right: none;
  }
  .hero-left h1 {
    font-size: 48px;
    letter-spacing: -2px;
  }
  .hero-left p {
    font-size: 15px;
    max-width: 100%;
    margin-bottom: 32px;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }
  .hero-ctas button {
    width: 100%;
    text-align: center;
  }
  .hero-right {
    min-height: 300px;
  }

  /* ── AANBOD ── */
  .section-intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 48px 24px 32px;
  }
  .section-intro h2 {
    font-size: 36px;
  }
  .aanbod {
    padding-bottom: 40px;
  }
  .onthaal-block {
    grid-template-columns: 1fr;
    margin: 0 24px;
  }
  .onthaal-text {
    padding: 36px 24px;
  }
  .onthaal-text h3 {
    font-size: 36px;
  }
  .onthaal-img img {
    min-height: 250px;
  }

  /* ── ACTIVITEITEN ── */
  .activiteiten {
    grid-template-columns: 1fr;
    margin: 24px 24px 0;
    gap: 16px;
  }
  .act-card {
    padding: 32px 24px;
  }

  /* ── AGENDA ── */
  .events-grid {
    grid-template-columns: 1fr;
    padding: 0 24px 48px;
    gap: 20px;
  }

  /* ── STEUN ── */
  .steun {
    grid-template-columns: 1fr;
  }
  .steun-links {
    padding: 56px 24px;
    border-right: none;
  }
  .steun-links h2 {
    font-size: 44px;
    letter-spacing: -2px;
  }
  .steun-links p {
    max-width: 100%;
    margin-bottom: 32px;
  }
  .steun-optie {
    padding: 24px;
  }

  /* ── FOOTER ── */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 24px 40px;
  }
  .footer-bottom {
    padding: 16px 24px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .section-divider {
    height: 2px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBIEL (≤ 480px)
   ══════════════════════════════════════ */
@media (max-width: 480px) {

  .hero-left h1 {
    font-size: 38px;
    letter-spacing: -1.5px;
  }
  .hero-left {
    padding: 40px 20px;
  }
  .hero-eyebrow {
    margin-bottom: 20px;
  }

  .section-intro {
    padding: 36px 20px 24px;
  }
  .section-intro h2 {
    font-size: 28px;
    letter-spacing: -1px;
  }
  .onthaal-block {
    margin: 0 20px;
  }
  .onthaal-text {
    padding: 28px 20px;
  }
  .onthaal-text h3 {
    font-size: 28px;
    letter-spacing: -1px;
  }
  .activiteiten {
    margin: 20px 20px 0;
  }
  .act-card {
    padding: 28px 20px;
  }
  .events-grid {
    padding: 0 20px 36px;
  }
  .event-body {
    padding: 24px;
  }

  .steun-links {
    padding: 40px 20px;
  }
  .steun-links h2 {
    font-size: 34px;
    letter-spacing: -1.5px;
  }
  .steun-optie {
    padding: 20px;
    font-size: 13px;
  }

  .top-bar-inner {
    padding: 8px 20px;
  }
  .nav-inner {
    padding: 10px 20px;
  }
  .urgent-inner {
    padding: 0 20px;
  }
  .urgent h3 {
    font-size: 13px;
  }
  .urgent p {
    font-size: 11px;
  }
  .btn-urgent {
    font-size: 10px;
    padding: 8px 16px;
  }

  .footer-top {
    padding: 36px 20px 32px;
    gap: 32px;
  }
  .footer-bottom {
    padding: 16px 20px;
  }
}