/* ==========================================================================
   gezinsvakanties.com — huisstijl & basisstyling
   Kleuren, type en componenten zijn gebundeld als design tokens (:root)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Nunito+Sans:ital,opsz,wght@0,6..12,400;0,6..12,600;0,6..12,700;0,6..12,800;1,6..12,600&display=swap');

:root{
  /* Kleuren */
  --cream:      #FFF8EC;
  --cream-deep: #FBEFDA;
  --coral:      #FF6F59;
  --coral-dark: #E85A45;
  --sunshine:   #FFC94A;
  --teal:       #0E7C7B;
  --teal-dark:  #0A5F5E;
  --leaf:       #4CAE6F;
  --ink:        #23303A;
  --ink-soft:   #566470;
  --white:      #FFFFFF;

  /* Typografie */
  --font-display: 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Nunito Sans', system-ui, sans-serif;

  /* Maatvoering */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --max-width: 1180px;
  --shadow-soft: 0 12px 30px -14px rgba(35, 48, 58, 0.25);
  --shadow-card: 0 8px 20px -10px rgba(35, 48, 58, 0.22);
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4{
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--ink);
}
p{ margin: 0 0 1em; }
button{ font-family: inherit; }

:focus-visible{
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

.container{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-dark);
  margin-bottom: 12px;
}
.eyebrow::before{
  content: "";
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: var(--sunshine);
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 10px 22px -10px rgba(255, 111, 89, 0.65);
}
.btn-primary:hover{ background: var(--coral-dark); }
.btn-secondary{
  background: var(--white);
  color: var(--teal-dark);
  border: 2px solid var(--teal);
}
.btn-secondary:hover{ background: var(--teal); color: var(--white); }
.btn-ghost{
  background: transparent;
  color: var(--ink);
  padding: 10px 4px;
  border-bottom: 2px solid var(--sunshine);
  border-radius: 0;
}

/* ---------- Header / Navigatie ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 236, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 2px solid var(--cream-deep);
}
.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.logo{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.logo span{ color: var(--coral); }
.logo .dot{ color: var(--sunshine); font-size: 1.8rem; line-height: 0; }

.nav-links{
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a{
  font-weight: 700;
  font-size: 0.98rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover, .nav-links a.active{
  border-bottom-color: var(--coral);
}
.nav-cta{ display:flex; align-items:center; gap:18px; }

.nav-toggle{
  display: none;
  background: none;
  border: 2px solid var(--ink);
  border-radius: 10px;
  width: 44px;
  height: 40px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span{ width: 20px; height: 2.5px; background: var(--ink); border-radius: 2px; }

@media (max-width: 860px){
  .nav-links{
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 26px;
    gap: 16px;
    border-bottom: 2px solid var(--cream-deep);
    display: none;
  }
  .nav-links.open{ display: flex; }
  .nav-toggle{ display: flex; }
  .nav-cta .btn-secondary{ display:none; }
}

/* ---------- Hero ---------- */
.hero{
  position: relative;
  overflow: hidden;
  padding: 64px 0 90px;
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 201, 74, 0.55) 0, transparent 40%),
    radial-gradient(circle at 86% 8%, rgba(76, 174, 111, 0.35) 0, transparent 38%),
    var(--cream);
}
.hero::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 90px;
  background: var(--white);
  clip-path: path('M0,40 C 300,110 900,-30 1440,50 L1440,120 L0,120 Z');
}
.hero-inner{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero h1{
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin-bottom: 0.4em;
}
.hero h1 em{
  font-style: normal;
  color: var(--coral);
  position: relative;
  white-space: nowrap;
}
.hero-lead{
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 1.6em;
}
.hero-actions{ display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px;}
.hero-trust{
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-soft);
}
.hero-trust li{ display: flex; align-items: center; gap: 8px; }
.hero-trust li::before{ content: "✓"; color: var(--leaf); font-weight: 800; }

