/* ══════════════════════════════════════
   KAPPER TEMPLATE — Shared Styles
   Pages: index, diensten, over-ons, contact
══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,700;0,900;1,500;1,700&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --bg:      #0d0d0d;
  --bg2:     #141414;
  --bg3:     #1c1c1c;
  --bg4:     #222;
  --gold:    #c9a84c;
  --gold2:   #e8c96a;
  --gold-lt: rgba(201,168,76,.12);
  --gold-bd: rgba(201,168,76,.25);
  --text:    #e8e0d0;
  --muted:   #7a7065;
  --border:  rgba(255,255,255,.07);
  --r:       12px;
  --r-lg:    20px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; line-height: 1.6; }
h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── TOP BAR ── */
.top-bar {
  background: var(--gold);
  text-align: center;
  padding: 9px 16px;
  font-size: .82rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: #000;
  letter-spacing: .3px;
}
.top-bar a { color: #000; font-weight: 700; }

/* ── NAVBAR ── */
nav.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,13,13,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: 72px;
  display: flex; align-items: center;
  padding: 0 5%;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: .5px;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .3px;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .25s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.btn-nav {
  background: var(--gold);
  color: #000;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  padding: 10px 22px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  letter-spacing: .3px;
  transition: background .2s, transform .15s;
}
.btn-nav:hover { background: var(--gold2); transform: translateY(-1px); color: #000; }

/* hamburger */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: #fff; margin: 6px 0; transition: .3s; }
.mobile-nav {
  display: none; position: fixed; inset: 0;
  background: var(--bg); z-index: 200;
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: #fff; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .close-btn { position: absolute; top: 20px; right: 24px; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; }

@media(max-width:768px) { .nav-links, .btn-nav { display: none; } .hamburger { display: block; } }

/* ── SHARED SECTION STYLES ── */
.section { padding: 96px 5%; }
.wrap { max-width: 1200px; margin: 0 auto; }
.wrap-sm { max-width: 800px; margin: 0 auto; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}
.h2 em { font-style: italic; color: var(--gold); }
.sub {
  color: var(--muted);
  font-size: .97rem;
  line-height: 1.75;
  max-width: 500px;
}

/* gold line divider */
.gold-line { width: 48px; height: 2px; background: var(--gold); margin: 16px 0 24px; }
.gold-line.center { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: #000;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: .9rem;
  padding: 14px 28px; border-radius: 6px; border: none; cursor: pointer;
  letter-spacing: .3px;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,.3); color: #000; }
.btn-outline-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--gold);
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: .9rem;
  padding: 13px 28px; border-radius: 6px;
  border: 1.5px solid var(--gold-bd);
  cursor: pointer; letter-spacing: .3px;
  transition: background .2s, border-color .2s, transform .15s;
}
.btn-outline-gold:hover { background: var(--gold-lt); border-color: var(--gold); transform: translateY(-2px); color: var(--gold); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 80px 5% 60px;
  text-align: center;
}
.page-hero .h2 { font-size: clamp(2.4rem, 5vw, 4rem); }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .8rem; color: var(--muted); margin-top: 16px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ── FOOTER ── */
footer.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 56px 5% 32px;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-logo { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.4rem; color: #fff; margin-bottom: 14px; }
.footer-logo span { color: var(--gold); }
.footer-about { color: var(--muted); font-size: .88rem; line-height: 1.7; max-width: 260px; }
.footer-col h5 { font-family: 'Inter', sans-serif; font-weight: 700; font-size: .75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: var(--muted); font-size: .88rem; transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; color: var(--muted); font-size: .87rem; }
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: var(--muted); }
.footer-contact-item a:hover { color: #fff; }
.footer-bottom { max-width: 1200px; margin: 40px auto 0; padding-top: 24px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; font-size: .78rem; color: var(--muted); flex-wrap: wrap; gap: 8px; }

/* ── MOBILE FAB ── */
.fab-book { position: fixed; bottom: 20px; right: 20px; background: var(--gold); color: #000; font-family: 'Inter', sans-serif; font-weight: 700; font-size: .88rem; border-radius: 50px; padding: 13px 20px; display: none; align-items: center; gap: 8px; z-index: 90; box-shadow: 0 4px 24px rgba(201,168,76,.4); transition: transform .15s; }
.fab-book:hover { transform: scale(1.04); color: #000; }
@media(max-width:768px) { .fab-book { display: flex; } }

/* ── RESPONSIVE FOOTER ── */
@media(max-width:900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media(max-width:540px) { .footer-grid { grid-template-columns: 1fr; } .section { padding: 72px 5%; } }

/* ── FORM SHARED ── */
.fld { margin-bottom: 16px; }
.fld label { display: block; font-size: .75rem; font-weight: 600; color: var(--muted); margin-bottom: 7px; text-transform: uppercase; letter-spacing: .4px; }
.fld input, .fld textarea, .fld select {
  width: 100%; background: var(--bg3); border: 1px solid var(--border);
  border-radius: 8px; padding: 13px 16px;
  color: var(--text); font-family: 'Inter', sans-serif; font-size: .9rem;
  outline: none; transition: border-color .2s; appearance: none;
}
.fld input:focus, .fld textarea:focus, .fld select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.1); }
.fld input::placeholder, .fld textarea::placeholder { color: rgba(122,112,101,.5); }
.fld select option { background: var(--bg3); }
.fld textarea { resize: vertical; min-height: 110px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:520px) { .frow { grid-template-columns: 1fr; } }
.btn-submit { width: 100%; background: var(--gold); color: #000; font-family: 'Inter', sans-serif; font-weight: 700; font-size: .95rem; padding: 15px; border-radius: 8px; border: none; cursor: pointer; letter-spacing: .3px; transition: background .2s, transform .15s, box-shadow .2s; }
.btn-submit:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.3); }
.form-ok { display: none; background: rgba(201,168,76,.1); border: 1px solid var(--gold-bd); border-radius: 8px; padding: 18px; color: var(--gold); font-weight: 600; text-align: center; margin-top: 14px; }

/* ── REVIEW CARD SHARED ── */
.rc { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px 24px; height: 100%; transition: border-color .25s, transform .2s; }
.rc:hover { border-color: var(--gold-bd); transform: translateY(-3px); }
.rc-stars { color: var(--gold); font-size: .95rem; letter-spacing: 2px; margin-bottom: 14px; }
.rc blockquote { font-size: .92rem; color: #c0b8b0; line-height: 1.7; font-style: italic; border: none; padding: 0; margin-bottom: 18px; }
.rc-reviewer { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--border); }
.rc-av { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold2)); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .8rem; color: #000; flex-shrink: 0; font-family: 'Inter', sans-serif; }
.rc-name { font-family: 'Inter', sans-serif; font-weight: 700; font-size: .85rem; color: #fff; }
.rc-loc { font-size: .75rem; color: var(--muted); }

.swiper-pagination-bullet { background: var(--muted); opacity: 1; width: 6px; height: 6px; }
.swiper-pagination-bullet-active { background: var(--gold); width: 20px; border-radius: 3px; }
