/* ===========================
   Romeyn Verhuur - Kinderattracties
   Hoofdstijl
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Fredoka+One&display=swap');

/* === INLINE SVG ICONS === */
.ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  vertical-align: middle;
}
.ico svg { width: 1.15em; height: 1.15em; }
.ico-sm svg { width: 0.95em; height: 0.95em; }
.ico-lg svg { width: 1.5em; height: 1.5em; }
.ico-xl svg { width: 2em; height: 2em; }

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

:root {
  --geel: #FFD600;
  --geel-licht: #FFF3B0;
  --geel-donker: #E5BE00;
  --roze: #FF4DA0;
  --roze-licht: #FFD6EC;
  --roze-donker: #D6006E;
  --paars: #5B0FA0;
  --wit: #FFFFFF;
  --licht-grijs: #F9F4FF;
  --tekst: #2D1B4E;
  --tekst-licht: #6B5A8A;
  --radius: 18px;
  --radius-lg: 28px;
  --schaduw: 0 4px 24px rgba(91,15,160,0.10);
  --schaduw-hover: 0 8px 36px rgba(91,15,160,0.18);
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', Arial, sans-serif;
  color: var(--tekst);
  background: var(--wit);
  line-height: 1.65;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--wit);
  box-shadow: 0 2px 16px rgba(91,15,160,0.10);
  padding: 0;
}

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

.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-link img { height: 72px; width: auto; }

/* === NAVIGATIE === */
.main-nav { display: flex; align-items: center; gap: 4px; }

.main-nav a {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--tekst);
  padding: 8px 12px;
  border-radius: 10px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.actief {
  background: var(--roze-licht);
  color: var(--roze-donker);
}

.nav-offerte {
  background: var(--roze) !important;
  color: var(--wit) !important;
  border-radius: 50px !important;
  padding: 9px 20px !important;
  font-weight: 800 !important;
  margin-left: 8px;
  box-shadow: 0 3px 12px rgba(255,77,160,0.30);
  transition: transform var(--transition), box-shadow var(--transition) !important;
}
.nav-offerte:hover {
  background: var(--roze-donker) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,77,160,0.40) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--roze);
  border-radius: 3px;
  transition: var(--transition);
}

/* === HERO === */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FFF3B0 0%, #FFD6EC 50%, #EDD6FF 100%);
  padding: 80px 0 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,214,0,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,77,160,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: var(--roze);
  color: var(--wit);
  font-weight: 800;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: 'Fredoka One', 'Nunito', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--tekst);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 .accent-geel { color: var(--geel-donker); }
.hero h1 .accent-roze { color: var(--roze); }

.hero-tekst {
  font-size: 17px;
  color: var(--tekst-licht);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-knoppen {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--schaduw-hover);
  aspect-ratio: 4/3;
  width: 100%;
  max-width: 480px;
  transform: rotate(2deg);
  transition: transform var(--transition);
}
.hero-img-wrap:hover { transform: rotate(0deg) scale(1.02); }
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.hero-badge-floating {
  position: absolute;
  background: var(--geel);
  color: var(--tekst);
  font-weight: 900;
  font-size: 13px;
  padding: 10px 16px;
  border-radius: var(--radius);
  box-shadow: var(--schaduw);
  white-space: nowrap;
}
.badge-f1 { top: -16px; left: -20px; transform: rotate(-8deg); }
.badge-f2 { bottom: -16px; right: -20px; transform: rotate(5deg); background: var(--roze); color: var(--wit); }

/* Confetti stippen hero */
.confetti-dot {
  position: absolute;
  border-radius: 50%;
  opacity: 0.55;
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}

/* === KNOPPEN === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
}

.btn-roze {
  background: var(--roze);
  color: var(--wit);
  box-shadow: 0 4px 16px rgba(255,77,160,0.35);
}
.btn-roze:hover {
  background: var(--roze-donker);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255,77,160,0.45);
  color: var(--wit);
}

.btn-geel {
  background: var(--geel);
  color: var(--tekst);
  box-shadow: 0 4px 16px rgba(255,214,0,0.40);
}
.btn-geel:hover {
  background: var(--geel-donker);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255,214,0,0.50);
}

.btn-outline {
  background: transparent;
  color: var(--roze);
  border: 2.5px solid var(--roze);
}
.btn-outline:hover {
  background: var(--roze-licht);
  transform: translateY(-2px);
}

.btn-lg {
  font-size: 17px;
  padding: 15px 36px;
}

/* === SECTIE TITELS === */
.sectie-label {
  display: inline-block;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--roze);
  background: var(--roze-licht);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.sectie-titel {
  font-family: 'Fredoka One', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--tekst);
  margin-bottom: 12px;
  line-height: 1.2;
}
.sectie-titel span { color: var(--roze); }
.sectie-titel .geel { color: var(--geel-donker); }

