/* ═══════════════════════════════════════════════
   B&B de Kippenkuijl — bnbdekippenkuijl.nl
   Palet & typografie afgeleid van het logo:
   crème papier, olijfgroen, inktzwart, terracotta
   ═══════════════════════════════════════════════ */

:root {
  --papier: #f6f2e8;
  --papier-diep: #efe9da;
  --inkt: #2b2a23;
  --olijf: #5a6132;
  --salie: #8b8f68;
  --terracotta: #be6e4b;
  --lijn: #d8d0bc;

  --serif: "Cormorant Garamond", Georgia, serif;
  --script: "Caveat", cursive;
  --label: "Jost", "Helvetica Neue", sans-serif;

  --maat: 1120px;
  --maat-tekst: 62ch;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--papier);
  color: var(--inkt);
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--olijf); text-decoration-color: var(--salie); text-underline-offset: 3px; }
a:hover { color: var(--terracotta); }

:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ─── Topbar ─── */

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem clamp(1.2rem, 4vw, 3rem);
  background: color-mix(in srgb, var(--papier) 92%, transparent);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--lijn);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  text-decoration: none;
  color: var(--inkt);
}
.brand:hover { color: var(--inkt); }

.brand-de {
  font-family: var(--script);
  font-size: 1.5rem;
  color: var(--olijf);
  line-height: 1;
}

.brand-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.45rem;
  letter-spacing: 0.02em;
}

.topnav {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2.5vw, 1.8rem);
  font-family: var(--label);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.topnav a {
  color: var(--inkt);
  text-decoration: none;
  padding: 0.2rem 0;
  border-bottom: 1px solid transparent;
}
.topnav a:hover { color: var(--terracotta); border-bottom-color: var(--terracotta); }

.nav-cta {
  border: 1px solid var(--olijf);
  border-radius: 999px;
  padding: 0.45rem 1.1rem !important;
  color: var(--olijf) !important;
}
.nav-cta:hover {
  background: var(--olijf);
  color: var(--papier) !important;
  border-bottom-color: var(--olijf) !important;
}

/* ─── Hero ─── */

.hero {
  max-width: var(--maat);
  margin: 0 auto;
  padding: clamp(2.5rem, 7vh, 5rem) 1.5rem 1rem;
  text-align: center;
}

.hero-logo {
  width: min(440px, 78vw);
  height: auto;
  margin: 0 auto;
  /* zachte overgang van fotorand naar papier */
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--lijn), 0 24px 60px -30px rgba(43, 42, 35, 0.35);
  animation: verschijn 1.2s ease-out both;
}

.hero-script {
  font-family: var(--script);
  font-size: clamp(1.9rem, 4.5vw, 2.7rem);
  color: var(--olijf);
  margin-top: 2.2rem;
  animation: verschijn 1.2s ease-out 0.25s both;
}

.hero-sub {
  max-width: 46ch;
  margin: 0.9rem auto 0;
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--inkt) 82%, var(--papier));
  animation: verschijn 1.2s ease-out 0.4s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2.2rem;
  animation: verschijn 1.2s ease-out 0.55s both;
}

@keyframes verschijn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

.btn {
  font-family: var(--label);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.85rem 1.9rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-solid {
  background: var(--olijf);
  color: var(--papier);
  border: 1px solid var(--olijf);
}
.btn-solid:hover { background: var(--terracotta); border-color: var(--terracotta); color: var(--papier); }

.btn-line {
  border: 1px solid var(--inkt);
  color: var(--inkt);
}
.btn-line:hover { border-color: var(--terracotta); color: var(--terracotta); }

/* ─── Dividers ─── */

.divider {
  display: flex;
  justify-content: center;
  padding: clamp(2rem, 5vh, 3.5rem) 0;
  color: var(--salie);
}

.divider-heart { stroke: var(--terracotta); }

/* ─── Secties ─── */

.section {
  max-width: var(--maat);
  margin: 0 auto;
  padding: clamp(3rem, 7vh, 5rem) clamp(1.3rem, 4vw, 3rem);
}

.section-tint {
  max-width: none;
  background: var(--papier-diep);
  border-top: 1px solid var(--lijn);
  border-bottom: 1px solid var(--lijn);
}
.section-tint > * { max-width: var(--maat); margin-left: auto; margin-right: auto; }

.eyebrow {
  font-family: var(--label);
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}

h1, h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.1rem, 4.5vw, 3.1rem);
  line-height: 1.15;
  max-width: 24ch;
  margin-bottom: 1.6rem;
}

h1 em { font-style: italic; color: var(--olijf); }

h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}

/* ─── Welkom ─── */

.welkom-tekst {
  max-width: var(--maat-tekst);
  display: grid;
  gap: 1.1rem;
}

