/* ──────────────────────────────────────────────────────────────
   page.css — gedeelde stijl voor de subpagina's van djarmara.com
   De homepage houdt zijn eigen inline <style>; dit bestand is voor
   /wat-kost-een-dj/, de dienstpagina's en de plaatspagina's.
   Tokens gelijk aan index.html en epk.html.
   ────────────────────────────────────────────────────────────── */

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

:root {
  --bg:       #0d0b0e;
  --warm:     #17131a;
  --gold:     #c8903a;
  --gold2:    #e0aa56;
  --cream:    #f5f0e8;
  --muted:    #9a9088;
  --line-10:  rgba(200,144,58,.10);
  --line-18:  rgba(200,144,58,.18);
  --line-25:  rgba(200,144,58,.25);
  --line-40:  rgba(200,144,58,.40);
  --display:  'Space Grotesk', sans-serif;
  --sans:     'DM Sans', sans-serif;
  --ease-ui:  cubic-bezier(.4,0,.2,1);
  --wrap:     1080px;
  --measure:  68ch;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── TYPOGRAFIE ─── */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.18; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.4rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.45rem, 3vw, 2rem); letter-spacing: -.01em; margin-bottom: 1.1rem; }
h3 { font-size: 1.12rem; letter-spacing: .01em; margin-bottom: .5rem; }

p { max-width: var(--measure); margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--gold2); text-decoration: none; transition: color .3s var(--ease-ui); }
a:hover { color: var(--cream); }

strong { font-weight: 500; color: #fff; }

.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.1rem;
}
.gold-rule { display: block; width: 48px; height: 1px; background: var(--gold); margin: 1.5rem 0; }
.lead { font-size: 1.16rem; color: #e8e1d6; }

/* Onzichtbaar voor het oog, wel voor screenreaders en Google */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Overslaan-link voor toetsenbordgebruikers */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1200;
  background: var(--gold); color: #17131a; padding: .8rem 1.4rem;
  font-family: var(--sans); font-size: .85rem; letter-spacing: .06em;
}
.skip-link:focus { left: 1rem; top: 1rem; color: #17131a; }

:focus-visible { outline: 2px solid var(--gold2); outline-offset: 3px; }

/* ─── REVEAL ─── */
.reveal { transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.js .reveal { opacity: 0; transform: translateY(24px); }
.js .reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .10s; }
.reveal-delay-2 { transition-delay: .22s; }

/* ─── NAV ─── */
nav#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 1.4rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  transition: background .5s, backdrop-filter .5s, padding .4s;
}
nav#main-nav.scrolled { background: rgba(13,11,14,.9); backdrop-filter: blur(16px); padding: .9rem 4rem; }
.nav-logo img { height: 26px; display: block; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-family: var(--sans); font-size: .78rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--cream); opacity: .82;
}
.nav-links a:hover { opacity: 1; color: var(--gold2); }
.nav-cta {
  font-family: var(--sans); font-size: .74rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--line-40); padding: .62rem 1.3rem; border-radius: 2px;
  white-space: nowrap;
  transition: background .35s var(--ease-ui), color .35s var(--ease-ui);
}
.nav-cta:hover { background: var(--gold); color: #17131a; }

/* ─── LAYOUT ─── */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 4rem; }
section { padding: 4.2rem 0; }
section + section { border-top: 1px solid var(--line-10); }
.section-warm { background: var(--warm); }

/* ─── BROODKRUIMEL ─── */
.breadcrumb {
  padding-top: 7.5rem; padding-bottom: 0;
  font-size: .78rem; letter-spacing: .04em; color: var(--muted);
}
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; }
.breadcrumb li::after { content: '›'; margin-left: .5rem; color: var(--line-40); }
.breadcrumb li:last-child::after { content: ''; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--gold2); }
.breadcrumb [aria-current] { color: var(--cream); }

