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

:root {
  --groen: #2d5a27;
  --groen-licht: #4a7c3f;
  --groen-donker: #1a3a16;
  --beige: #f5f0e8;
  --beige-donker: #e8e0d0;
  --bruin: #8b6914;
  --wit: #fdfbf7;
  --tekst: #1a1a1a;
  --tekst-zacht: #3d3d3d;
  --accent: #c8552a;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  color: var(--tekst);
  background: var(--wit);
  line-height: 1.7;
}

/* ── NAVIGATIE ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253, 251, 247, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(45, 90, 39, 0.12);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  transition: box-shadow 0.3s;
}

nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.2;
}

.nav-logo span:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--groen-donker);
  font-weight: 600;
}

.nav-logo span:last-child {
  font-size: 0.7rem;
  color: #2a2a2a;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #2a2a2a;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover, .nav-links a.actief {
  color: var(--groen);
  background: rgba(45, 90, 39, 0.07);
}

.nav-boek {
  background: var(--groen) !important;
  color: white !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: 4px !important;
  font-weight: 400 !important;
  letter-spacing: 0.06em;
  transition: background 0.2s !important;
}

.nav-boek:hover { background: var(--groen-licht) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--groen-donker);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── PAGINAKOP ── */
.page-top { padding-top: 70px; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(20, 45, 15, 0.55) 0%, rgba(20, 45, 15, 0.35) 50%, rgba(20, 45, 15, 0.65) 100%),
    url('fotos/IMG_7157.jpg') center/cover no-repeat;
}

.hero-inhoud {
  position: relative;
  text-align: center;
  color: white;
  padding: 2rem;
  max-width: 680px;
  animation: opkomen 1s ease-out;
}

@keyframes opkomen {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.hero h1 em {
  font-style: italic;
  color: #d4e8c2;
}

.hero p {
  font-size: 1.05rem;
  font-weight: 300;
  opacity: 0.9;
  margin-bottom: 2.2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.knop-rij {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.knop {
  display: inline-block;
  text-decoration: none;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  transition: all 0.2s;
  font-weight: 400;
}

.knop-primair {
  background: var(--groen);
  color: white;
  border: 2px solid var(--groen);
}

.knop-primair:hover { background: var(--groen-licht); border-color: var(--groen-licht); }

.knop-secundair {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.6);
}

.knop-secundair:hover { background: rgba(255,255,255,0.15); border-color: white; }

.knop-donker {
  background: var(--groen);
  color: white;
  border: 2px solid var(--groen);
}

.knop-donker:hover { background: var(--groen-licht); }

.knop-lijn {
  background: transparent;
  color: var(--groen);
  border: 2px solid var(--groen);
}

.knop-lijn:hover { background: var(--groen); color: white; }

.scroll-pijl {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  text-decoration: none;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── SECTIES ── */
section { padding: 5rem 2rem; }

.sectie-smal { max-width: 760px; margin: 0 auto; }
.sectie-breed { max-width: 1100px; margin: 0 auto; }

.sectie-label {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--groen);
  margin-bottom: 0.75rem;
  display: block;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--groen-donker);
  margin-bottom: 1.2rem;
}

h2 em { font-style: italic; color: var(--groen-licht); }

h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--groen-donker);
  margin-bottom: 0.6rem;
}

p { margin-bottom: 1rem; color: var(--tekst-zacht); }
p:last-child { margin-bottom: 0; }

