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

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

:root {
  --blauw:    #1294d4;
  --oranje:   #e0552a;
  --donker:   #2c2010;
  --subtiel:  #7a6a56;
  --licht:    #a08060;
  --rand:     #d4c4b0;
  --achter:   #f5f0e8;
  --kaart:    #fffcf8;
  --hero-bg:  #ece6da;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Playfair Display', Georgia, serif;
  background: var(--achter);
  color: var(--donker);
  line-height: 1.6;
  font-size: 16px;
}

/* ---- NAVIGATIE ---- */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--kaart);
  border-bottom: 1px solid var(--rand);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo { text-decoration: none; display: flex; align-items: center; gap: 0.75rem; }
.nav-logo-naam { font-family: 'Playfair Display', Georgia, serif; font-size: 1rem; font-weight: 400; color: var(--donker); }
.nav-logo-sub { font-family: 'Playfair Display', Georgia, serif; font-size: 0.6rem; letter-spacing: 0.14em; color: var(--oranje); text-transform: uppercase; font-style: italic; }
.nav-links { display: flex; list-style: none; gap: 0.1rem; align-items: center; }
.nav-links a { text-decoration: none; font-family: 'Playfair Display', Georgia, serif; font-size: 0.82rem; color: var(--subtiel); padding: 0.35rem 0.6rem; border-radius: 4px; transition: color 0.2s, background 0.2s; }
.nav-links a:hover { color: var(--donker); background: var(--hero-bg); }
.nav-links a.actief { color: var(--blauw); font-weight: 600; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--donker); transition: 0.3s; }

/* ---- PAGINA-HEADER met optionele actiefoto rechts ---- */
.pagina-header {
  background: var(--hero-bg);
  border-bottom: 1px solid var(--rand);
}
.pagina-header .container {
  padding-top: 2.25rem;
  padding-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.pagina-header-tekst { flex: 1; }
.pagina-header .container h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 400; color: var(--donker);
}
.pagina-header .container p {
  margin-top: 0.4rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem; font-style: italic; color: var(--subtiel);
}
.pagina-header-foto {
  width: 140px; height: 140px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(80,50,20,0.15);
}
.pagina-header-foto img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 500px) { .pagina-header-foto { width: 90px; height: 90px; } }

.sectie-label {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.65rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--licht);
  margin-bottom: 0.4rem; font-style: italic;
}

/* ---- CONTAINER ---- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

/* ---- FOTORASTER — portrait ---- */
.foto-raster {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem; padding: 2.5rem 0;
}
.foto-kaart {
  background: var(--kaart); border-radius: 8px; overflow: hidden;
  box-shadow: 0 1px 4px rgba(80,50,20,0.10), 0 0 0 1px rgba(180,140,90,0.15);
  transition: box-shadow 0.2s, transform 0.2s; cursor: pointer;
}
.foto-kaart:hover {
  box-shadow: 0 10px 28px rgba(80,50,20,0.18), 0 0 0 1px rgba(180,140,90,0.28);
  transform: translateY(-6px);
}
.foto-kaart img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; background: var(--hero-bg); }
.foto-kaart-info { padding: 0.8rem 1rem 0.9rem; }
.foto-kaart-titel { font-family: 'Playfair Display', Georgia, serif; font-size: 0.95rem; color: var(--donker); font-weight: 400; }
.foto-kaart-materiaal { font-family: 'Playfair Display', Georgia, serif; font-size: 0.78rem; font-style: italic; color: var(--subtiel); margin-top: 0.2rem; }
.foto-kaart-prijs { font-family: 'Playfair Display', Georgia, serif; font-size: 0.95rem; font-weight: 600; color: var(--blauw); margin-top: 0.45rem; }
.combo-badge { display: inline-block; font-family: 'Playfair Display', Georgia, serif; font-size: 0.68rem; font-style: italic; background: #eef7fd; color: var(--blauw); border: 1px solid #b8ddf5; border-radius: 3px; padding: 0.15rem 0.45rem; margin-top: 0.4rem; }

/* ---- LICHTBAK ---- */
.lichtbak { display: none; position: fixed; inset: 0; background: rgba(20,12,5,0.92); z-index: 1000; align-items: center; justify-content: center; padding: 1rem; }
.lichtbak.open { display: flex; }
.lichtbak img { max-width: min(90vw, 700px); max-height: 88vh; object-fit: contain; border-radius: 4px; }
.lichtbak-sluiten { position: absolute; top: 1.25rem; right: 1.5rem; color: rgba(255,255,255,0.8); font-size: 2rem; cursor: pointer; background: none; border: none; line-height: 1; }
.lichtbak-sluiten:hover { color: white; }
.lichtbak-ondertitel { position: absolute; bottom: 1.5rem; left: 0; right: 0; text-align: center; color: rgba(255,255,255,0.65); font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.9rem; }

/* ---- FOOTER ---- */
footer { margin-top: 4rem; border-top: 1px solid var(--rand); padding: 2rem; text-align: center; font-family: 'Playfair Display', Georgia, serif; font-size: 0.8rem; font-style: italic; color: var(--licht); }
footer a { color: var(--licht); text-decoration: none; }
footer a:hover { color: var(--blauw); }

/* ---- MOBIEL ---- */
@media (max-width: 640px) {
  .hamburger { display: flex; }
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--kaart); border-bottom: 1px solid var(--rand); flex-direction: column; padding: 1rem; gap: 0.1rem; }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 0.6rem 1rem; }
  .foto-raster { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
}
@media (prefers-reduced-motion: reduce) { .foto-kaart { transition: none; } }
