:root {
  --ink: #202020;
  --ink-soft: #333333;
  --cream: #f7f5f0;
  --white: #ffffff;
  --gold: #d1b05f;
  --gold-dark: #b8975f;
  --orange: #e55934;
  --orange-dark: #c94a29;
  --blue: #245065;
  --blue-dark: #1a3c4d;
  --font-display: "Roboto Slab", serif;
  --font-body: "Roboto", "Helvetica Neue", Arial, sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-soft);
  background: var(--white);
  line-height: 1.6;
}
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0 0 12px; color: var(--ink); }
p { margin: 0 0 16px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.wrap--narrow { max-width: 780px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 26px; border-radius: var(--radius-sm); font-weight: 700;
  font-family: var(--font-body); font-size: 0.92rem; letter-spacing: 0.01em;
  border: 2px solid transparent; cursor: pointer; transition: background 0.15s, transform 0.15s;
}
.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: #000; transform: translateY(-1px); }

/* ============================================================
   Header
   ============================================================ */
.site-header { position: absolute; top: 0; left: 0; right: 0; z-index: 20; padding: 20px 0; }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; }
.site-header__logo { height: 52px; width: auto; }
.main-nav { display: flex; gap: 30px; }
.main-nav a { color: var(--white); font-weight: 600; font-size: 0.95rem; padding: 6px 0; margin-right: 30px; border-bottom: 2px solid transparent; transition: border-color 0.15s; }
.main-nav a:last-child { margin-right: 0; }
.main-nav a:hover, .main-nav a.is-active { border-color: var(--orange); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--white); display: block; }

/* Solid header on inner (non-hero-slideshow) pages */
body:has(.page-banner) .site-header { position: relative; background: var(--ink); }
body:has(.page-banner) .main-nav a { color: var(--white); }

/* ============================================================
   Hero (homepage slideshow)
   ============================================================ */
.hero--slideshow { position: relative; min-height: 640px; overflow: hidden; color: var(--white); }
.hero__slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  display: flex; align-items: flex-end; opacity: 0; visibility: hidden; transition: opacity 1s ease;
}
.hero__slide.is-active { opacity: 1; visibility: visible; position: relative; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(32,32,32,0.45) 0%, rgba(32,32,32,0.75) 100%); }
.hero__inner { position: relative; z-index: 2; padding-bottom: 70px; padding-top: 220px; width: 100%; }
.hero__title { color: var(--white); font-size: 3.4rem; margin-bottom: 8px; }
.hero__lead { font-size: 1.15rem; max-width: 520px; margin-bottom: 12px; opacity: 0.95; }
.btn--naked { background: none; border: none; color: var(--white); text-decoration: underline; padding: 0; font-size: 1rem; }
.btn--naked:hover { opacity: 0.85; }

/* ============================================================
   Motto section
   ============================================================ */