.sectie-sub {
  font-size: 16px;
  color: var(--tekst-licht);
  max-width: 580px;
}

.sectie-hoofd {
  text-align: center;
  margin-bottom: 52px;
}
.sectie-hoofd .sectie-sub { margin: 0 auto; }

/* === SECTIES === */
section { padding: 72px 0; }

.bg-licht { background: var(--licht-grijs); }
.bg-geel-licht { background: var(--geel-licht); }
.bg-roze-licht { background: var(--roze-licht); }

.bg-gradient-fun {
  background: linear-gradient(135deg, #FFF3B0 0%, #FFD6EC 60%, #EDD6FF 100%);
}

/* === ATTRACTIES GRID === */
.attracties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.attractie-kaart {
  background: var(--wit);
  border-radius: var(--radius-lg);
  box-shadow: var(--schaduw);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.attractie-kaart:hover {
  transform: translateY(-8px);
  box-shadow: var(--schaduw-hover);
}

.attractie-kaart-foto {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.attractie-kaart-foto img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.attractie-kaart:hover .attractie-kaart-foto img { transform: scale(1.07); }

.attractie-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--geel);
  color: var(--tekst);
  font-weight: 800;
  font-size: 11.5px;
  padding: 4px 12px;
  border-radius: 50px;
}

.attractie-kaart-body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.attractie-kaart-body h3 {
  font-family: 'Fredoka One', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--tekst);
}

.attractie-kaart-body p {
  color: var(--tekst-licht);
  font-size: 14.5px;
  margin-bottom: 16px;
  flex: 1;
}

.attractie-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.spec-badge {
  background: var(--licht-grijs);
  color: var(--tekst);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.spec-badge .spec-icon { font-size: 13px; }

/* === ATTRACTIE DETAIL PAGINA === */
.attractie-hero {
  background: linear-gradient(135deg, #FFF3B0, #FFD6EC);
  padding: 64px 0 0;
}

.attractie-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.attractie-hero-content {
  padding-bottom: 56px;
}

.attractie-hero-content h1 {
  font-family: 'Fredoka One', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--tekst);
  margin-bottom: 16px;
  line-height: 1.15;
}

.attractie-hero-content .intro {
  font-size: 17px;
  color: var(--tekst-licht);
  margin-bottom: 28px;
}

.attractie-foto-groot {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  box-shadow: 0 -4px 32px rgba(91,15,160,0.12);
  aspect-ratio: 4/3;
}
.attractie-foto-groot img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.specs-tabel {
  background: var(--wit);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--schaduw);
  margin-bottom: 28px;
}

.specs-tabel h3 {
  font-family: 'Fredoka One', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--tekst);
  display: flex;
  align-items: center;
  gap: 8px;
}

.specs-tabel table {
  width: 100%;
  border-collapse: collapse;
}
.specs-tabel td {
  padding: 9px 0;
  font-size: 14.5px;
  border-bottom: 1px solid #F0EAF8;
}
.specs-tabel tr:last-child td { border-bottom: none; }
.specs-tabel td:first-child {
  font-weight: 700;
  color: var(--tekst-licht);
  width: 42%;
  padding-right: 12px;
}
.specs-tabel td:last-child { color: var(--tekst); }

.attractie-fotos-extra {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.attractie-fotos-extra img {
  border-radius: var(--radius);
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  transition: transform var(--transition);
  cursor: pointer;
}
.attractie-fotos-extra img:hover { transform: scale(1.04); }

/* CTA banner op attractiepagina */
.cta-banner {
  background: linear-gradient(135deg, var(--roze), var(--roze-donker));
  color: var(--wit);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-banner h3 {
  font-family: 'Fredoka One', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 6px;
}
.cta-banner p { opacity: 0.9; font-size: 15px; }
.cta-banner .btn-geel { flex-shrink: 0; }

/* === USP STRIP === */
.usp-strip {
  background: var(--geel);
  padding: 0;
}

.usp-strip-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px 0;
  gap: 24px;
  flex-wrap: wrap;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 14.5px;
  color: var(--tekst);
}

.usp-item .ico svg { width: 22px; height: 22px; }

/* === OVER ONS SECTIE === */
.over-ons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.over-ons-foto {
  position: relative;
}

.over-ons-foto-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--schaduw-hover);
  aspect-ratio: 4/3;
}
.over-ons-foto-main img { width: 100%; height: 100%; object-fit: cover; }