/* ─── HERO (blok A) ─── */
.page-hero { padding: 2.4rem 0 3.6rem; }
.page-hero h1 { margin-bottom: 1.4rem; }
.page-hero .lead { max-width: 62ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

/* ─── KNOPPEN ─── */
.btn {
  display: inline-block;
  font-family: var(--sans); font-size: .78rem; letter-spacing: .16em;
  text-transform: uppercase; padding: .95rem 2rem; border-radius: 2px;
  border: 1px solid var(--gold); color: var(--gold); background: transparent;
  cursor: pointer;
  transition: background .35s var(--ease-ui), color .35s var(--ease-ui);
}
.btn:hover { background: var(--gold); color: #17131a; }
.btn-solid { background: var(--gold); color: #17131a; }
.btn-solid:hover { background: var(--gold2); border-color: var(--gold2); color: #17131a; }

/* ─── PRIJSBLOK (blok C) ─── */
.price-card {
  border: 1px solid var(--line-25);
  background: linear-gradient(180deg, rgba(200,144,58,.06), transparent 70%);
  padding: 2.2rem 2.4rem;
  border-radius: 3px;
  max-width: 640px;
}
.price-head { display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap; margin-bottom: .4rem; }
.price-amount { font-family: var(--display); font-size: 2.3rem; font-weight: 700; color: var(--gold2); line-height: 1; }
.price-label { font-size: .95rem; color: var(--cream); }
.price-sub { font-size: .9rem; color: var(--muted); margin-bottom: 1.4rem; }
.price-card ul { list-style: none; margin: 0 0 1.4rem; }
.price-card li {
  position: relative; padding-left: 1.4rem; margin-bottom: .5rem;
  font-size: .96rem; color: #ddd5c9;
}
.price-card li::before {
  content: ''; position: absolute; left: 0; top: .72em;
  width: 6px; height: 1px; background: var(--gold);
}
.price-extras { border-top: 1px solid var(--line-18); padding-top: 1.2rem; margin-top: .4rem; }
.price-extras dl { display: grid; grid-template-columns: 1fr auto; gap: .5rem 1.5rem; }
.price-extras dt { font-size: .94rem; color: #ddd5c9; }
.price-extras dd { font-size: .94rem; color: var(--gold2); text-align: right; font-family: var(--display); }
.price-note { font-size: .9rem; color: var(--muted); margin-top: 1.3rem; font-style: italic; }

/* Nog niet ingevuld tarief — valt op, zodat het niet per ongeluk live gaat */
.price-tbd {
  color: var(--gold);
  border-bottom: 1px dashed var(--line-40);
  font-style: normal;
}

/* ─── WAT JE KRIJGT (blok D) ─── */
.stack > * + * { margin-top: 2.2rem; }
.cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem 2.6rem; }
.cols p { max-width: none; }

/* ─── REVIEW (blok F) ─── */
.quote {
  border-left: 1px solid var(--gold);
  padding: .2rem 0 .2rem 1.6rem;
  max-width: var(--measure);
}
.quote p { font-size: 1.08rem; color: #e8e1d6; font-style: italic; }
.quote cite { display: block; margin-top: .7rem; font-size: .84rem; font-style: normal; color: var(--muted); letter-spacing: .08em; }

/* ─── FAQ (blok G) ─── */
.faq { max-width: var(--measure); }
.faq details {
  border-bottom: 1px solid var(--line-10);
  padding: 1.1rem 0;
}
.faq summary {
  cursor: pointer; list-style: none;
  font-family: var(--display); font-weight: 700; font-size: 1.02rem;
  color: var(--cream);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; color: var(--gold); font-weight: 400; font-size: 1.4rem;
  line-height: 1; transition: transform .3s var(--ease-ui);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > p { margin-top: .9rem; color: #ccc4b8; }

/* ─── OOK INTERESSANT (blok H) ─── */
.linkgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1px; background: var(--line-10); border: 1px solid var(--line-10); }
.linkgrid a {
  background: var(--bg); padding: 1.2rem 1.4rem;
  color: var(--cream); font-size: .95rem;
  display: flex; align-items: center; justify-content: space-between; gap: .8rem;
  transition: background .3s var(--ease-ui), color .3s var(--ease-ui);
}
.linkgrid a::after { content: '→'; color: var(--gold); opacity: .6; }
.linkgrid a:hover { background: var(--warm); color: var(--gold2); }

/* Kaarten (homepage-blok "Waarvoor je mij boekt") */
.cardgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; }
.card {
  border: 1px solid var(--line-18); padding: 1.7rem 1.6rem; border-radius: 3px;
  transition: border-color .35s var(--ease-ui), background .35s var(--ease-ui);
  display: block; color: var(--cream);
}
.card:hover { border-color: var(--line-40); background: rgba(200,144,58,.04); color: var(--cream); }
.card h3 { color: var(--gold2); }
.card p { font-size: .94rem; color: var(--muted); max-width: none; margin: 0; }

/* Plaatslinks als rij */
.placelist { display: flex; flex-wrap: wrap; gap: .6rem; list-style: none; }
.placelist a {
  display: inline-block; border: 1px solid var(--line-18);
  padding: .5rem 1rem; border-radius: 2px; font-size: .92rem; color: var(--cream);
}
.placelist a:hover { border-color: var(--gold); color: var(--gold2); }

/* ─── PRIJSTABEL (in .price-card) ─── */
.price-table { width: 100%; border-collapse: collapse; margin-top: 1.6rem; }
.price-table td {
  padding: .72rem 0;
  border-bottom: 1px solid var(--line-10);
  vertical-align: baseline;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table td:first-child { color: var(--cream); font-weight: 600; padding-right: 1.2rem; white-space: nowrap; }
.price-table td.oms { color: var(--muted); font-size: .92rem; padding-right: 1.2rem; }
.price-table td:last-child { text-align: right; color: var(--gold); font-family: var(--display); white-space: nowrap; }
@media (max-width: 640px) {
  .price-table td:first-child { white-space: normal; }
  .price-table td.oms { display: none; }
}

/* ─── FORMULIER (blok I) ─── */
.form-wrap { max-width: 720px; }
.booking-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem 1.5rem; margin-top: 2rem;
  /* zelfde kaart als .form-card op de homepage: omlijnd, strak, uniform */
  border: 1px solid var(--line-40);
  background: rgba(245,240,232,.03);
  padding: 40px;
}
@media (max-width: 620px) { .booking-form { padding: 24px 18px; } }
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .55rem;
}
.form-field .req { color: var(--gold); }
.form-field input,
.form-field select,
.form-field textarea {
  background: transparent; border: 0; border-bottom: 1px solid var(--line-25);
  color: var(--cream); font-family: var(--sans); font-size: 1rem; font-weight: 300;
  padding: .6rem 0; border-radius: 0;
  transition: border-color .3s var(--ease-ui);
}
.form-field select { color: var(--cream); }
.form-field select option { background: var(--warm); color: var(--cream); }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: none; border-color: var(--gold); }
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(154,144,136,.6); }
.field-error { display: none; font-size: .78rem; color: #e07a5f; margin-top: .4rem; }
.form-field.has-error .field-error { display: block; }
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea { border-color: #e07a5f; }
.form-submit { grid-column: 1 / -1; margin-top: .6rem; }
.form-success {
  display: none; border: 1px solid var(--line-40); padding: 1.8rem 2rem;
  margin-top: 2rem; border-radius: 3px;
}
.form-success h3 { color: var(--gold2); }
.form-alt { font-size: .92rem; color: var(--muted); margin-top: 1.6rem; }
.form-alt a { color: var(--gold2); }

/* ─── FOOTER ─── */
footer {
  background: var(--warm);
  padding: 3.4rem 0 2.4rem;
  border-top: 1px solid var(--line-10);
}
.footer-cols {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 2.2rem; margin-bottom: 2.8rem;
}
.footer-cols h4 {
  font-family: var(--sans); font-size: .72rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold); font-weight: 400; margin-bottom: 1rem;
}
.footer-cols ul { list-style: none; }
.footer-cols li { margin-bottom: .5rem; }
.footer-cols a { font-size: .92rem; color: #bdb4a8; }
.footer-cols a:hover { color: var(--gold2); }
.footer-bottom {
  border-top: 1px solid var(--line-10); padding-top: 1.8rem;
  display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; justify-content: space-between;
}
.footer-bottom img { height: 24px; }
.footer-copy { font-size: .8rem; color: var(--muted); margin: 0; max-width: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav#main-nav, nav#main-nav.scrolled { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .wrap { padding: 0 1.5rem; }
  section { padding: 3rem 0; }
  .breadcrumb { padding-top: 6rem; }
  .booking-form { grid-template-columns: 1fr; }
  .price-card { padding: 1.8rem 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ─── PRINT ─── */
@media print {
  nav#main-nav, .hero-actions, .booking-form, .linkgrid { display: none; }
  body { background: #fff; color: #000; }
}
