/* ────────────────────────────────────────────────────────────
   Landgoed Zèn — Stylesheet
   Palet: bosgroen · schors · room · zand
───────────────────────────────────────────────────────────── */

:root {
  --groen:      #2B4A1E;
  --groen-mid:  #3D6B2C;
  --groen-licht:#4A6741;
  --schors:     #8B7355;
  --room:       #F5F0E8;
  --room-donker:#EDE6D8;
  --zand:       #D4C5A9;
  --bruin:      #6B5D4F;
  --zwart:      #1A1A1A;
  --wit:        #FFFFFF;

  --font-kop:   'Playfair Display', Georgia, serif;
  --font-body:  'Inter', 'Helvetica Neue', Arial, sans-serif;

  --max-w:      1160px;
  --radius:     4px;
  --trans:      0.35s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--zwart);
  background: var(--room);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Typografie ── */
h1, h2, h3, h4 { font-family: var(--font-kop); line-height: 1.2; }
p { line-height: 1.75; }

/* ── Hulpklassen ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ════════════════════════════════════════════════════════════
   NAVIGATIE
════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--trans), padding var(--trans), box-shadow var(--trans);
}
.nav.scrolled {
  background: rgba(27, 39, 15, 0.96);
  backdrop-filter: blur(8px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  font-family: var(--font-kop);
  font-size: 1.4rem;
  color: var(--wit);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav__logo span { color: var(--zand); }
.nav__links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}
.nav__links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--trans);
}
.nav__links a:hover { color: var(--zand); }
.nav__cta {
  background: var(--schors);
  color: var(--wit) !important;
  padding: 9px 20px;
  border-radius: var(--radius);
  letter-spacing: 0.06em;
  transition: background var(--trans) !important;
}
.nav__cta:hover { background: var(--groen-mid) !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--wit);
  transition: var(--trans);
  transform-origin: center;
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--wit);
  text-align: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--groen);
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 8s ease-out;
}
.hero__bg.loaded { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 27, 9, 0.45) 0%,
    rgba(15, 27, 9, 0.25) 50%,
    rgba(15, 27, 9, 0.65) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 820px;
}
.hero__label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--zand);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
}
.hero__title {
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.9s 0.65s forwards;
}
.hero__title em { font-style: italic; color: var(--zand); }
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s forwards;
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 1.1s forwards;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2.5s 2s infinite;
}
.hero__scroll svg { opacity: 0.6; }

/* ════════════════════════════════════════════════════════════
   KNOPPEN
════════════════════════════════════════════════════════════ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--trans), color var(--trans), border-color var(--trans), transform 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--schors);
  color: var(--wit);
  border: 2px solid var(--schors);
}
.btn-primary:hover { background: var(--groen-mid); border-color: var(--groen-mid); }
.btn-outline {
  background: transparent;
  color: var(--wit);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { border-color: var(--wit); background: rgba(255,255,255,0.08); }
.btn-groen {
  background: var(--groen);
  color: var(--wit);
  border: 2px solid var(--groen);
}
.btn-groen:hover { background: var(--groen-mid); border-color: var(--groen-mid); }
.btn-schors-outline {
  background: transparent;
  color: var(--schors);
  border: 2px solid var(--schors);
}
.btn-schors-outline:hover { background: var(--schors); color: var(--wit); }

/* ════════════════════════════════════════════════════════════
   SECTIE ALGEMEEN
════════════════════════════════════════════════════════════ */
.sectie { padding: 96px 0; }
.sectie--room { background: var(--room); }
.sectie--wit  { background: var(--wit); }
.sectie--groen { background: var(--groen); color: var(--wit); }
.sectie--donker { background: #1C2E14; color: var(--wit); }

.sectie__kop {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.sectie__label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--schors);
  margin-bottom: 12px;
}
.sectie--groen  .sectie__label,
.sectie--donker .sectie__label { color: var(--zand); }
.sectie__titel {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 16px;
}
.sectie__intro {
  color: var(--bruin);
  font-size: 1.05rem;
}
.sectie--groen  .sectie__intro,
.sectie--donker .sectie__intro { color: rgba(255,255,255,0.75); }