.over-ons-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--geel);
  color: var(--tekst);
  font-weight: 900;
  font-size: 15px;
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--schaduw);
  text-align: center;
  line-height: 1.3;
}
.over-ons-badge strong { display: block; font-size: 2rem; color: var(--roze); }

.over-ons-tekst p {
  color: var(--tekst-licht);
  margin-bottom: 16px;
  font-size: 15.5px;
}

.checklist {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
}
.checklist li::before {
  content: '';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  min-width: 26px;
  background: var(--geel) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D1B4E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/65% no-repeat;
  border-radius: 50%;
  flex-shrink: 0;
}

/* === CONTACT SECTIE === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.contact-info-kaart {
  background: linear-gradient(135deg, var(--roze), var(--roze-donker));
  color: var(--wit);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 8px 32px rgba(255,77,160,0.25);
}

.contact-info-kaart h2 {
  font-family: 'Fredoka One', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.contact-info-kaart > p {
  opacity: 0.9;
  margin-bottom: 28px;
  font-size: 15px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.20);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 22px; height: 22px; }

.contact-item-tekst strong {
  display: block;
  font-size: 13px;
  opacity: 0.75;
  margin-bottom: 2px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.contact-item-tekst a,
.contact-item-tekst span {
  font-weight: 700;
  font-size: 15.5px;
  color: var(--wit);
}
.contact-item-tekst a:hover { text-decoration: underline; }

/* Formulier */
.offerte-formulier {
  background: var(--wit);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--schaduw);
}

.offerte-formulier h2 {
  font-family: 'Fredoka One', sans-serif;
  font-size: 1.7rem;
  margin-bottom: 8px;
  color: var(--tekst);
}
.offerte-formulier > p {
  color: var(--tekst-licht);
  margin-bottom: 28px;
  font-size: 15px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-groep {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-groep.vol { grid-column: 1 / -1; }

.form-groep label {
  font-weight: 700;
  font-size: 13.5px;
  color: var(--tekst);
}

.form-groep input,
.form-groep select,
.form-groep textarea {
  font-family: 'Nunito', sans-serif;
  font-size: 14.5px;
  color: var(--tekst);
  background: var(--licht-grijs);
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 12px 16px;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  width: 100%;
}

.form-groep input:focus,
.form-groep select:focus,
.form-groep textarea:focus {
  border-color: var(--roze);
  background: var(--wit);
}

.form-groep textarea { min-height: 120px; resize: vertical; }

.form-submit {
  margin-top: 8px;
}

.succes-melding {
  display: none;
  background: #ECFDF5;
  color: #065F46;
  border: 2px solid #A7F3D0;
  border-radius: var(--radius);
  padding: 16px 20px;
  font-weight: 700;
  margin-top: 16px;
  font-size: 15px;
}
.succes-melding.toon { display: flex; align-items: center; gap: 10px; }

/* === FOOTER === */
.site-footer {
  background: var(--tekst);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-col h4 {
  font-family: 'Fredoka One', sans-serif;
  font-size: 1.1rem;
  color: var(--wit);
  margin-bottom: 18px;
}

.footer-col p { font-size: 14px; line-height: 1.7; }

.footer-logo { margin-bottom: 16px; max-width: 280px; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 14px;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before { content: '→'; color: var(--roze); font-weight: 700; }
.footer-links a:hover { color: var(--geel); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 10px;
}
.footer-contact-item span:first-child { font-size: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom a { color: var(--geel); }
.footer-bottom a:hover { text-decoration: underline; }

/* === BROODKRUIMELS === */
.breadcrumb {
  padding: 16px 0;
  font-size: 13px;
  color: var(--tekst-licht);
}
.breadcrumb a { color: var(--roze); font-weight: 700; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; }

/* === VOORDELEN KAARTJES === */
.voordelen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 22px;
}

.voordeel-kaart {
  background: var(--wit);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--schaduw);
  text-align: center;
  transition: transform var(--transition);
}
.voordeel-kaart:hover { transform: translateY(-5px); }

.voordeel-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  background: var(--roze-licht);
}
.voordeel-icon svg { width: 28px; height: 28px; }
.voordeel-icon.ico-geel { background: var(--geel-licht); }

.voordeel-kaart h3 {
  font-family: 'Fredoka One', sans-serif;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--tekst);
}
.voordeel-kaart p {
  font-size: 13.5px;
  color: var(--tekst-licht);
}

/* === MINI HERO (binnenste pagina's) === */
.mini-hero {
  background: linear-gradient(135deg, #FFF3B0, #FFD6EC);
  padding: 48px 0;
  text-align: center;
}
.mini-hero h1 {
  font-family: 'Fredoka One', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--tekst);
  margin-bottom: 10px;
}
.mini-hero p {
  font-size: 16px;
  color: var(--tekst-licht);
  max-width: 580px;
  margin: 0 auto;
}

/* === PAGINA SPECIFIEK === */
.attractie-voordelen {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin: 32px 0;
}

.attractie-voordeel {
  background: var(--licht-grijs);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 14px;
}
.attractie-voordeel span:first-child { font-size: 22px; }

/* Andere attracties suggester */
.andere-attracties {
  padding: 72px 0;
  background: var(--licht-grijs);
}

/* Testimonial / statistieken balk */
.stats-balk {
  background: var(--roze);
  color: var(--wit);
  padding: 48px 0;
}

.stats-inner {
  display: flex;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}
.stat-getal {
  font-family: 'Fredoka One', sans-serif;
  font-size: 3rem;
  color: var(--geel);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 14px;
  opacity: 0.9;
  font-weight: 700;
  margin-top: 6px;
}

/* === MOBILE NAV OVERLAY === */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 998;
}