.handtekening {
  font-family: var(--script);
  font-size: 1.8rem;
  color: var(--terracotta);
  margin-top: 1.6rem;
}

/* ─── Kamers ─── */

.kamers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(1.2rem, 3vw, 2.4rem);
  margin-top: 1rem;
}

.kamer {
  background: var(--papier);
  border: 1px solid var(--lijn);
  border-radius: 6px;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: 0 18px 40px -32px rgba(43, 42, 35, 0.4);
}

.kamer-kop {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--lijn);
  padding-bottom: 0.8rem;
  margin-bottom: 1rem;
}

.kamer-kop h3 { margin-bottom: 0; }

.kamer-prijs {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--olijf);
  white-space: nowrap;
}
.kamer-prijs span {
  display: block;
  font-family: var(--label);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--salie);
  text-align: right;
}

.kamer-lijst {
  list-style: none;
  margin-top: 1rem;
  display: grid;
  gap: 0.45rem;
}

.kamer-lijst li {
  padding-left: 1.4rem;
  position: relative;
}
.kamer-lijst li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.7rem;
  height: 1px;
  background: var(--terracotta);
}

.kamers-noot {
  margin-top: 2rem;
  font-style: italic;
  color: color-mix(in srgb, var(--inkt) 75%, var(--papier-diep));
  max-width: var(--maat-tekst);
}

/* ─── Ontbijt ─── */

.ontbijt-kolommen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}

.ontbijt-lijst {
  list-style: none;
  display: grid;
  gap: 0.9rem;
  border-left: 1px solid var(--lijn);
  padding-left: clamp(1.2rem, 3vw, 2rem);
}

.lijst-titel {
  display: block;
  font-weight: 600;
  color: var(--olijf);
}

/* ─── De kippen ─── */

.section-olive {
  max-width: none;
  background: var(--olijf);
  color: var(--papier);
}
.section-olive > * { max-width: var(--maat); margin-left: auto; margin-right: auto; }

.section-olive h2 { color: var(--papier); }

.eyebrow-licht { color: var(--papier-diep); opacity: 0.85; }

.kippen-intro { max-width: var(--maat-tekst); }

.kippen-rij {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2.5vw, 2rem);
  margin-top: 2.2rem;
}

.kippen-rij li {
  flex: 1 1 150px;
  border-top: 1px solid color-mix(in srgb, var(--papier) 40%, transparent);
  padding-top: 0.9rem;
}

.kip-naam {
  display: block;
  font-family: var(--script);
  font-size: 1.9rem;
  line-height: 1.1;
}

.kip-rol {
  display: block;
  font-family: var(--label);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 0.3rem;
}

/* ─── Zwolle ─── */

.zwolle-kolommen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.afstanden {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: 2.4rem;
  border-top: 1px solid var(--lijn);
  padding-top: 1.6rem;
}

.afstand-tijd {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--terracotta);
  display: block;
  line-height: 1.1;
}

.afstand-wat {
  font-family: var(--label);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--salie);
}

/* ─── Contact ─── */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-bottom: 2.5rem;
}

.contact-regel { margin-top: 0.5rem; font-size: 1.3rem; }

.praktisch-lijst {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}
.praktisch-lijst li {
  padding-left: 1.4rem;
  position: relative;
}
.praktisch-lijst li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.7rem;
  height: 1px;
  background: var(--terracotta);
}

.kaart {
  border: 1px solid var(--lijn);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 18px 40px -32px rgba(43, 42, 35, 0.4);
}

.kaart iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: sepia(0.25) saturate(0.85);
}

/* ─── Footer ─── */

.footer {
  border-top: 1px solid var(--lijn);
  margin-top: clamp(2rem, 6vh, 4rem);
  padding: 3rem 1.5rem 2.5rem;
  text-align: center;
  color: var(--inkt);
}

.footer-skyline {
  width: min(720px, 92vw);
  height: auto;
  margin: 0 auto 2rem;
  color: var(--salie);
}

.footer-naam {
  font-size: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.45rem;
}
.footer-naam .brand-de { font-size: 1.9rem; }
.footer-naam .brand-name { font-size: 1.8rem; }

.footer-sub {
  font-family: var(--label);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-top: 0.5rem;
}

.footer-klein {
  font-family: var(--label);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--salie);
  margin-top: 1.8rem;
}

/* ─── Scroll-reveal ─── */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.zichtbaar {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-logo, .hero-script, .hero-sub, .hero-actions { animation: none; }
}

/* ─── Mobiel ─── */

@media (max-width: 720px) {
  .topbar { flex-direction: column; gap: 0.6rem; padding-bottom: 0.7rem; }
  .topnav { flex-wrap: wrap; justify-content: center; }
  body { font-size: 1.12rem; }
  .kaart iframe { height: 320px; }
}
