/* ============================================
   Lieven Hoste Fotografie — Gedeelde stijlen
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Jost:wght@300;400&display=swap');

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

/* Basis */
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: #2c2c2a;
  background: #faf9f7;
}

/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2.5rem;
  background: #faf9f7;
  border-bottom: 0.5px solid rgba(44,44,42,0.15);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2c2c2a;
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #888780;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: #2c2c2a; }

/* Hamburger (mobiel) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: #2c2c2a;
  transition: all 0.3s;
}

/* ---- FOOTER ---- */
.footer {
  padding: 2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 0.5px solid rgba(44,44,42,0.15);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #888780;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer a { color: #888780; text-decoration: none; }
.footer a:hover { color: #2c2c2a; }

/* ---- KNOPPEN ---- */
.btn {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.7rem 1.9rem;
  border: 0.5px solid;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.btn-light {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
  background: transparent;
}
.btn-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}
.btn-dark {
  border-color: rgba(44,44,42,0.35);
  color: #2c2c2a;
  background: transparent;
}
.btn-dark:hover { background: rgba(44,44,42,0.06); }

/* ---- SECTIES ---- */
.section-header {
  padding: 3.5rem 2.5rem 2rem;
  text-align: center;
}
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888780;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.25;
  color: #2c2c2a;
  margin-bottom: 1rem;
}
.section-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: #5f5e5a;
  max-width: 520px;
  margin: 0 auto;
}
.divider {
  width: 38px;
  height: 0.5px;
  background: rgba(44,44,42,0.25);
  margin: 1.5rem auto;
}

/* ---- LIGHTBOX ---- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20,18,15,0.95);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92%;
  max-height: 90vh;
  object-fit: contain;
}
.lb-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 20px;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.1em;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.lb-close:hover { color: #fff; }
.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 32px;
  cursor: pointer;
  padding: 0.5rem 1.25rem;
  transition: color 0.2s;
}
.lb-prev:hover, .lb-next:hover { color: #fff; }
.lb-prev { left: 0.5rem; }
.lb-next { right: 0.5rem; }
.lb-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ---- RESPONSIEF ---- */
@media (max-width: 768px) {
  .nav { padding: 0.9rem 1.25rem; }
  .nav-links { display: none; flex-direction: column; gap: 1.25rem; position: absolute; top: 100%; left: 0; right: 0; background: #faf9f7; padding: 1.5rem 1.25rem; border-bottom: 0.5px solid rgba(44,44,42,0.15); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .section-header { padding: 2.5rem 1.25rem 1.5rem; }
  .section-title { font-size: 26px; }
  .footer { flex-direction: column; align-items: flex-start; padding: 1.5rem 1.25rem; }
}
