/* ═══════════════════════════════════════════════════════════
   shared.css — Stefan Desaeyere Fotografie
   Tokens, reset, header, nav overlay, utilities, footer.
   Geldt voor: aanbod, klantenreis, locatiegids en aanverwante
   pagina's. index.html heeft eigen header / footer CSS.
   ═══════════════════════════════════════════════════════════ */

/* ─── TOKENS ───────────────────────────────────────────────── */
:root {
  --ivory:    #F7F3EE;
  --ivory-2:  #F0EBE3;
  --ink:      #19150F;
  --ink-2:    #2A2319;
  --gold:     #B8965A;
  --gold-pale:#D4B47A;
  --muted:    #7A6F62;
  --border:   rgba(184,150,90,.2);
  --font-d:   'Cormorant Garamond', Georgia, serif;
  --font-sc:  'Raleway', sans-serif;
  --max-w:    1260px;   /* override per page if needed */
  --pad-h:    5%;
}

/* ─── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 18px; scroll-behavior: smooth; scroll-padding-top: 5rem; }
body { font-family: var(--font-sc); background: var(--ivory); color: var(--ink); overflow-x: hidden; font-weight: 300; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ─── HEADER (altijd zichtbaar — niet homepage) ─────────────── */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 1.3rem var(--pad-h);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(247,243,238,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(184,150,90,.15);
  transition: padding .35s;
}
.site-header.scrolled { padding: .85rem var(--pad-h); }
.header-logo { line-height: 0; }
.logo-svg { display: block; height: 60px; width: 117px; transition: height .3s, width .3s; }
.nav-hamburger {
  display: flex; flex-direction: column; gap: 7px;
  cursor: pointer; background: none; border: none; padding: 6px; z-index: 10;
}
.nav-hamburger span {
  display: block; width: 26px; height: 1px;
  background: var(--ink); transition: background .3s;
}

/* ─── NAV OVERLAY ───────────────────────────────────────────── */
.nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 1050;
  background: var(--ink);
  flex-direction: column; align-items: center; justify-content: center;
}
.nav-overlay.open { display: flex; }
.nav-overlay nav {
  width: 100%; max-width: 320px;
  display: flex; flex-direction: column; align-items: center;
}
.nav-overlay nav a {
  font-family: var(--font-sc); font-size: .72rem; font-weight: 300;
  letter-spacing: .32em; text-transform: uppercase;
  color: rgba(247,243,238,.5);
  padding: .95rem 0; width: 100%; text-align: center;
  border-bottom: 1px solid rgba(184,150,90,.1);
  transition: color .25s;
}
.nav-overlay nav a:first-child { border-top: 1px solid rgba(184,150,90,.1); }
.nav-overlay nav a:hover { color: var(--gold); }
.nav-close-btn {
  position: absolute; top: 1.8rem; right: 2.2rem;
  background: none; border: 1px solid rgba(184,150,90,.25);
  color: rgba(247,243,238,.4);
  font-family: var(--font-sc); font-size: .6rem; font-weight: 300;
  letter-spacing: .22em; text-transform: uppercase;
  padding: .4rem .9rem; cursor: pointer;
  transition: color .2s, border-color .2s;
}
.nav-close-btn:hover { color: var(--gold); border-color: var(--gold); }

