/* =========================================================
   GLOBALE SECTIETITELS
   (Consistente stijl voor alle secties)
========================================================= */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #dbe6d0;
  color: #333;
}

.section {
  padding: 64px 16px;
  min-height: 400px;
}

@media (min-width: 768px) {
  .section {
    min-height: 600px;
  }
}

strong {
  color: #e67e22;
}

.section h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #2f3e1f;          /* natuurlijke donkergroene tint – consistent met thema */
  letter-spacing: 0.5px;
  text-transform: none;
  text-align: center;
  font-weight: 600;
}

/* Iets grotere titel op desktop */
@media (min-width: 768px) {
  .section h1 {
    font-size: 2.2rem;
  }
}
/* =========================================================
   🎛️ SLIDER NAVIGATION BUTTONS (GLOBAL)
========================================================= */

.slider-btn,
.park-btn,
#lightboxModal .w3-display-left,
#lightboxModal .w3-display-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;

  border: none;
  padding: 12px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;

  transition: background-color 0.3s ease, transform 0.2s ease;
}

.slider-btn:hover,
.park-btn:hover,
#lightboxModal .w3-display-left:hover,
#lightboxModal .w3-display-right:hover {
  background-color: rgba(0, 0, 0, 0.6);
  transform: translateY(-50%) scale(1.1);
}

/* =========================================================
   🎛️ SLIDER NAVIGATION BUTTONS — RESPONSIVE (GLOBAL)
========================================================= */

@media (max-width: 768px) {
  .slider-btn,
  .park-btn,
  .review-btn,
  #lightboxModal .w3-display-left,
  #lightboxModal .w3-display-right {
    font-size: 18px;
    padding: 8px;
  }
}

/* =========================================================
   TEKST & HOME-SECTIE
========================================================= */
.home-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.home-text {
  flex: 1 1 50%;
  max-width: 900px;
  margin: 10px auto 0 auto;
  padding: 40px;
  text-align: center;
  box-sizing: border-box;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .home-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .home-section {
    flex-direction: column;
  }
  .home-text {
    text-align: center;
    padding: 20px;
  }
}

/* =========================
   BASIS NAVBAR
========================= */

:root {
  --nav-height: 64px;
  --green-accent: #4CAF50;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--nav-height);
  background: #000;
  z-index: 1000;
}

.nav-container {
  width: 100%;
  height: 100%;
  padding: 0 16px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================
   LINKS
========================= */

.nav-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-logo {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}

.nav-link {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 4px 0;
}

/* underline */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--green-accent);
  transition: width 0.25s ease;
}

.nav-link.is-active::after {
  width: 100%;
}

/* Hover underline (desktop only) */
@media (hover: hover) and (pointer: fine) {
  .nav-link:hover::after {
    width: 100%;
  }
}

/* Actieve link (scroll) */
.nav-link.is-active::after {
  width: 100%;
}

/* =========================
   RECHTS
========================= */

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch img {
  width: 22px;
  height: auto;
  border-radius: 2px;
  display: block;
}

/* =========================
   HAMBURGER
========================= */

.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;

  position: relative;   /* belangrijk voor z-index */
  z-index: 1200;        /* hoger dan menu (1100) en overlay (1000) */
}

/* =========================
   MOBIEL MENU
========================= */

.mobile-menu {
  position: fixed;
  top: var(--nav-height);
  right: 16px;
  width: 220px;
  background: #000;
  border-radius: 10px;
  padding: 12px 0;

  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;

  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1100;  /* onder hamburger, boven overlay */
}

.mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-link {
  display: block;
  padding: 12px 18px;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
}

.mobile-link:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* vlaggen mobiel */
.mobile-lang {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding-top: 10px;
}

.mobile-lang img {
  width: 22px;
  border-radius: 2px;
}

/* =========================
   OVERLAY
========================= */

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000; /* onder mobile-menu en hamburger */
}

.menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

  /* Verberg desktop navigatie links */
  .nav-link {
    display: none;
  }

  /* Verberg ALLEEN desktop vlaggen */
  .desktop-lang {
    display: none;
  }

  /* Toon hamburger */
  .hamburger {
    display: block;
  }
}

