/* ══════════════════════════════════════════
   Yippie — Gedeelde stijlen
   ══════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────── */
:root {
  --coral:        #E8736A;
  --coral-dark:   #C8564D;
  --coral-light:  #FDF1F0;
  --coral-mid:    #F2C0BB;
  --dark:         #18120F;
  --mid:          #52443E;
  --muted:        #9A8880;
  --line:         #EDE8E6;
  --bg:           #FAFAF8;
  --white:        #FFFFFF;
  --radius:       14px;
  --shadow-sm:    0 1px 4px rgba(24,18,15,.05), 0 2px 12px rgba(24,18,15,.06);
  --shadow:       0 2px 8px rgba(24,18,15,.06), 0 6px 24px rgba(24,18,15,.07);
  --shadow-md:    0 4px 16px rgba(24,18,15,.07), 0 12px 40px rgba(24,18,15,.09);
  --shadow-lg:    0 8px 32px rgba(24,18,15,.08), 0 24px 64px rgba(24,18,15,.12);
}

/* ── Reset ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Anchor scroll offset for fixed nav */
[id] { scroll-margin-top: 90px; }

/* ── Utility ────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }

.pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--coral-light); color: var(--coral-dark);
  font-size: .7rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 999px;
  border: 1px solid var(--coral-mid);
}
.pill::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--coral); flex-shrink: 0;
}

h2.sec-title {
  font-size: clamp(1.75rem, 3.8vw, 2.55rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -.028em;
  margin-top: 14px; margin-bottom: 18px; color: var(--dark);
}
p.sec-desc {
  font-size: .975rem; color: var(--mid); line-height: 1.8; max-width: 560px;
}

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px; border-radius: 999px;
  font-family: inherit; font-weight: 700; font-size: .875rem;
  letter-spacing: .01em; cursor: pointer; text-decoration: none;
  transition: background .18s, transform .15s, box-shadow .18s, border-color .18s, color .18s;
  border: 2px solid transparent;
}
.btn:active { transform: translateY(0) scale(.98) !important; }

.btn-coral { background: var(--coral); color: var(--white); }
.btn-coral:hover {
  background: var(--coral-dark); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,115,106,.38);
}

.btn-outline { background: transparent; color: var(--mid); border-color: var(--line); }
.btn-outline:hover { border-color: var(--coral); color: var(--coral); background: var(--coral-light); }

.btn-dark  { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: #2A1F1A; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(24,18,15,.25); }

.btn-ghost { background: rgba(255,255,255,.14); color: var(--white); border-color: rgba(255,255,255,.28); }
.btn-ghost:hover { background: rgba(255,255,255,.26); transform: translateY(-2px); }

.btn-lg  { padding: 14px 32px; font-size: .95rem; }
.btn-sm  { padding: 8px 18px; font-size: .8rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Scroll-reveal ─────────────────────── */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   NAV
   ══════════════════════════════════════════ */
nav {
  position: fixed; top: 0; width: 100%; z-index: 200;
  background: rgba(255,255,255,.95); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s, border-color .25s;
}
nav.scrolled { box-shadow: var(--shadow); border-color: var(--coral-mid); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.logo-wrap { display: inline-flex; align-items: center; text-decoration: none; }
.logo-img  { height: 48px; width: auto; display: block; }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: .875rem; font-weight: 600; color: var(--mid);
  text-decoration: none; position: relative; padding-bottom: 3px;
  transition: color .18s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; right: 0;
  height: 2px; background: var(--coral); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .22s cubic-bezier(.22,1,.36,1);
}
.nav-links a:hover,
.nav-links a.active { color: var(--coral); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta { display: flex; gap: 10px; align-items: center; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: .25s; }

.mobile-nav {
  display: none; position: fixed; inset: 0; background: var(--white);
  z-index: 199; flex-direction: column; align-items: center;
  justify-content: center; gap: 28px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a:not(.btn) { font-size: 1.3rem; font-weight: 700; color: var(--dark); text-decoration: none; transition: color .18s; }
.mobile-nav a:not(.btn):hover { color: var(--coral); }
.mobile-nav-close { position: absolute; top: 20px; right: 24px; background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--dark); }

/* ══════════════════════════════════════════
   PAGE HERO (interne pagina's)
   ══════════════════════════════════════════ */
.page-hero {
  padding-top: 132px; padding-bottom: 80px;
  background: linear-gradient(150deg, var(--coral-light) 0%, #FFF8F7 45%, var(--white) 100%);
  border-bottom: 1px solid var(--coral-mid);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,115,106,.13) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -60px; left: 10%;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,115,106,.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .pill { margin-bottom: 18px; }
.page-hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 900; line-height: 1.06; letter-spacing: -.032em;
  margin-bottom: 20px; position: relative;
}
.page-hero p {
  font-size: 1.05rem; color: var(--mid); line-height: 1.8;
  max-width: 540px; position: relative;
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
footer {
  background: var(--dark); color: rgba(255,255,255,.6);
  padding: 72px 0 36px;
  border-top: 3px solid var(--coral);
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px; margin-bottom: 52px;
}
.footer-brand-logo {
  display: inline-flex; align-items: center; text-decoration: none; margin-bottom: 18px;
}
.footer-brand-logo img {
  height: 50px; width: auto;
  background: white; border-radius: 10px; padding: 5px 12px;
}
.footer-brand p { font-size: .85rem; line-height: 1.75; color: rgba(255,255,255,.48); max-width: 270px; }
.footer-col h4 {
  font-size: .7rem; font-weight: 700; color: rgba(255,255,255,.85);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  font-size: .85rem; color: rgba(255,255,255,.48);
  text-decoration: none; transition: color .18s;
}
.footer-col ul a:hover { color: var(--coral); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08);
  font-size: .78rem; color: rgba(255,255,255,.35);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,.28); text-decoration: none; transition: color .18s; }
.footer-legal a:hover { color: rgba(255,255,255,.65); }

/* ══════════════════════════════════════════
   CONTACT FORM (gedeeld)
   ══════════════════════════════════════════ */
.contact-form-box {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 20px; padding: 48px; box-shadow: var(--shadow-md);
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { margin-bottom: 20px; }
.fg label { display: block; font-size: .8rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; letter-spacing: .02em; }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: .9rem; color: var(--dark);
  background: var(--bg); outline: none;
  transition: border-color .18s, box-shadow .18s, background .18s;
  appearance: none;
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--muted); }
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232,115,106,.13);
  background: var(--white);
}
.fg textarea { resize: vertical; min-height: 120px; }
.brochure-check {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 24px; font-size: .85rem; color: var(--mid); cursor: pointer;
}
.brochure-check input[type="checkbox"] { accent-color: var(--coral); width: 16px; height: 16px; cursor: pointer; }
#formSuccess, #formSuccess2 { display: none; text-align: center; padding: 40px 0; }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .container { padding: 0 24px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .contact-form-box { padding: 32px 24px; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .page-hero { padding-bottom: 56px; }
}