/* ════════════════════════════════════════════════════════════
   KERNWAARDEN
════════════════════════════════════════════════════════════ */
.kernwaarden__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.kernwaarde {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid var(--zand);
  border-radius: var(--radius);
  background: var(--wit);
  transition: box-shadow var(--trans), transform var(--trans);
}
.kernwaarde:hover {
  box-shadow: 0 8px 32px rgba(43,74,30,0.12);
  transform: translateY(-4px);
}
.kernwaarde__icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  line-height: 1;
}
.kernwaarde__naam {
  font-family: var(--font-kop);
  font-size: 1.3rem;
  color: var(--groen);
  margin-bottom: 10px;
}
.kernwaarde__tekst { font-size: 0.92rem; color: var(--bruin); line-height: 1.6; }

/* ════════════════════════════════════════════════════════════
   SFEER STRIP (grote foto + tekst)
════════════════════════════════════════════════════════════ */
.sfeer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.sfeer--omgekeerd { direction: rtl; }
.sfeer--omgekeerd > * { direction: ltr; }
.sfeer__foto {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.sfeer__foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.sfeer__foto:hover img { transform: scale(1.04); }
.sfeer__tekst {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
}
.sfeer__tekst .sectie__label { text-align: left; }
.sfeer__tekst h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 20px; }
.sfeer__tekst p  { color: var(--bruin); margin-bottom: 16px; }
.sfeer__tekst .btn { margin-top: 16px; }

/* ════════════════════════════════════════════════════════════
   FACILITEITEN
════════════════════════════════════════════════════════════ */
.faciliteiten__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.faciliteit {
  background: var(--wit);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--zand);
  transition: box-shadow var(--trans), transform var(--trans);
}
.faciliteit:hover {
  box-shadow: 0 12px 40px rgba(43,74,30,0.12);
  transform: translateY(-3px);
}
.faciliteit__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.faciliteit__body { padding: 24px; }
.faciliteit__icon { font-size: 1.6rem; margin-bottom: 10px; }
.faciliteit__naam {
  font-family: var(--font-kop);
  font-size: 1.15rem;
  color: var(--groen);
  margin-bottom: 8px;
}
.faciliteit__tekst { font-size: 0.88rem; color: var(--bruin); line-height: 1.6; }

/* ════════════════════════════════════════════════════════════
   GALLERIJ
════════════════════════════════════════════════════════════ */
.gallerij {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 240px;
  gap: 8px;
}
.gallerij__item {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallerij__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallerij__item:hover img { transform: scale(1.06); }
.gallerij__item--groot { grid-column: span 6; grid-row: span 2; }
.gallerij__item--breed { grid-column: span 6; }
.gallerij__item--smal  { grid-column: span 4; }
.gallerij__item--mid   { grid-column: span 3; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); }
.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--wit);
  font-size: 2rem;
  line-height: 1;
  opacity: 0.7;
  transition: opacity var(--trans);
}
.lightbox__close:hover { opacity: 1; }