/* ── BEIGE SECTIE ── */
.bg-beige { background: var(--beige); }
.bg-groen { background: var(--groen-donker); color: white; }
.bg-groen h2 { color: #d4e8c2; }
.bg-groen p { color: rgba(255,255,255,0.75); }

/* ── TWEEKOLOM ── */
.tweekolom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tweekolom.omgekeerd > *:first-child { order: 2; }
.tweekolom.omgekeerd > *:last-child { order: 1; }

/* ── FOTO ── */
.foto-kader {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}

.foto-kader img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.foto-kader:hover img { transform: scale(1.03); }

/* ── ICON KAARTEN ── */
.kaart-rij {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.kaart {
  background: white;
  border-radius: 6px;
  padding: 2rem 1.75rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.kaart:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(0,0,0,0.1); }

.kaart-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.kaart h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.kaart p { font-size: 0.92rem; }

/* ── GALERIJ ── */
.galerij {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}

.galerij img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.3s;
}

.galerij img:hover { opacity: 0.9; transform: scale(1.01); }

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-sluit {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-sluit:hover { opacity: 1; }

/* ── QUOTE SECTIE ── */
.quote-blok {
  border-left: 3px solid var(--groen);
  padding: 1.5rem 2rem;
  background: rgba(45, 90, 39, 0.05);
  border-radius: 0 6px 6px 0;
  margin: 2rem 0;
}

.quote-blok p {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--groen-donker);
}

/* ── BEOORDELINGEN ── */
.sterren-rij {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.ster-kaart {
  background: white;
  padding: 1.75rem;
  border-radius: 6px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.sterren { color: #e8a020; font-size: 0.95rem; margin-bottom: 0.75rem; }
.ster-kaart p { font-size: 0.93rem; font-style: italic; color: var(--tekst); margin-bottom: 0.75rem; }
.ster-naam { font-size: 0.8rem; color: var(--tekst-zacht); font-weight: 700; font-style: normal; }

/* ── PRIJS BANNER ── */
.prijs-banner {
  text-align: center;
  padding: 4.5rem 2rem;
  background: var(--groen-donker);
  color: white;
}

.prijs-banner h2 { color: #d4e8c2; margin-bottom: 0.75rem; }
.prijs-banner p { color: rgba(255,255,255,0.75); margin-bottom: 0.5rem; }
.prijs-groot { font-size: 2rem; font-family: 'Playfair Display', serif; color: white !important; margin: 0.5rem 0 1.5rem; }

/* ── LIJSTEN ── */
.link-lijst {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.link-lijst a {
  text-decoration: none;
  color: var(--groen);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(45,90,39,0.1);
  transition: color 0.2s, padding-left 0.2s;
}

.link-lijst a::before { content: '→'; font-size: 0.8rem; }
.link-lijst a:hover { color: var(--groen-donker); padding-left: 0.3rem; }

/* ── OMGEVING SECTIES ── */
.omgeving-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.omgeving-blok h3 { margin-bottom: 1rem; font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase; font-family: 'Lato', sans-serif; font-weight: 700; color: var(--groen); }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info p { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.95rem; }
.contact-info p span:first-child { font-size: 1.1rem; margin-top: 0.1rem; }

.contact-info a {
  color: var(--groen);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info a:hover { color: var(--groen-donker); }

.formulier { display: flex; flex-direction: column; gap: 1rem; }

.formulier input,
.formulier textarea,
.formulier select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--beige-donker);
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 0.92rem;
  background: white;
  color: var(--tekst);
  transition: border-color 0.2s;
  outline: none;
}

.formulier input:focus,
.formulier textarea:focus {
  border-color: var(--groen);
}

.formulier textarea { resize: vertical; min-height: 130px; }

.formulier button {
  background: var(--groen);
  color: white;
  border: none;
  padding: 0.85rem 2rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s;
  align-self: flex-start;
}

.formulier button:hover { background: var(--groen-licht); }

/* ── KAART ── */
.kaart-embed {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  margin-top: 2rem;
}

.kaart-embed iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: none;
}

/* ── PAGINATITEL ── */
.paginatitel {
  padding: 7rem 2rem 3rem;
  background: linear-gradient(135deg, var(--groen-donker), var(--groen));
  color: white;
  text-align: center;
}

.paginatitel h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: white;
}

.paginatitel p { font-weight: 400;
  color: rgba(255,255,255,0.75);
  margin-top: 0.5rem;
  font-size: 1rem;
}

/* ── FOOTER ── */
footer {
  background: var(--groen-donker);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 2rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-merk { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: white; margin-bottom: 0.75rem; }
.footer-sub { font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.footer-tekst { font-size: 0.88rem; margin-top: 1rem; line-height: 1.6; }

.footer-kop { font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: white; }

.footer-bodem {
  max-width: 1100px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.social-links { display: flex; gap: 1rem; }
.social-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.82rem; letter-spacing: 0.05em; transition: color 0.2s; }
.social-links a:hover { color: white; }

/* ── BEIGE DIVIDER ── */
.scheidingslijn {
  width: 50px;
  height: 2px;
  background: var(--groen);
  margin: 1.25rem 0 1.75rem;
}

/* ── RESPONSIEF ── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--wit); padding: 1rem 2rem 1.5rem; border-bottom: 1px solid var(--beige-donker); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  .tweekolom { grid-template-columns: 1fr; gap: 2rem; }
  .tweekolom.omgekeerd > * { order: unset !important; }

  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

  section { padding: 3.5rem 1.5rem; }
}

/* ── LOGO NAVIGATIE ── */
.nav-logo-img {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img img {
  height: 44px;
  width: auto;
  display: block;
}

/* ── CONTRASTVERBETERINGEN ── */

/* Kaart-tekst donkerder */
.kaart p { color: #2a2a2a; }
.kaart h3 { color: #1a3a16; }

/* Sterren-kaart tekst donkerder */
.ster-kaart p { color: #1a1a1a; }
.ster-naam { color: #2a2a2a; }

/* Footer tekst beter leesbaar */
footer { color: rgba(255,255,255,0.88); }
.footer-tekst { color: rgba(255,255,255,0.82); }
.footer-links a { color: rgba(255,255,255,0.82); }
.footer-bodem { color: rgba(255,255,255,0.65); }

/* Omgeving linklijst donkerder */
.link-lijst a { color: #1e4a18; }

/* Paginatitel ondertitel */
.paginatitel p { color: rgba(255,255,255,0.92); }

/* Sectielabel op beige achtergrond beter leesbaar */
.bg-beige .sectie-label { color: #1e4a18; font-weight: 700; }

/* Quote blok tekst */
.quote-blok p { color: #1a3a16; font-weight: 400; }

/* Prijs-banner subtekst */
.prijs-banner p { color: rgba(255,255,255,0.88); }
