/* ==========================================================================
   Vergaderen in het Bos — stylesheet
   Kleuren: diep bosgroen, warm zand, houttinten; één accentkleur voor CTA's.
   ========================================================================== */

/* ----- Fonts (self-hosted, variabel) ----- */
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/fraunces-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/source-sans-3-latin.woff2") format("woff2");
}

/* ----- Design tokens ----- */
:root {
  --groen-diep: #22382a;
  --groen: #2f4d38;
  --groen-licht: #e4ebe2;
  --zand: #f5f0e6;
  --zand-donker: #ece4d4;
  --hout: #8a6748;
  --inkt: #262c23;
  --inkt-zacht: #55604f;
  --wit: #fdfcf9;
  --accent: #c1662f;
  --accent-donker: #a5541f;
  --fout: #a83232;
  --radius: 10px;
  --schaduw: 0 10px 30px rgb(34 56 42 / 0.10);
  --kop-font: "Fraunces", Georgia, serif;
  --body-font: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
}

/* ----- Reset & basis ----- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 4.5rem;
}

body {
  margin: 0;
  font-family: var(--body-font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--inkt);
  background: var(--wit);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--kop-font);
  font-weight: 600;
  line-height: 1.15;
  color: var(--groen-diep);
  margin: 0 0 1rem;
  text-wrap: balance;
}

h1 { font-size: clamp(2.2rem, 6vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--groen); text-underline-offset: 2px; }
a:hover { color: var(--accent-donker); }

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

.container {
  width: min(100% - 2.5rem, 68rem);
  margin-inline: auto;
}
.container-smal { max-width: 46rem; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skiplink {
  position: absolute;
  top: -3rem;
  left: 1rem;
  z-index: 100;
  background: var(--groen-diep);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: top 0.15s ease;
}
.skiplink:focus { top: 0; color: #fff; }

/* ----- Knoppen ----- */
.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primair {
  background: var(--accent);
  color: #fff;
}
.btn-primair:hover { background: var(--accent-donker); color: #fff; }
.btn-ghost {
  border-color: rgb(255 255 255 / 0.75);
  color: #fff;
}
.btn-ghost:hover { background: rgb(255 255 255 / 0.14); color: #fff; }
.btn-groot { padding: 1rem 2.2rem; font-size: 1.1rem; }

/* ----- Header ----- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 0.6rem 0;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.site-header.vast {
  background: rgb(34 56 42 / 0.96);
  box-shadow: 0 2px 14px rgb(0 0 0 / 0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #fff;
  text-decoration: none;
  font-family: var(--kop-font);
  font-size: 1.15rem;
  font-weight: 600;
}
.brand:hover { color: #fff; }
.brand-icon { width: 1.6rem; height: 1.6rem; flex: none; }
.brand-name em { font-style: italic; font-weight: 400; opacity: 0.85; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem; height: 2.75rem;
  background: none;
  border: 2px solid rgb(255 255 255 / 0.6);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 1.25rem; height: 2px;
  background: #fff;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
  content: "";
}
.nav-toggle-bar::before { position: absolute; top: -6px; }
.nav-toggle-bar::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after { transform: translateY(-6px) rotate(-45deg); }

.nav-list {
  list-style: none;
  margin: 0;
  padding: 1rem 1.25rem 1.25rem;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: rgb(34 56 42 / 0.98);
  display: none;
  flex-direction: column;
  gap: 0.25rem;
}
.nav-list.open { display: flex; }
.nav-list a {
  display: block;
  padding: 0.55rem 0.5rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
}
.nav-list a:hover { background: rgb(255 255 255 / 0.12); color: #fff; }
.nav-cta {
  background: var(--accent);
  text-align: center;
  margin-top: 0.5rem;
}
.nav-list a.nav-cta:hover { background: var(--accent-donker); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav-list {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: none;
    padding: 0;
    gap: 0.1rem;
  }
  .nav-list a { padding: 0.45rem 0.7rem; font-weight: 400; font-size: 0.98rem; }
  .nav-cta { margin: 0 0 0 0.5rem; padding-inline: 1.1rem; font-weight: 600; }
}

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  color: #fff;
  isolation: isolate;
}
.hero-media, .hero-media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgb(20 32 24 / 0.55) 0%, rgb(20 32 24 / 0.25) 45%, rgb(20 32 24 / 0.65) 100%);
}
.hero-content {
  padding: 7rem 0 4rem;
  max-width: 44rem;
}
.hero h1 { color: #fff; margin-bottom: 0.5rem; }
.hero-sub {
  font-family: var(--kop-font);
  font-style: italic;
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  margin-bottom: 1rem;
  color: rgb(255 255 255 / 0.92);
}
.hero-tekst {
  font-size: 1.1rem;
  max-width: 36rem;
  color: rgb(255 255 255 / 0.9);
  margin-bottom: 1.75rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ----- USP-strip ----- */
.usps {
  background: var(--groen-diep);
  color: #fff;
  padding: 1.75rem 0;
}
.usp-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
}
.usp strong {
  display: block;
  font-family: var(--kop-font);
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}
.usp span { color: rgb(255 255 255 / 0.75); font-size: 0.95rem; }

/* ----- Secties algemeen ----- */
.sectie { padding: 4.5rem 0; }
.sectie-getint { background: var(--zand); }
.sectie-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--hout);
  margin-bottom: 0.5rem;
}
.sectie-label-licht { color: rgb(255 255 255 / 0.65); }
.sectie-intro {
  max-width: 44rem;
  margin-bottom: 2.5rem;
}
.sectie-intro-kort { max-width: 40rem; margin-bottom: 2rem; color: var(--inkt-zacht); }

