/* ============================================================
   HET WILDE ROODBORSTJE — Stylesheet
   ============================================================ */

:root {
  --forest:    #2C4A2E;
  --moss:      #4A7C59;
  --sage:      #8BAF8D;
  --cream:     #F5F0E8;
  --warm:      #EDE5D4;
  --birch:     #C8B89A;
  --bark:      #7A5C3A;
  --robin:     #C0392B;
  --text:      #2A2219;
  --text-soft: #5A4E3A;
  --white:     #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', 'Helvetica Neue', Arial, sans-serif;

  --radius: 12px;
  --shadow: 0 4px 30px rgba(44,74,46,0.12);
  --shadow-deep: 0 8px 50px rgba(44,74,46,0.2);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.8rem, 7vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
p  { color: var(--text-soft); margin-bottom: 1rem; }

.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 0.75rem;
}
.label.center { display: block; text-align: center; }
.center { text-align: center; }
.sub { max-width: 600px; margin-left: auto; margin-right: auto; margin-bottom: 2.5rem; }

/* ---- LAYOUT ---- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---- BUTTONS ---- */
.btn-book, .btn-hero {
  display: inline-block;
  background: var(--robin);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-book:hover, .btn-hero:hover {
  background: #a52b21;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,57,43,0.35);
}
.btn-outline {
  display: inline-block;
  border: 2px solid var(--forest);
  color: var(--forest);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  margin-top: 1rem;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--forest); color: var(--white); }
.btn-airbnb {
  display: inline-block;
  background: #FF5A5F;
  color: var(--white);
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s;
  margin-top: 0.75rem;
}
.btn-airbnb:hover { background: #e04850; transform: translateY(-2px); }

/* ---- STICKY BAR ---- */
.sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245, 240, 232, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(139,175,141,0.3);
  transform: translateY(-100%);
  transition: transform 0.35s ease;
  box-shadow: 0 2px 20px rgba(44,74,46,0.08);
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo-small {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--forest);
  flex-shrink: 0;
}
.sticky-nav {
  display: flex;
  gap: 1.5rem;
}
.sticky-nav a {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-soft);
  transition: color 0.2s;
}
.sticky-nav a:hover { color: var(--forest); }
.sticky-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}
.lang-switch { font-size: 0.85rem; font-weight: 700; color: var(--text-soft); }
.lang-switch a { transition: color 0.2s; }
.lang-switch a:hover, .lang-active { color: var(--forest) !important; }
@media (max-width: 768px) {
  .sticky-nav { display: none; }
  .logo-small { font-size: 0.95rem; }
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--forest);
  background-image: url('../images/hero.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(44,74,46,0.3) 0%, rgba(26,42,26,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 2rem;
  animation: heroFadeUp 2s ease both;
}
.hero-tag {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.5rem;
}
.hero-content h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero-content h1 em { color: var(--birch); font-style: italic; }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.85); margin-bottom: 2.5rem; font-weight: 300; }
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-hint span {
  display: block;
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(0.8); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* ---- INTRO STRIP ---- */
.intro-strip {
  background: var(--forest);
  color: var(--white);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 2rem;
  font-size: 0.9rem;
  font-weight: 700;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.strip-item:last-child { border-right: none; }
.strip-icon { font-size: 1.1rem; }
@media (max-width: 600px) {
  .strip-item { padding: 0.8rem 1rem; font-size: 0.8rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); width: 50%; }
}

/* ---- HUISJE SECTION ---- */
.huisje { background: var(--cream); }
.text-col { }
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.feature {
  background: var(--warm);
  border-radius: var(--radius);
  padding: 1rem;
  border-left: 3px solid var(--moss);
}
.feature strong { display: block; font-family: var(--font-display); color: var(--forest); font-size: 0.95rem; }
.feature span { font-size: 0.85rem; color: var(--text-soft); }
@media (max-width: 480px) { .features-grid { grid-template-columns: 1fr; } }

/* PLACEHOLDER AFBEELDINGEN (verwijder als je echte foto's hebt) */
.placeholder-img {
  background: var(--warm);
  border: 2px dashed var(--birch);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-soft);
  gap: 0.5rem;
  padding: 2rem;
}
.placeholder-img.large { min-height: 420px; font-size: 1.05rem; }
.placeholder-img small { font-size: 0.75rem; opacity: 0.7; }

/* ---- GALLERY ---- */
.gallery-section { background: var(--warm); padding-bottom: 4rem; }
.gallery-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.gallery-row {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: 1fr;
  grid-auto-columns: calc((100% - 24px) / 3);
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 1rem 0 0.5rem;
  -webkit-overflow-scrolling: touch;
}
.gallery-row::-webkit-scrollbar { display: none; }
.gallery-item {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  scroll-snap-align: start;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.96);
  color: var(--forest);
  font-size: 1.75rem;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(44,74,46,0.18);
  cursor: pointer;
  z-index: 1;
}
.gallery-prev { left: 0.75rem; }
.gallery-next { right: 0.75rem; }
.gallery-nav:hover { background: var(--white); }
@media (max-width: 768px) {
  .gallery-row { grid-auto-columns: calc((100% - 16px) / 2); }
}
@media (max-width: 560px) {
  .gallery-row { grid-auto-columns: 85%; }
  .gallery-nav { width: 40px; height: 40px; }
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44,74,46,0.75);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 8px; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: white;
  background: rgba(0,0,0,0.35);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
  cursor: pointer;
}
.lightbox-close:hover { background: rgba(255,255,255,0.18); }
.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.96);
  color: var(--forest);
  font-size: 1.75rem;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(44,74,46,0.18);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}