/* === SCROLL ANIMATIONS === */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.zichtbaar {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .hero-inner,
  .over-ons-grid,
  .attractie-hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual { order: -1; }
  .hero-img-wrap { max-width: 100%; transform: none; }
  .badge-f1, .badge-f2 { display: none; }

  .footer-inner { grid-template-columns: 1fr 1fr; }

  .contact-grid { grid-template-columns: 1fr; }

  .attractie-fotos-extra { grid-template-columns: repeat(2, 1fr); }

  .over-ons-badge { bottom: -16px; right: -8px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .main-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--wit);
    z-index: 999;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 6px;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  }

  .main-nav.open { display: flex; }

  .main-nav a {
    width: 100%;
    font-size: 17px;
    padding: 12px 16px;
  }

  .nav-offerte { margin-left: 0; margin-top: 12px; text-align: center; justify-content: center; }

  .form-grid { grid-template-columns: 1fr; }
  .form-groep.vol { grid-column: 1; }

  .cta-banner { flex-direction: column; text-align: center; padding: 30px 24px; }
  .cta-banner .btn { width: 100%; justify-content: center; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .offerte-formulier { padding: 28px 20px; }

  .hero-knoppen { flex-direction: column; }
  .hero-knoppen .btn { width: 100%; justify-content: center; }

  .usp-strip-inner { flex-direction: column; gap: 10px; }
}

/* === FAQ ACCORDION === */
.faq-lijst {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--schaduw);
}

.faq-item {
  background: var(--wit);
  border-bottom: 1px solid #f0eaf8;
}
.faq-item:last-child { border-bottom: none; }

.faq-vraag {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  text-align: left;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--tekst);
  transition: background var(--transition), color var(--transition);
}
.faq-vraag:hover {
  background: var(--licht-grijs);
  color: var(--roze);
}
.faq-vraag[aria-expanded="true"] {
  color: var(--roze);
  background: var(--roze-licht);
}

.faq-chevron {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--roze);
  transition: transform var(--transition);
}
.faq-chevron svg { width: 100%; height: 100%; display: block; }
.faq-vraag[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }

.faq-antwoord {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
}
.faq-antwoord.open { max-height: 400px; }

.faq-antwoord p {
  color: var(--tekst-licht);
  font-size: 15.5px;
  padding: 0 28px 22px;
  margin: 0;
}

@media (max-width: 480px) {
  section { padding: 52px 0; }
  .attracties-grid { grid-template-columns: 1fr; }
  .voordelen-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { gap: 32px; }
  .attractie-fotos-extra { grid-template-columns: 1fr; }
}