/* =========================================================
   🌿 HOME SECTION – consistent met Park
========================================================= */

.home-section {
  background-color: #dbe6d0;
  display: flex;
  justify-content: center;
  padding: 80px 20px;
}

.home-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Tekst */
.home-text {
  flex: 1 1 45%;
  max-width: 500px;
  text-align: center;
}

.home-text h1 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #2f3e1f;
}

.home-text p {
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Slideshow */
.slideshow-container {
  flex: 1 1 50%;
  max-width: 500px;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.slides {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slideshow-container .slider-btn.prev {
  left: 10px
}

.slideshow-container .slider-btn.next {
  right: 10px;
}

@media (max-width: 768px) {
  .home-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .home-text,
  .slideshow-container {
    flex: 1 1 100%;
    max-width: 90%;
  }

  .home-text h1 {
    font-size: 1.6rem;
  }

  @media (max-width: 768px) {
  .slideshow-container {
    aspect-ratio: auto;
    height: auto;
  }

  .slides {
    height: auto;
    object-fit: contain;
    background-color: #000; /* optioneel: rustige rand */
  }
}

}

/* =========================================================
   🏡 HOME ICONS
========================================================= */
.home-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}

.home-icons .icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 120px;
}

.home-icons img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: brightness(0.9);
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.home-icons img:hover {
  transform: scale(1.05);
  opacity: 1;
}

.home-icons p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #333;
}


/* =========================================================
   🌿 ABOUT SECTION
========================================================= */
.about-section {
  background-color: #dbe6d0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 20px;
}

.about-container {
  max-width: 1100px;
  width: 100%;
  text-align: center;
}

.about-text {
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

@media (min-width: 768px) {
  .about-text p { font-size: 1.1rem; }
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.about-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}

.about-gallery img:hover {
  transform: scale(1.04);
  filter: brightness(1.08);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.about-icons {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  text-align: center;
}

.about-icons .icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 140px;
}

.about-icons img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: brightness(0.9);
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.about-icons img:hover {
  transform: scale(1.05);
  opacity: 1;
}

.about-icons p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #333;
}

/* ===========================
   🌲 Park Section
   Consistent met Home / About
=========================== */

.park-section {
  background-color: #dbe6d0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 20px;
}

.park-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Tekstgedeelte */
.park-text {
  flex: 1 1 45%;
  max-width: 500px;
  text-align: center;
}

.park-text h1 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #2f3e1f;
  letter-spacing: 0.5px;
}

.park-text p {
  line-height: 1.6;
  color: #333;
  margin-bottom: 12px;
}

/* Slideshow */
.park-slideshow {
  flex: 1 1 50%;
  position: relative;
  max-width: 500px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.park-slide {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.park-btn.prev { left: 10px; }
.park-btn.next { right: 10px; }

/* ===========================
   Park Icons
=========================== */
.park-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  text-align: center;
}

.park-icons .icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 120px;
}

.park-icons img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: brightness(0) contrast(200%);
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.park-icons img:hover {
  transform: scale(1.05);
  opacity: 1;
}

.park-icons p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #333;
}

/* 📱 Mobiel */
@media (max-width: 768px) {
  .park-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  /* Volgorde bepalen op mobiel */
  .park-text:first-of-type { order: 1; }
  .park-slideshow { order: 2; }
  .second-paragraph { order: 3; }
  .park-icons { order: 4; }

  /* Stijl consistentie */
  .park-text,
  .park-slideshow {
    flex: 1 1 100%;
    max-width: 90%;
  }

  .park-text h1 {
    font-size: 1.6rem;
  }

  .park-slideshow {
    aspect-ratio: 16 / 10;
  }

}

/* 🖥️ Desktop layout fix – tweede alinea weer naast de slideshow */
@media (min-width: 769px) {
  .park-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }

  .park-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .park-text p {
    order: 0; /* reset volgorde, zodat ze direct onder elkaar staan */
  }

  .park-slideshow {
    order: 0; /* slideshow blijft netjes naast de tekst */
  }
}

/* =========================================================
   🌿 OMGEVING SECTION (consistent met Home & About)
========================================================= */
.surroundings-section {
  background-color: #dbe6d0; /* zelfde zachte groentint als home */
  padding: 60px 20px;
  text-align: center;
  color: #222;
}