.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }
.lightbox-nav:hover { background: var(--white); }

/* ---- OMGEVING ---- */
.omgeving { background: var(--forest); color: var(--white); }
.omgeving .label { 
  color: var(--moss); 
  text-shadow: 2px 2px 4px rgba(237, 229, 212, 0.8);
}
.omgeving h2, .omgeving p { color: rgba(255,255,255,0.9); }
.omgeving-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.omgeving-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.omgeving-card h3, .omgeving-card p { color: var(--forest); }
.omgeving-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-deep); }
.omgeving-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.omgeving-card p { font-size: 0.9rem; margin-bottom: 0.75rem; }
.distance {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--moss);
  background: rgba(74,124,89,0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}
@media (max-width: 900px) { .omgeving-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .omgeving-grid { grid-template-columns: 1fr; } }

/* ---- KALENDER ---- */
.kalender-section { background: var(--forest); color: var(--white); }
.kalender-section .label { color: var(--sage); }
.kalender-section h2, .kalender-section p { color: rgba(255,255,255,0.9); }
.kalender-wrapper { max-width: 800px; margin: 0 auto; }
.kalender-embed {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 400px;
}
.kalender-embed iframe { width: 100%; border: none; display: block; }
.kalender-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  min-height: 300px;
  color: var(--text-soft);
  gap: 0.5rem;
}
.kalender-placeholder h3 { color: var(--forest); font-size: 1.3rem; }
.kalender-placeholder p { font-size: 0.9rem; }
.kalender-placeholder code { background: var(--warm); padding: 0.1rem 0.4rem; border-radius: 4px; font-size: 0.8rem; }
.kalender-icon { font-size: 3rem; margin-bottom: 0.5rem; }
.boek-direct { text-align: center; margin-top: 2rem; }
.boek-direct p { color: rgba(255,255,255,0.75); font-size: 0.9rem; }

/* ---- REVIEWS ---- */
.reviews-section { background: var(--warm); }
.reviews-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.reviews-grid {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  margin-bottom: 2.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.reviews-grid::-webkit-scrollbar { display: none; }
.review-card {
  min-width: 320px;
  flex: 0 0 320px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}
.reviews-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.96);
  color: var(--forest);
  font-size: 1.75rem;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(44,74,46,0.18);
  cursor: pointer;
  z-index: 1;
}
.reviews-prev { left: 0.75rem; }
.reviews-next { right: 0.75rem; }
.reviews-nav:hover { background: var(--white); }
.stars { color: #F4A225; font-size: 1.1rem; margin-bottom: 0.75rem; }
.review-card p { font-size: 0.9rem; font-style: italic; }
.reviewer { font-size: 0.8rem; color: var(--moss); font-weight: 700; margin-top: 0.5rem; display: block; }
.reviews-score {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: -3rem;
  margin-bottom: 2rem;
}
.score { font-family: var(--font-display); font-size: 4rem; color: var(--forest); font-weight: 700; }
.score-label { font-size: 0.9rem; color: var(--text-soft); }
.reviews-divider {
  width: 60px;
  height: 2px;
  margin: 1.5rem auto;
  background: rgba(74,124,89,0.4);
  border: none;
}
@media (max-width: 768px) {
  .reviews-nav { display: none; }
  .review-card { min-width: 280px; flex: 0 0 280px; }
}

/* ---- CONTACT ---- */
.contact-section { background: var(--cream); }
.two-col-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-item { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.95rem; }
.contact-item a { color: var(--moss); font-weight: 700; }
.contact-item a:hover { text-decoration: underline; }
.lang-links { display: flex; gap: 1rem; }
.lang-links a { color: var(--moss); font-weight: 700; }
.map-placeholder { }
.map-embed-placeholder {
  background: var(--warm);
  border: 2px dashed var(--birch);
  border-radius: var(--radius);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-soft);
  gap: 0.5rem;
  font-size: 2rem;
}
.map-embed-placeholder p { font-size: 0.85rem; }
@media (max-width: 768px) { .two-col-contact { grid-template-columns: 1fr; gap: 2rem; } }

/* ---- FOOTER ---- */
.footer { background: var(--text); color: rgba(255,255,255,0.7); padding: 3rem 0 2rem; }
.footer-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.footer-logo { font-family: var(--font-display); font-size: 1.3rem; color: var(--white); font-weight: 700; }
.footer-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.footer-nav a { font-size: 0.85rem; transition: color 0.2s; }
.footer-nav a:hover { color: var(--white); }
.footer-lang { font-size: 0.85rem; }
.footer-lang a { color: rgba(255,255,255,0.6); transition: color 0.2s; margin: 0 0.25rem; }
.footer-lang a:hover { color: var(--white); }
.footer-copy { font-size: 0.75rem; opacity: 0.5; }

/* ---- FADE IN ANIMATION ---- */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