/* ════════════════════════════════════════════════════════════
   AANBOD
════════════════════════════════════════════════════════════ */
.aanbod__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.aanbod__kaart {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: background var(--trans), transform var(--trans);
}
.aanbod__kaart:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.aanbod__kaart--uitgelicht {
  background: rgba(255,255,255,0.12);
  border-color: var(--zand);
}
.aanbod__icon { font-size: 2.2rem; margin-bottom: 16px; }
.aanbod__naam {
  font-family: var(--font-kop);
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--wit);
}
.aanbod__prijs {
  font-size: 1.8rem;
  font-family: var(--font-kop);
  color: var(--zand);
  margin-bottom: 4px;
}
.aanbod__prijs-sub { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.aanbod__lijst {
  list-style: none;
  margin: 0 0 28px;
  text-align: left;
}
.aanbod__lijst li {
  padding: 6px 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  display: flex;
  gap: 8px;
}
.aanbod__lijst li::before { content: '✓'; color: var(--zand); flex-shrink: 0; }

/* ════════════════════════════════════════════════════════════
   CONTACTFORMULIER
════════════════════════════════════════════════════════════ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact__info h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 20px; }
.contact__info p  { color: var(--bruin); margin-bottom: 24px; }
.contact__detail  {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.92rem;
  color: var(--bruin);
}
.contact__detail-icon { font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }

.form { display: grid; gap: 20px; }
.form__rij { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__veld label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bruin);
  margin-bottom: 6px;
}
.form__veld input,
.form__veld textarea,
.form__veld select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--zand);
  border-radius: var(--radius);
  background: var(--wit);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--zwart);
  transition: border-color var(--trans), box-shadow var(--trans);
}
.form__veld input:focus,
.form__veld textarea:focus,
.form__veld select:focus {
  outline: none;
  border-color: var(--groen);
  box-shadow: 0 0 0 3px rgba(43,74,30,0.1);
}
.form__veld textarea { resize: vertical; min-height: 140px; }
.form__melding {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  display: none;
}
.form__melding--succes { background: #EAF4E5; color: #2B5219; border: 1px solid #B7D9A5; }
.form__melding--fout   { background: #FBE9E9; color: #8B1E1E; border: 1px solid #F5B8B8; }
.form__melding.zichtbaar { display: block; }

/* ════════════════════════════════════════════════════════════
   CIJFERSTRIP
════════════════════════════════════════════════════════════ */
.cijfers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
}
.cijfer {
  background: var(--groen);
  padding: 48px 32px;
  text-align: center;
}
.cijfer__getal {
  font-family: var(--font-kop);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--zand);
  display: block;
  margin-bottom: 8px;
}
.cijfer__label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.footer {
  background: #111B0A;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__logo {
  font-family: var(--font-kop);
  font-size: 1.5rem;
  color: var(--wit);
  margin-bottom: 12px;
}
.footer__logo span { color: var(--zand); }
.footer__tagline { font-size: 0.9rem; font-style: italic; margin-bottom: 20px; }
.footer__kolom h4 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--zand);
  margin-bottom: 16px;
}
.footer__kolom ul { list-style: none; }
.footer__kolom ul li { margin-bottom: 10px; }
.footer__kolom ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--trans);
}
.footer__kolom ul a:hover { color: var(--zand); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}
.footer__social {
  display: flex;
  gap: 16px;
}
.footer__social a {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  transition: color var(--trans);
}
.footer__social a:hover { color: var(--zand); }

/* ════════════════════════════════════════════════════════════
   INVESTEERDER BANNER
════════════════════════════════════════════════════════════ */
.investeerder-banner {
  background: var(--room-donker);
  border-top: 1px solid var(--zand);
  border-bottom: 1px solid var(--zand);
  padding: 24px 0;
  text-align: center;
}
.investeerder-banner p {
  font-size: 0.9rem;
  color: var(--bruin);
  margin-bottom: 12px;
}
.investeerder-banner a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--groen);
  border-bottom: 1px solid var(--groen);
  padding-bottom: 1px;
  transition: color var(--trans);
}
.investeerder-banner a:hover { color: var(--schors); border-color: var(--schors); }

/* ════════════════════════════════════════════════════════════
   ANIMATIES
════════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

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

/* ════════════════════════════════════════════════════════════
   RESPONSIEF
════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .kernwaarden__grid    { grid-template-columns: repeat(2, 1fr); }
  .faciliteiten__grid   { grid-template-columns: repeat(2, 1fr); }
  .sfeer                { grid-template-columns: 1fr; }
  .sfeer__foto          { min-height: 320px; }
  .sfeer__tekst         { padding: 48px 32px; }
  .aanbod__grid         { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .contact__grid        { grid-template-columns: 1fr; }
  .cijfers              { grid-template-columns: repeat(2, 1fr); }
  .footer__grid         { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .sectie { padding: 64px 0; }
  .nav__links    { display: none; }
  .nav__hamburger { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(27, 39, 15, 0.97);
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 99;
  }
  .nav__links.open a { font-size: 1.1rem; }
  .faciliteiten__grid  { grid-template-columns: 1fr; }
  .form__rij           { grid-template-columns: 1fr; }
  .gallerij            { grid-template-columns: repeat(6, 1fr); }
  .gallerij__item--groot { grid-column: span 6; }
  .gallerij__item--breed { grid-column: span 6; }
  .gallerij__item--smal  { grid-column: span 3; }
  .gallerij__item--mid   { grid-column: span 3; }
  .footer__grid        { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom      { flex-direction: column; gap: 12px; text-align: center; }
  .cijfers             { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .kernwaarden__grid  { grid-template-columns: 1fr; }
  .cijfers            { grid-template-columns: 1fr; }
}