.motto { background: var(--ink); color: #d8d8d8; padding: 90px 0; }
.motto__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.motto__eyebrow { display: block; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.8rem; color: var(--orange); margin-bottom: 14px; font-weight: 700; }
.motto__text { font-family: var(--font-display); font-size: 1.7rem; color: var(--white); line-height: 1.4; }
.motto__body p { color: #bdbdbd; }
.motto__contact a { color: var(--orange); font-weight: 700; }

/* ============================================================
   "Wat wil je organiseren?" CTA section
   ============================================================ */
.organiseren { padding: 90px 0; background: var(--cream); }
.organiseren__title { text-align: center; font-size: 2.1rem; margin-bottom: 50px; }
.organiseren__title span { color: var(--orange); }

.cta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.cta-card {
  display: block; border-radius: var(--radius-md); overflow: hidden; text-align: center; color: var(--white);
  box-shadow: var(--shadow-soft); text-decoration: none;
}
.cta-card__photo { height: 220px; background-size: cover; background-position: center; }
.cta-card__content { padding: 26px 24px 30px; }
.cta-card h3 { color: var(--white); font-size: 1.5rem; margin: 0 0 8px; }
.cta-card p { opacity: 0.92; margin-bottom: 18px; }
.cta-card--trouwen .cta-card__content { background: var(--gold); }
.cta-card--feesten .cta-card__content { background: var(--orange); }
.cta-card--zakelijk .cta-card__content { background: var(--blue); }
.cta-card .btn--dark { background: rgba(0,0,0,0.55); display: inline-block; }
.cta-card:hover .btn--dark { background: rgba(0,0,0,0.75); }

/* ============================================================
   Inner-page banners (Trouwen/Feesten/Zakelijk/Contact/etc.)
   ============================================================ */
.page-banner { padding: 170px 0 60px; color: var(--white); }
.page-banner h1 { color: var(--white); font-size: 2.6rem; margin-bottom: 10px; }
.page-banner p { opacity: 0.95; max-width: 560px; }
.page-banner--trouwen { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.page-banner--feesten { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }
.page-banner--zakelijk { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); }
.page-banner--contact,
.page-banner--neutral { background: var(--ink); }

.section { padding: 60px 0; }
.placeholder-note { background: #fff7e6; border: 1px dashed #e0c98a; border-radius: var(--radius-sm); padding: 16px 20px; color: #7a5a10; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--ink); color: #cfcfcf; padding: 60px 0 0; }
.site-footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer__label { display: block; font-size: 0.82rem; color: #9a9a9a; margin-bottom: 4px; }
.footer__label--spaced { margin-top: 18px; }
.footer__contact-link { color: var(--white); font-weight: 700; font-size: 1.05rem; }
.site-footer h3 { color: var(--white); font-size: 1rem; margin-bottom: 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.site-footer ul a:hover { color: var(--orange); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.82rem; color: #8a8a8a; }
.footer__legal { display: flex; gap: 18px; }
.footer__legal a:hover { color: var(--orange); }

/* ============================================================
   Responsief
   ============================================================ */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.is-open {
    display: flex; flex-direction: column; gap: 0; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--ink); padding: 10px 24px 20px;
  }
  .main-nav.is-open a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .motto__inner { grid-template-columns: 1fr; gap: 30px; }
  .cta-grid { grid-template-columns: 1fr; }
  .hero__cards { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero__title { font-size: 2.4rem; }
  .hero__inner { padding-top: 160px; }
  .page-banner { padding: 130px 0 40px; }
}

/* ============================================================
   Inner-page shared bits: banner eyebrow, section titles, tint
   ============================================================ */
.page-banner__eyebrow { display: block; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.8rem; font-weight: 700; opacity: 0.85; margin-bottom: 10px; }
.section__title { font-size: 1.6rem; margin-bottom: 26px; }
.section__title span { display: block; font-family: var(--font-body); font-size: 0.95rem; font-weight: 400; color: var(--ink-soft); margin-top: 4px; }
.section--tint { background: var(--cream); }

/* ============================================================
   Aanvraagformulieren (Trouwen/Feesten/Zakelijk)
   ============================================================ */
.aanvraag-form { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-weight: 700; font-size: 0.92rem; color: var(--ink); }
.field-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.field input, .field select, .field textarea {
  border: 2px solid #e2ded4; border-radius: var(--radius-sm); padding: 11px 14px;
  font-family: var(--font-body); font-size: 0.95rem; background: var(--white); color: var(--ink-soft);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.checkbox-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 20px; margin-top: 4px; }
.checkbox-option { display: flex; align-items: center; gap: 8px; font-weight: 400; font-size: 0.92rem; }
.checkbox-option input { width: auto; }
.aanvraag-form__error { color: #c0392b; font-weight: 700; margin: 0; }
.aanvraag-form__success { background: #eef7ee; border: 1px solid #bfe3bf; border-radius: var(--radius-sm); padding: 20px; color: #2c5c2c; }

@media (max-width: 700px) {
  .field-grid { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Testimonial
   ============================================================ */
.testimonial { text-align: center; }
.testimonial__quote { font-family: var(--font-display); font-size: 1.3rem; line-height: 1.5; color: var(--ink); }
.testimonial__author { font-weight: 700; color: var(--ink-soft); }

/* ============================================================
   Gallery
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery--two { grid-template-columns: repeat(2, 1fr); }
.gallery--two img { height: 320px; }
.gallery img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius-md); box-shadow: var(--shadow-soft); }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .gallery { grid-template-columns: 1fr; } }

/* ============================================================
   Feature grid (Zakelijk amenities)
   ============================================================ */
.feature-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; text-align: center; }
.feature-item { background: var(--cream); border-radius: var(--radius-md); padding: 26px 16px; }
.feature-item__icon { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.feature-item p { margin: 0; font-weight: 600; font-size: 0.9rem; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   CTA band (bottom of Trouwen/Feesten pages)
   ============================================================ */
.cta-band { padding: 60px 0; color: var(--white); }
.cta-band--trouwen { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); }
.cta-band--feesten { background: linear-gradient(135deg, var(--orange-dark), var(--orange)); }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { color: var(--white); font-size: 1.5rem; margin-bottom: 6px; }
.cta-band p { margin: 0; opacity: 0.95; max-width: 480px; }

/* ============================================================
   Contact page
   ============================================================ */
.contact-details { display: flex; gap: 30px; flex-wrap: wrap; justify-content: center; }
.contact-details__item {
  display: flex; flex-direction: column; gap: 6px; align-items: center; text-align: center;
  background: var(--cream); border-radius: var(--radius-md); padding: 30px 50px; min-width: 240px;
  transition: transform 0.15s;
}
.contact-details__item:hover { transform: translateY(-2px); }
.contact-details__label { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); }
.contact-details__value { font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); }

/* ============================================================
   Legal text (Algemene Voorwaarden / Privacy)
   ============================================================ */
.legal-text h2 { font-size: 1.15rem; margin-top: 34px; }
.legal-text p { color: var(--ink-soft); font-size: 0.95rem; }

/* ============================================================
   WhatsApp floating button
   ============================================================ */
.whatsapp-fab {
  position: fixed; left: 20px; bottom: 20px; z-index: 998;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-soft);
  transition: transform 0.15s;
}
.whatsapp-fab:hover { transform: scale(1.06); }