/* ─── UTILITIES ─────────────────────────────────────────────── */
.label {
  display: block;
  font-family: var(--font-sc); font-size: .58rem; font-weight: 400;
  letter-spacing: .28em; text-transform: uppercase; color: var(--gold);
}
.btn {
  display: inline-block; padding: .8rem 2.4rem;
  font-family: var(--font-sc); font-size: .6rem; font-weight: 400;
  letter-spacing: .3em; text-transform: uppercase;
  border: 1px solid var(--ink); color: var(--ink);
  background: transparent; cursor: pointer;
  transition: background .25s, color .25s;
}
.btn:hover { background: var(--ink); color: var(--ivory); }
.btn-gold { border-color: var(--gold); color: var(--gold); }
.btn-gold:hover { background: var(--gold); color: var(--ivory); }
.btn-primary { background: var(--gold); color: var(--ivory); border-color: var(--gold); }
.btn-primary:hover { background: #a07a42; border-color: #a07a42; }
.btn-ivory { border-color: rgba(247,243,238,.3); color: rgba(247,243,238,.7); }
.btn-ivory:hover { background: rgba(247,243,238,.08); border-color: rgba(247,243,238,.6); color: var(--ivory); }
.cta-btn-group { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ─── PAGE TITLE BAR ────────────────────────────────────────── */
.page-title-bar {
  padding: calc(80px + 5vmax) var(--pad-h) 5vmax;
  background: var(--ink-2); text-align: center;
}
.page-title-bar .label { margin-bottom: 1rem; color: var(--gold-pale); }
.page-title-bar h1 {
  font-family: var(--font-d); font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 300; color: var(--ivory); line-height: 1.15; margin-bottom: 1rem;
}
.page-title-bar h1 em { font-style: italic; color: var(--gold); }
.page-title-bar > p {
  font-family: var(--font-sc); font-size: .72rem; font-weight: 300;
  color: rgba(247,243,238,.5); line-height: 1.85; max-width: 540px; margin: 0 auto 2rem;
}
.title-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 2.5rem; margin-top: 2.5rem; }
.stat { text-align: center; }
.stat-num { font-family: var(--font-d); font-size: 2.4rem; font-weight: 300; color: var(--gold); display: block; }
.stat-label { font-family: var(--font-sc); font-size: .55rem; font-weight: 400; letter-spacing: .2em; text-transform: uppercase; color: rgba(247,243,238,.4); }

/* ─── FOOTER ────────────────────────────────────────────────── */
.site-footer { background: var(--ink); padding: 8vmax var(--pad-h) 5vmax; }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
@media(max-width: 700px) { .footer-inner { grid-template-columns: 1fr; gap: 3rem; } }
.footer-info .label { color: var(--gold); margin-bottom: 2.5rem; }
.footer-info h6 {
  font-family: var(--font-d); font-size: 1.1rem; font-weight: 300;
  color: var(--ivory); margin-bottom: 1.2rem;
}
.footer-info h6 a { color: var(--gold); transition: opacity .2s; }
.footer-info h6 a:hover { opacity: .75; }
.footer-info p {
  font-family: var(--font-sc); font-size: .65rem; font-weight: 300;
  color: rgba(247,243,238,.4); line-height: 1.9; margin-bottom: .8rem;
}
.footer-info p a { color: var(--gold-pale); transition: opacity .2s; }
.footer-info p a:hover { opacity: .75; }
.footer-link { transition: color .2s; }
.footer-link:hover { color: var(--gold); }
.footer-logo-wrap { margin-top: 3rem; }
.footer-logo { height: 62px; width: auto; opacity: .6; transition: opacity .25s; }
.footer-logo:hover { opacity: 1; }
.newsletter-wrap h4 {
  font-family: var(--font-d); font-size: 1.4rem; font-weight: 300;
  color: var(--ivory); margin-bottom: .5rem;
}
.newsletter-wrap > p {
  font-family: var(--font-sc); font-size: .65rem; font-weight: 300;
  color: rgba(247,243,238,.35); margin-bottom: 1.5rem;
}
.newsletter-wrap form label {
  display: block; font-family: var(--font-sc); font-size: .58rem;
  font-weight: 400; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(247,243,238,.4); margin-bottom: .4rem;
}
.newsletter-wrap form input[type=text],
.newsletter-wrap form input[type=email] {
  display: block; width: 100%;
  background: rgba(247,243,238,.06); border: 1px solid rgba(184,150,90,.2);
  color: var(--ivory); font-family: var(--font-sc); font-size: .72rem; font-weight: 300;
  padding: .7rem 1rem; margin-bottom: 1.2rem; outline: none;
  transition: border-color .2s;
}
.newsletter-wrap form input:focus { border-color: var(--gold); }
.small-note {
  font-family: var(--font-sc); font-size: .58rem; font-weight: 300;
  color: rgba(247,243,238,.25); line-height: 1.7; margin-bottom: 1rem;
}
.newsletter-wrap form button {
  background: var(--gold); color: var(--ivory); border: none;
  font-family: var(--font-sc); font-size: .58rem; font-weight: 400;
  letter-spacing: .25em; text-transform: uppercase;
  padding: .8rem 2.2rem; cursor: pointer; transition: background .25s;
}
.newsletter-wrap form button:hover { background: #a07a42; }
.footer-nav { background: var(--ink); border-top: 1px solid rgba(184,150,90,.1); padding: 2.2vmax var(--pad-h); }
.footer-nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.footer-nav-links { display: flex; flex-wrap: wrap; gap: 2.2rem; }
.footer-nav-links a {
  font-family: var(--font-sc); font-size: .58rem; font-weight: 300;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(247,243,238,.35); transition: color .2s;
}
.footer-nav-links a:hover { color: var(--gold); }
.footer-copy { font-family: var(--font-sc); font-size: .55rem; color: rgba(247,243,238,.2); }