/* Polaroid-stapel als hero-visual */
.snapshot-stack{
  position: relative;
  height: 380px;
}
.snapshot{
  position: absolute;
  width: 230px;
  background: var(--white);
  padding: 10px 10px 44px;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  font-family: var(--font-display);
}
.snapshot img{ border-radius: 4px; height: 150px; object-fit: cover; width: 100%; }
.snapshot figcaption{
  position: absolute;
  bottom: 12px; left: 14px; right: 14px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.snap-1{ top: 0; left: 30px; transform: rotate(-7deg); z-index: 2; }
.snap-2{ top: 40px; right: 0; transform: rotate(6deg); z-index: 1; }
.snap-3{ bottom: 0; left: 90px; transform: rotate(-3deg); z-index: 3; }

@media (max-width: 900px){
  .hero-inner{ grid-template-columns: 1fr; }
  .snapshot-stack{ height: 300px; margin-top: 10px; }
}

/* ---------- Secties algemeen ---------- */
.section{ padding: 80px 0; }
.section-head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.section-head h2{ font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 0; }
.section-lead{ color: var(--ink-soft); max-width: 60ch; }
.bg-white{ background: var(--white); }
.bg-teal{ background: var(--teal-dark); color: var(--white); }
.bg-teal h2, .bg-teal h3{ color: var(--white); }

/* ---------- Ticket-stub kaarten (signatuur-element) ---------- */
.card-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
}
.ticket-card{
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ticket-card:hover{ transform: translateY(-6px); box-shadow: 0 18px 30px -14px rgba(35,48,58,0.3); }
.ticket-media{ position: relative; }
.ticket-media img{ height: 190px; object-fit: cover; width: 100%; }
.ticket-stamp{
  position: absolute;
  top: 14px; right: 14px;
  background: var(--sunshine);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 999px;
  transform: rotate(6deg);
  box-shadow: 0 4px 10px -4px rgba(0,0,0,0.35);
}
.ticket-body{ padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.ticket-body h3{ font-size: 1.25rem; margin-bottom: 6px; }
.ticket-body p{ color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 18px; }
.ticket-perforation{
  position: relative;
  height: 0;
  border-top: 2px dashed var(--cream-deep);
  margin: 0 22px;
}
.ticket-perforation::before, .ticket-perforation::after{
  content: "";
  position: absolute;
  top: -11px;
  width: 22px; height: 22px;
  background: var(--cream);
  border-radius: 50%;
}
.ticket-perforation::before{ left: -33px; }
.ticket-perforation::after{ right: -33px; }
.bg-white .ticket-perforation::before, .bg-white .ticket-perforation::after{ background: var(--white); }
.ticket-foot{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px 20px;
  margin-top: auto;
}
.ticket-foot .price{ font-family: var(--font-display); font-weight: 700; color: var(--teal-dark); }
.ticket-foot a{ font-weight: 800; color: var(--coral-dark); }

/* ---------- Aanbieder-strip ---------- */
.provider-strip{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.provider-pill{
  background: var(--white);
  border: 2px solid var(--cream-deep);
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--ink-soft);
}

/* ---------- Blog kaarten (compacter) ---------- */
.blog-card{
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.blog-card img{ height: 170px; object-fit: cover; }
.blog-card .content{ padding: 20px 22px 24px; }
.blog-tag{
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(14,124,123,0.1);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.blog-card h3{ font-size: 1.15rem; }
.blog-card p{ color: var(--ink-soft); font-size: 0.93rem; }
.blog-meta{ font-size: 0.82rem; color: var(--ink-soft); margin-top: 12px; }

/* ---------- Deelband / CTA ---------- */
.cta-band{
  background: var(--coral);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 54px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2{ color: var(--white); margin-bottom: 6px; }
.cta-band p{ color: rgba(255,255,255,0.85); margin: 0; }
.cta-band .btn-secondary{ background: var(--white); border-color: var(--white); color: var(--coral-dark); }

/* ---------- Stappen / uitleg ---------- */
.steps{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.step-item .step-index{
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--sunshine);
  -webkit-text-stroke: 2px var(--ink);
  margin-bottom: 6px;
}
.step-item h3{ font-size: 1.1rem; }
.step-item p{ color: var(--ink-soft); font-size: 0.94rem; }

/* ---------- Testimonials ---------- */
.quote-card{
  background: var(--cream-deep);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  position: relative;
}
.quote-card p{ font-size: 1.02rem; color: var(--ink); }
.quote-author{ display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 0.9rem; }
.quote-author .avatar{
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
}

/* ---------- Formulieren ---------- */
.form-grid{ display: grid; gap: 18px; }
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label{ font-weight: 800; font-size: 0.88rem; display: block; margin-bottom: 6px; }
input, textarea, select{
  width: 100%;
  border: 2px solid var(--cream-deep);
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
}
input:focus, textarea:focus, select:focus{ border-color: var(--teal); outline: none; }
@media (max-width: 640px){ .form-row{ grid-template-columns: 1fr; } }

/* ---------- Breadcrumb ---------- */
.breadcrumb{ font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 18px; }
.breadcrumb a{ color: var(--teal-dark); font-weight: 700; }

/* ---------- Footer ---------- */
.site-footer{
  background: var(--ink);
  color: rgba(255,255,255,0.82);
  padding: 60px 0 30px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-grid h4{ color: var(--white); font-size: 1rem; margin-bottom: 14px; }
.footer-grid ul li{ margin-bottom: 10px; }
.footer-grid a:hover{ color: var(--sunshine); }
.footer-logo{ font-family: var(--font-display); font-size: 1.4rem; color: var(--white); font-weight: 800; margin-bottom: 12px; }
.footer-logo span{ color: var(--coral); }
.footer-note{
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.disclosure-banner{
  background: var(--cream-deep);
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-align: center;
  padding: 8px 16px;
}
.disclosure-banner a{ color: var(--teal-dark); font-weight: 700; }

@media (max-width: 860px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px){
  .footer-grid{ grid-template-columns: 1fr; }
  .cta-band{ padding: 36px 26px; }
}