/* Subtiele scroll-reveal (uit bij reduced motion) */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.zichtbaar { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ----- Foto-grid ----- */
.foto-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr;
}
.foto {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--schaduw);
}
.foto img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 700px) {
  .foto-grid { grid-template-columns: repeat(3, 1fr); }
  .foto-breed { grid-column: span 2; }
  .foto img { aspect-ratio: 4 / 3; }
  .foto-vol { grid-column: 1 / -1; }
  .foto-vol img { aspect-ratio: 21 / 9; }
}

/* ----- Faciliteiten ----- */
.faciliteiten-grid {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
}
.faciliteiten-grid li {
  background: var(--wit);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem;
  box-shadow: var(--schaduw);
}
.fac-icoon {
  width: 2.1rem; height: 2.1rem;
  stroke: var(--groen);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 0.6rem;
}
.faciliteiten-grid strong {
  display: block;
  font-family: var(--kop-font);
  color: var(--groen-diep);
  margin-bottom: 0.2rem;
}
.faciliteiten-grid span { color: var(--inkt-zacht); font-size: 0.95rem; }

/* ----- Impact ----- */
.sectie-impact {
  background: var(--groen-diep);
  color: rgb(255 255 255 / 0.92);
}
.sectie-impact h2 { color: #fff; }
.sectie-impact a { color: #f0d9a8; }
.sectie-impact a:hover { color: #fff; }
.impact-inhoud {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 820px) {
  .impact-inhoud { grid-template-columns: 1.15fr 1fr; }
}
.impact-logo {
  display: inline-block;
  background: #fff;
  border-radius: var(--radius);
  padding: 0.8rem 1.1rem;
  margin-bottom: 1.5rem;
}
.impact-logo img { width: 200px; height: auto; }
.impact-logo:hover { box-shadow: 0 0 0 3px rgb(255 255 255 / 0.35); }

.impact-disclaimer {
  font-size: 0.85rem;
  color: rgb(255 255 255 / 0.6);
  margin-top: 1.25rem;
}

.impact-infographic {
  background: rgb(255 255 255 / 0.07);
  border: 1px solid rgb(255 255 255 / 0.15);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.ig-boeking .ig-bedrag {
  display: block;
  font-family: var(--kop-font);
  font-size: 1.6rem;
  color: #fff;
}
.ig-boeking .ig-sub { color: rgb(255 255 255 / 0.7); }
.ig-pijl {
  margin: 1rem 0;
  color: #f0d9a8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  font-weight: 600;
}
.ig-pijl svg { width: 1.75rem; height: 1.75rem; }
.ig-feestjes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
.ig-feest {
  background: rgb(255 255 255 / 0.09);
  border-radius: var(--radius);
  padding: 1rem 0.75rem;
}
.ig-feest svg { width: 2rem; height: 2rem; margin: 0 auto 0.4rem; color: #f0d9a8; display: block; }
.ig-feest strong { display: block; font-size: 0.95rem; color: #fff; }
.ig-feest span { color: rgb(255 255 255 / 0.7); font-size: 0.9rem; }

/* ----- Lunch ----- */
.lunch-inhoud { max-width: 46rem; }
.kleine-noot { font-size: 0.85rem; color: var(--inkt-zacht); }

/* ----- Kalender ----- */
.kalender-wrap { max-width: 30rem; }
.kalender {
  background: var(--wit);
  border-radius: var(--radius);
  box-shadow: var(--schaduw);
  padding: 1.25rem;
}
.kalender-kop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.kalender-titel { margin: 0; font-size: 1.15rem; }
.kalender-nav {
  width: 2.4rem; height: 2.4rem;
  border: 1px solid var(--zand-donker);
  background: var(--wit);
  border-radius: 8px;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--groen-diep);
  cursor: pointer;
}
.kalender-nav:hover:not(:disabled) { background: var(--zand); }
.kalender-nav:disabled { opacity: 0.35; cursor: default; }
.kalender-tabel {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.kalender-tabel th {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--inkt-zacht);
  padding: 0.3rem 0;
  text-transform: lowercase;
}
.kalender-tabel td { padding: 2px; text-align: center; }
.kal-dag {
  width: 100%;
  aspect-ratio: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 8px;
  background: var(--groen-licht);
  color: var(--groen-diep);
  font: inherit;
  font-size: 0.95rem;
  cursor: pointer;
}
.kal-dag:hover { background: var(--groen); color: #fff; }
.kal-dag.geselecteerd {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}
.kal-dag-bezet, .kal-dag-verleden {
  width: 100%;
  aspect-ratio: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.95rem;
}
.kal-dag-bezet {
  background: var(--zand-donker);
  color: var(--inkt-zacht);
  text-decoration: line-through;
}
.kal-dag-verleden { color: #b9b3a4; }
.kalender-legenda {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
  margin: 0.9rem 0 0;
  font-size: 0.85rem;
  color: var(--inkt-zacht);
}
.legenda-item { display: inline-flex; align-items: center; gap: 0.4rem; }
.legenda-blok {
  width: 0.9rem; height: 0.9rem;
  border-radius: 3px;
  display: inline-block;
}
.legenda-vrij { background: var(--groen-licht); }
.legenda-bezet { background: var(--zand-donker); }
.kalender-fallback {
  background: var(--groen-licht);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}

/* ----- Locatie ----- */
.locatie-inhoud {
  display: grid;
  gap: 2rem;
}
@media (min-width: 820px) {
  .locatie-inhoud { grid-template-columns: 1fr 1fr; align-items: start; }
}
#kaart {
  height: 20rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--schaduw);
  background: var(--groen-licht);
}
.kaart-noot { font-size: 0.85rem; color: var(--inkt-zacht); margin-top: 0.5rem; }

/* ----- Prijs ----- */
.prijs-kaart {
  max-width: 34rem;
  background: var(--wit);
  border-radius: var(--radius);
  box-shadow: var(--schaduw);
  padding: 2rem 1.75rem;
}
.prijs-kop {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.prijs-bedrag {
  font-family: var(--kop-font);
  font-size: 3rem;
  font-weight: 700;
  color: var(--groen-diep);
  line-height: 1;
}
.prijs-detail { color: var(--inkt-zacht); }
.prijs-lijst {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
}
.prijs-lijst li {
  padding: 0.45rem 0 0.45rem 1.75rem;
  position: relative;
  border-bottom: 1px solid var(--zand-donker);
}
.prijs-lijst li:last-child { border-bottom: none; }
.prijs-lijst li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.85rem;
  width: 0.95rem; height: 0.55rem;
  border-left: 2.5px solid var(--groen);
  border-bottom: 2.5px solid var(--groen);
  transform: rotate(-45deg);
}
.prijs-kaart .kleine-noot { margin-top: 1rem; }

/* ----- Formulier ----- */
.aanvraag-form {
  background: var(--zand);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
}
.form-rij {
  display: grid;
  gap: 0 1.25rem;
}
@media (min-width: 620px) {
  .form-rij { grid-template-columns: 1fr 1fr; }
}
.form-veld { margin-bottom: 1.1rem; }
.form-veld label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.form-veld input:not([type="checkbox"]),
.form-veld textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid var(--zand-donker);
  border-radius: 8px;
  background: var(--wit);
  font: inherit;
  color: var(--inkt);
}
.form-veld input:focus, .form-veld textarea:focus {
  outline: 3px solid var(--accent);
  outline-offset: 0;
  border-color: var(--accent);
}
.form-veld input.ongeldig, .form-veld textarea.ongeldig { border-color: var(--fout); }
.veld-hint {
  font-size: 0.88rem;
  margin: 0.35rem 0 0;
  color: var(--fout);
  font-weight: 600;
}
.veld-website {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.form-checkbox input {
  width: 1.2rem; height: 1.2rem;
  margin-top: 0.25rem;
  accent-color: var(--groen);
  flex: none;
}
.form-checkbox label { font-weight: 400; margin: 0; }
.form-fout {
  background: #f7e5e2;
  border: 1px solid var(--fout);
  color: var(--fout);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-weight: 600;
}
.form-succes {
  background: var(--groen-licht);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border: 1px solid var(--groen);
}
.form-succes h3 { margin-bottom: 0.4rem; }
button[disabled].btn { opacity: 0.6; cursor: wait; }

/* ----- FAQ ----- */
.faq-item {
  background: var(--wit);
  border-radius: var(--radius);
  box-shadow: var(--schaduw);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 1.05rem 3rem 1.05rem 1.25rem;
  font-weight: 600;
  font-family: var(--kop-font);
  font-size: 1.05rem;
  color: var(--groen-diep);
  list-style: none;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  width: 0.6rem; height: 0.6rem;
  border-right: 2px solid var(--hout);
  border-bottom: 2px solid var(--hout);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.faq-item p { padding: 0 1.25rem 1.1rem; color: var(--inkt-zacht); }

/* ----- Footer ----- */
.site-footer {
  background: var(--groen-diep);
  color: rgb(255 255 255 / 0.85);
  padding: 3.5rem 0 1.5rem;
}
.site-footer a { color: #f0d9a8; }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  margin-bottom: 2.5rem;
}
.footer-merk {
  font-family: var(--kop-font);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.footer-merk em { font-weight: 400; opacity: 0.85; }
.footer-kop {
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}
.footer-onder {
  border-top: 1px solid rgb(255 255 255 / 0.15);
  padding-top: 1.25rem;
  font-size: 0.9rem;
  color: rgb(255 255 255 / 0.6);
}

/* ----- Privacy-pagina ----- */
.pagina-inhoud { padding: 8rem 0 4rem; }
.pagina-inhoud h1 { margin-bottom: 2rem; }
.pagina-inhoud h2 { font-size: 1.4rem; margin-top: 2.25rem; }