.surroundings-section .content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* Tekstgedeelte */
.surroundings-section text {
  flex: 1 1 45%;
  max-width: 500px;
  text-align: center;
}
.surroundings-section h1 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #2f3e1f;
  letter-spacing: 0.5px;
}

.surroundings-section p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #333;
  max-width: 800px;
  margin: 0 auto 50px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* 📱 Mobiel */
@media (max-width: 768px) {
  .surroundings-section {
    padding: 40px 10px;
  }

  .surroundings-section h2 {
    font-size: 1.6em;
  }

  .surroundings-section p {
    margin-bottom: 30px;
  }

  .gallery-img {
    height: 200px;
  }
}

/* =========================================================
   LODGE ICONS
========================================================= */
.lodge-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.lodge-icons img {
  transition: transform 0.3s ease;
  filter: brightness(0.9);
}

.lodge-icons img:hover {
  transform: scale(1.1);
  filter: brightness(1);
}

.lodge-icons p {
  font-size: 0.95rem;
  color: #444;
  margin-top: 6px;
}

/* =========================================================
   GALERIJ
========================================================= */
.gallery-img {
  width: 100%;
  margin-bottom: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.03);
  opacity: 0.9;
}

/* =========================================================
   LIGHTBOX
========================================================= */
#lightboxModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  box-sizing: border-box;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

#lightboxModal.show {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.w3-modal-content {
  max-width: 90%;
  max-height: 85vh;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInScale 0.4s ease;
}

.lightboxSlides {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 10px;
  display: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* ---------------------------------------------------------
   Lightbox knoppen — consistent met .park-btn
--------------------------------------------------------- */

/* Linkerknop -> 10px van linkerkant */
#lightboxModal .w3-display-left {
  left: 10px;
}

/* Rechterknop -> 10px van rechterkant */
#lightboxModal .w3-display-right {
  right: 10px;
}

/* Sluitknop */
#lightboxModal .w3-display-topright {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 2em;
  color: white;
  cursor: pointer;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  z-index: 10;
  transition: transform 0.2s ease;
}

#lightboxModal .w3-display-topright:hover {
  transform: scale(1.2);
}

/* =========================================================
   MOBIEL – kleinere knoppen, minder padding, kleinere icons
========================================================= */
@media (max-width: 600px) {
  #lightboxModal .w3-display-topright {
    font-size: 1.6em;
    right: 15px;
    top: 8px;
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* =========================================================
   🌿 REVIEW SECTION — SIMPLE, STABLE & CENTERED
========================================================= */

.review-section {
  background-color: #dbe6d0;
  padding: 80px 20px;
  text-align: center;
  box-sizing: border-box;
}

.review-section h1 {
  margin-bottom: 12px;
  color: #2f3e1f;
}

.review-section p {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #333;
}

/* Container */
.review-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.review-grid {
  display: grid;
  /* 💡 auto-fit + minmax zorgt dat kaarten altijd gecentreerd zijn */
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: stretch;
  justify-content: center; /* centreert items horizontaal */
}

.review-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  text-align: center;
  max-width: 350px; /* limiet voor grote schermen */
  margin: 0 auto;   /* centreert individuele kaarten */
}

/* Slider buttons */
.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }

/* Mobiel: 1 card minimaal 300px */
@media (max-width: 767px) {
  .review-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

/* Tablet: 2 cards maximaal */
@media (min-width: 768px) and (max-width: 1023px) {
  .review-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

/* Desktop: 3 cards maximaal */
@media (min-width: 1024px) {
  .review-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

/* Dots */
.dots-container {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #bbb;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active { background-color: #555; }

/* Mobiel buttons */
@media (max-width: 768px) {
  .slider-btn.prev { left: 0; }
  .slider-btn.next { right: 0; }
}

/* =========================================================
   📅 BOOK / SMOOBU SECTION — CLEAN & STABLE
========================================================= */

/* Section wrapper */
.book-section {
  background-color: #dbe6d0;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

/* Main container */
.book-container {
  width: 100%;
  max-width: 1000px;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  gap: 40px;

  color: #333;
}

/* Titel */
.book-container h1 {
  font-size: 2rem;
  color: #2f3e1f;
  text-align: center;
}

/* =========================================
   Tekst links + kalender rechts (desktop)
========================================= */

.book-top {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

/* Tekstblok */
.book-text {
  flex: 1;
}

.book-text p {
  margin-bottom: 8px;
  line-height: 1.6;
}

.book-text ul {
  margin: 6px 0 16px 1.2rem;
  padding: 0;
  list-style: disc;
}

.book-text li {
  margin-bottom: 4px;
  line-height: 1.6;
}

/* Kalenderkolom */
.calendarContainer {
  flex: 1;
  max-width: 520px;
}

/* =========================================
   Smoobu iframe wrapper (KEY FIX)
========================================= */

.booking-embed {
  width: 100%;
  min-height: 950px;

  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.booking-embed iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;

  border: none;
  display: block;
}

/* =========================================
   CTA knop
========================================= */

.book-button {
  align-self: center;

  display: inline-block;
  background-color: #2f3e1f;
  color: #fff;

  padding: 14px 36px;
  border-radius: 50px;

  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;

  transition: background-color 0.3s ease,
              transform 0.2s ease,
              box-shadow 0.2s ease;
}

.book-button:hover {
  background-color: #405a2f;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* =========================================
   📱 Mobiel
========================================= */

@media (max-width: 900px) {
  .book-top {
    flex-direction: column;
    align-items: center;
  }

  .calendarContainer {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .book-container {
    text-align: center;
  }

  .book-container h1 {
    font-size: 1.6rem;
  }

  .book-text ul {
    text-align: left;
    display: inline-block;
  }

  .booking-embed {
    min-height: 1350px;
  }
}

/* =========================================================
   CONTACT
========================================================= */

/* Scroll-anchor (geen invloed op layout) */
.contact-section {
  position: relative;
}

#contact-anchor {
  position: absolute;
  top: -120px; /* hoogte vaste header */
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

/* Optioneel: geen focus outline */
#contact-anchor:focus {
  outline: none;
}

/* Algemene sectie styling */
.contact-section {
  background-color: #dbe6d0;
  padding: 60px 20px;
  text-align: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Sectie inhoud */
.contact-section .section-content {
  max-width: 900px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Google Maps iframe */
.contact-section iframe {
  width: 100%;
  max-width: 900px;
  height: 350px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

/* Contact buttons */
.contact-section .icon-btn {
  background-color: #556b2f; /* donkergroen olijfkleurig */
  color: #fff;
  width: 48px;
  height: 48px;
  font-size: 22px;
  border-radius: 50%;
  margin: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
}

.contact-section .icon-btn:hover {
  background-color: #3e6b25;
  transform: scale(1.1);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .contact-section {
    padding: 40px 16px;
  }

  .contact-section iframe {
    height: 300px;
  }

  .contact-section .icon-btn {
    width: 44px;
    height: 44px;
    font-size: 20px;
    margin: 0 6px;
  }
}

/* =========================================================
   FOOTER
========================================================= */

.footer {
  background-color: #cbd8c1;   /* zachte groene tint, harmonieus met #dbe6d0 */
  padding: 32px 16px;
  text-align: center;
  color: #2f3e1f;              /* zelfde donkergroen als titels */
  margin-top: 40px;
}

.footer a {
  color: #2f3e1f;
  text-decoration: none;
  font-weight: 500;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-links span {
  margin: 0 8px;
  color: #2f3e1f;
}

.footer-copy {
  margin-top: 12px;
  font-size: 0.9rem;
  color: #4a5a3b;
}

/* =========================================================
   ALGEMENE VOORWAARDEN
========================================================= */


.term-container {
    font-size: 1rem; 
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

@media (min-width: 800px) {
    .term-container {
        padding: 0 40px;
    }
}

@media (min-width: 1200px) {
    .term-container {
        padding: 0 60px;
    }
}

/* =========================================
   Hamurger menu tonen
========================================= */

@media (max-width: 768px) {
  .nav-left .nav-link {
    display: none !important;
  }
}

@media (max-width: 768px) {
  #hamburger {
    display: block;
  }
}
