/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #c2a678;
  --gold-light: #d4be96;
  --gold-dark:  #a68d5b;
  --dark:       #1a1a1a;
  --dark-overlay: rgba(26,26,26,.65);
  --white:      #ffffff;
  --off-white:  #faf8f4;
  --text:       #333333;
  --text-light: #f5f0ea;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Open Sans', Arial, sans-serif;
  --max-width: 1300px;
  --nav-height: 50px;
  --topbar-height: 100px;
  --always-white: #ffffff;

  --bg: #ffffff;
  --bg-alt: #faf8f4;
  --border: #eee;
  --border-light: rgba(0,0,0,.06);
  --text-muted: #6b6b6b;
  --text-body: #555;
  --card-bg: #ffffff;
  --card-shadow: rgba(0,0,0,.06);
  --footer-bg: #1a1a1a;
  --footer-text: #f5f0ea;
  /* Darker gold for text-on-light usage (WCAG AA, 4.5:1 on white).
     The decorative --gold stays for borders, badges and accent fills. */
  --gold-text: #87683a;
}

/* Dark mode */
[data-theme="dark"] {
  --gold:       #d4be96;
  --gold-light: #c2a678;
  --gold-dark:  #e0cda6;
  --dark:       #f5f0ea;
  --white:      #1a1a1a;
  --off-white:  #222222;
  --text:       #e0e0e0;
  --text-light: #1a1a1a;
  --bg: #121212;
  --bg-alt: #1a1a1a;
  --border: #333;
  --border-light: rgba(255,255,255,.08);
  --text-muted: #999;
  --text-body: #bbb;
  --card-bg: #1e1e1e;
  --card-shadow: rgba(0,0,0,.3);
  --footer-bg: #0a0a0a;
  --footer-text: #ccc;
  /* Light gold has plenty of contrast on the near-black bg */
  --gold-text: #d4be96;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --gold:       #d4be96;
    --gold-light: #c2a678;
    --gold-dark:  #e0cda6;
    --dark:       #f5f0ea;
    --white:      #1a1a1a;
    --off-white:  #222222;
    --text:       #e0e0e0;
    --text-light: #1a1a1a;
    --bg: #121212;
    --bg-alt: #1a1a1a;
    --border: #333;
    --border-light: rgba(255,255,255,.08);
    --text-muted: #999;
    --text-body: #bbb;
    --card-bg: #1e1e1e;
    --card-shadow: rgba(0,0,0,.3);
    --footer-bg: #0a0a0a;
    --footer-text: #ccc;
    --gold-text: #d4be96;
  }
}

@media (min-width: 769px) {
  html { scroll-behavior: smooth; }
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg, var(--white));
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .3s, color .3s;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.content-narrow {
  max-width: 750px;
  margin: 0 auto;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.3; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}
.section-title.gold { color: var(--gold-text); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: .75rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .5px;
  transition: all .3s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--always-white);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}
.btn-gold {
  background: var(--gold);
  color: var(--always-white);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--always-white);
  border: 2px solid var(--always-white);
}
.btn-outline:hover {
  background: var(--always-white);
  color: var(--gold-text);
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--bg, var(--white));
  border-bottom: 1px solid var(--border, #eee);
  padding: .4rem 0;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.top-bar-left {
  font-size: .75rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.top-bar-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.header-logo {
  height: 120px;
  width: auto;
}
.top-bar-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
}
.top-bar-right > .theme-toggle {
  margin-left: calc(.6rem + 20px);
}
.top-bar-social {
  display: flex;
  gap: .6rem;
  align-items: center;
}
.social-icon {
  color: var(--text-muted);
  transition: color .3s;
}
.social-icon:hover { color: var(--gold-text); }

/* ===== NAVIGATION ===== */
.navbar {
  background: var(--bg, var(--white));
  border-bottom: 1px solid var(--border, #eee);
  height: var(--nav-height);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  color: var(--text-muted, #888);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .5px;
  position: relative;
  padding: .3rem 0;
  transition: color .3s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-text);
}

/* WK 2026 nav-knop (oranje) */
.nav-links a.nav-wk {
  background: #ec6608;
  color: #fff;
  padding: .4rem .85rem;
  border-radius: 6px;
  font-weight: 700;
  line-height: 1;
}
.nav-links a.nav-wk:hover,
.nav-links a.nav-wk.active {
  background: #d65d05;
  color: #fff;
}

/* Nav dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-label {
  cursor: pointer;
  color: var(--text-muted);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .5px;
  padding: .3rem 0;
  transition: color .3s;
}
.nav-dropdown-label:hover,
.nav-dropdown.active .nav-dropdown-label {
  color: var(--gold-text);
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-alt);
  box-shadow: 0 4px 15px var(--card-shadow);
  border-radius: 4px;
  padding: .5rem 0;
  min-width: 150px;
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-menu a {
  display: block;
  padding: .5rem 1.2rem;
  font-size: .85rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  color: var(--gold-text);
  background: var(--off-white);
}

/* Dark mode toggle */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted, #888);
  font-size: 1.2rem;
  padding: .2rem;
  transition: color .3s;
  line-height: 1;
}
.theme-toggle:hover { color: var(--gold-text); }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: none; }
.theme-toggle .icon-auto { display: inline; }

/* Language switcher */
.lang-switcher {
  display: flex;
  gap: .5rem;
  margin-top: 2.2rem;
}
.lang-switcher a {
  display: block;
  opacity: .5;
  transition: opacity .3s;
}
.lang-switcher a:hover { opacity: .8; }
.lang-switcher a.active { opacity: 1; }
.lang-switcher img {
  width: 24px;
  height: 16px;
  border-radius: 2px;
  display: block;
  object-fit: cover;
}

/* Nav theme toggle (mobile hamburger menu only) */
.nav-theme-toggle { display: none; }

/* Nav flags (mobile hamburger menu only) */
.nav-flags { display: none; }
.nav-flags a {
  display: inline-block;
  opacity: .5;
  transition: opacity .3s;
}
.nav-flags a:hover { opacity: .8; }
.nav-flags a.active { opacity: 1; }
.nav-flags img {
  width: 28px;
  height: 19px;
  border-radius: 2px;
  object-fit: cover;
}

/* Nav offerte (mobile only) */
.nav-offerte { display: none; }

/* Mobile theme toggle (next to hamburger) */
.theme-toggle-mobile { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
.hamburger span {
  width: 28px; height: 2px;
  background: var(--dark);
  transition: all .3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--always-white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg img,
picture.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
picture.hero-bg {
  background: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}
.hero-title-cursive {
  font-family: 'Open Sans', Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  text-shadow: 2px 2px 8px rgba(0,0,0,.4);
}
.hero-logo {
  height: 250px;
  width: auto;
  margin: 0 auto 1.5rem;
  display: block;
}

/* Page hero (smaller, for subpages) */
.page-hero {
  height: 50vh;
  min-height: 350px;
}
.page-hero .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.45));
}
.page-hero .hero-content h1 {
  text-shadow: 2px 2px 8px rgba(0,0,0,.4);
}

/* ===== HERO SLIDER ===== */
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
.hero-slide.is-active { opacity: 1; pointer-events: auto; z-index: 1; }
/* Tekst alleen op de actieve slide (direct, niet mee-faden) zodat er tijdens
   de crossfade nooit twee teksten over elkaar staan */
.hero-slide .hero-content { opacity: 0; }
.hero-slide.is-active .hero-content { opacity: 1; }
/* Voetbal-slide: tekst bovenin zodat 'ie niet vóór het grote scherm valt */
.hero-slide-wk { align-items: flex-start; }
.hero-slide-wk .hero-content { padding-top: 2.2rem; }
/* Voetbal-slide: foto-crop op het scherm + donkere overlay voor leesbare tekst */
.hero-slide-wk .hero-bg img { object-position: center 50%; }
.hero-slide-wk .hero-bg picture { display: block; width: 100%; height: 100%; }
.hero-slide-wk .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.3), rgba(0,0,0,.55));
}
.hero-wk-text {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 5vw, 3.4rem);
  line-height: 1.15;
  max-width: 900px;
  text-shadow: 2px 2px 10px rgba(0,0,0,.55);
}
.hero-wk-note {
  font-size: .82rem;
  font-weight: 500;
  font-style: italic;
  opacity: .92;
  max-width: 640px;
  margin: 2.5rem auto 0;
  padding: 0 1rem;
  text-shadow: 1px 1px 6px rgba(0,0,0,.6);
}
/* Navigatie-dots */
.hero-slider-dots {
  position: absolute;
  bottom: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .55rem;
  z-index: 2;
}
.hero-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.85);
  background: transparent;
  cursor: pointer;
  transition: background .25s;
}
.hero-dot.is-active { background: #fff; }

/* ===== SECTIONS ===== */
section { padding: 3.5rem 0; }

.section-white { background: var(--bg, var(--white)); }
.section-light { background: var(--bg-alt, var(--off-white)); }
.section-dark  { background: var(--footer-bg, var(--dark)); color: var(--footer-text, var(--text-light)); }

.section-white p {
  font-size: .92rem;
  line-height: 1.8;
  margin-bottom: .8rem;
  color: var(--text-body, #555);
}

/* ===== ONTBIJT GRID ===== */
.ontbijt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}
.ontbijt-text h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.ontbijt-text p {
  font-size: .9rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: .8rem;
}
.ontbijt-text .price-info {
  margin-top: 1rem;
  font-size: .95rem;
  color: var(--text);
}
.ontbijt-text .note {
  margin-top: .5rem;
  font-size: .85rem;
  color: var(--text-muted);
}
.ontbijt-image {
  border-radius: 4px;
  overflow: hidden;
}
.ontbijt-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 700 / 467;
  object-fit: cover;
}

/* ===== MAP ===== */
.map-wrapper {
  border-radius: 4px;
  overflow: hidden;
  height: 350px;
  margin-top: 1rem;
}
.map-wrapper iframe { width: 100%; height: 100%; border: 0; }

/* ===== ABOUT GRID (subpages) ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-image {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--border);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-text p { margin-bottom: 1rem; font-size: .92rem; color: var(--text-body); }

/* ===== FEATURES GRID (subpages) ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.feature-card {
  background: var(--card-bg, var(--white));
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0,0,0,.1);
}
.feature-card-img {
  height: 200px;
  background: var(--border);
  overflow: hidden;
}
.feature-card-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-card-body { padding: 1.5rem; }
.feature-card-body h3 { margin-bottom: .5rem; }
.feature-card-body p { font-size: .9rem; color: var(--text-body); }

/* ===== MENU PAGE ===== */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.menu-tab {
  padding: .6rem 1.5rem;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold-text);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease;
  font-size: .9rem;
}
.menu-tab.active,
.menu-tab:hover {
  background: var(--gold);
  color: var(--always-white);
}

/* Allergen toggle */
.allergen-toggle-wrapper {
  text-align: center;
  margin: 1rem 0 1.5rem;
}
.allergen-toggle {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  cursor: pointer;
  font-size: .85rem;
  color: var(--text-muted);
}
.allergen-toggle input { display: none; }
.allergen-toggle-slider {
  width: 40px;
  height: 22px;
  background: var(--border);
  border-radius: 11px;
  position: relative;
  transition: background .3s;
}
.allergen-toggle-slider::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform .3s;
}
.allergen-toggle input:checked + .allergen-toggle-slider {
  background: var(--gold);
}
.allergen-toggle input:checked + .allergen-toggle-slider::after {
  transform: translateX(18px);
}

/* Allergen tags */
.allergen-tags {
  display: none;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}
.show-allergens .allergen-tags {
  display: flex;
}
.allergen-tag {
  display: inline-block;
  font-size: .7rem;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--bg-alt);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.menu-category { margin-bottom: 3rem; }
.menu-category h3 {
  color: var(--gold-text);
  margin-bottom: 1.5rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--gold-light);
}

.menu-section { max-width: 800px; margin: 0 auto; }
.menu-items { display: grid; gap: 1rem; }
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border-light, rgba(0,0,0,.06));
}
.menu-item-name { font-weight: 600; }
.menu-item-desc { font-size: .85rem; color: var(--text-muted); margin-top: .2rem; }
.menu-item-price {
  font-weight: 700;
  color: var(--gold-text);
  white-space: nowrap;
  margin-left: 1rem;
}
.menu-note {
  font-size: .85rem;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* ===== ACTIVITIES ===== */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.activity-card {
  background: var(--card-bg, var(--white));
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,.06);
}
.activity-card-img {
  height: 220px;
  background: var(--border);
  overflow: hidden;
}
.activity-card-img img { width: 100%; height: 100%; object-fit: cover; }
.activity-card-body { padding: 1.5rem; }
.activity-card-body h3 { margin-bottom: .5rem; color: var(--gold-text); }
.activity-card-body p { font-size: .9rem; color: var(--text-body); margin-bottom: 1rem; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-info-item .icon {
  font-size: 1.4rem;
  color: var(--gold-text);
  min-width: 30px;
  text-align: center;
}
.contact-info-item h4 { margin-bottom: .2rem; }
.contact-info-item p { font-size: .92rem; color: var(--text-body); }

.contact-form input:not([type="checkbox"]):not([type="hidden"]),
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: .8rem 1rem;
  border: 1px solid var(--border, #ddd);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: .92rem;
  margin-bottom: 1rem;
  transition: border-color .3s;
  background: var(--card-bg, var(--white));
  color: var(--text);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold-text);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: .3rem;
  font-size: .9rem;
}
.form-success {
  display: none;
  background: var(--gold);
  color: var(--always-white);
  padding: 1rem 1.5rem;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.form-success.show { display: block; }
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  margin-bottom: 1rem;
}
.checkbox-label {
  display: flex !important;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ===== OPENINGSTIJDEN TABLE ===== */
.hours-table {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-collapse: collapse;
}
.hours-table tr { border-bottom: 1px solid var(--border-light); }
.hours-table td {
  padding: .75rem .5rem;
  font-size: .92rem;
}
.hours-table td:last-child { text-align: right; font-weight: 600; }

/* ===== SOLLICITEREN ===== */
.vacatures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.vacature-card {
  background: var(--card-bg, var(--white));
  border-radius: 4px;
  padding: 2rem;
  box-shadow: 0 2px 15px rgba(0,0,0,.06);
  border-left: 4px solid var(--gold);
}
.vacature-card h3 { margin-bottom: .5rem; color: var(--gold-text); }
.vacature-card p { font-size: .9rem; color: var(--text-body); margin-bottom: 1rem; }
.vacature-card .tag {
  display: inline-block;
  padding: .25rem .75rem;
  background: var(--off-white);
  border-radius: 20px;
  font-size: .8rem;
  color: var(--gold-text);
  font-weight: 600;
  margin-right: .5rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--gold);
  color: var(--always-white);
  text-align: center;
  padding: 3.5rem 0;
}
.cta-banner h2 { color: var(--always-white); margin-bottom: 1rem; }
.cta-banner p { margin-bottom: 2rem; opacity: .9; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ===== GOOGLE REVIEWS ===== */
.reviews-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.reviews-track {
  display: flex;
  gap: 1.2rem;
  overflow: hidden;
  scroll-behavior: smooth;
  flex: 1;
}

.review-card {
  flex: 0 0 calc(20% - 1rem);
  background: var(--card-bg, var(--white));
  border: 1px solid var(--border, #e8e8e8);
  border-radius: 8px;
  padding: 1.5rem;
  min-width: 0;
}

.review-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .6rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--always-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .8rem;
  flex-shrink: 0;
}

.review-name {
  font-weight: 600;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: .3rem;
}

.review-date {
  font-size: .75rem;
  color: var(--text-muted);
}

.review-stars {
  color: #F4B400;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: .5rem;
}

.review-text {
  font-size: .88rem;
  color: var(--text-body);
  line-height: 1.5;
  margin: 0;
}

.reviews-arrow {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .3s;
  color: var(--text-body);
}
.reviews-arrow:hover {
  background: var(--bg-alt);
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.2rem;
}
.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background .3s;
}
.reviews-dot.active {
  background: var(--dark);
}

@media (max-width: 768px) {
  .review-card {
    flex: 0 0 85%;
  }
}

@media (max-width: 480px) {
  .review-card {
    flex: 0 0 100%;
  }
  .reviews-arrow { display: none; }
  .reviews-track { overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; }
  .review-card { scroll-snap-align: start; }
}

/* ===== GOTABLE INLINE WIDGET ===== */
#gotable-inline-widget,
[id^="gotable"] {
  width: 100% !important;
  max-width: 100% !important;
}

/* ===== DESKTOP BOTTOM BAR (floating, hidden on mobile) ===== */
.desktop-bottom-bar {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 99999;
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.desktop-bottom-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.4rem;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  background: var(--gold);
  color: var(--always-white);
  transition: background .3s ease;
  white-space: nowrap;
}
.desktop-bottom-bar a:first-child {
  border-right: 1px solid rgba(255,255,255,.2);
}
.desktop-bottom-bar a:hover {
  background: var(--gold-dark);
}

/* ===== MOBILE BOTTOM BAR (hidden on desktop) ===== */
.mobile-bottom-bar { display: none; }

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(0,0,0,.92);
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: .5rem;
}
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  padding: 1rem;
  opacity: .7;
  transition: opacity .3s;
}
.lightbox-arrow:hover { opacity: 1; }
.lightbox-prev { left: .5rem; }
.lightbox-next { right: .5rem; }
.lightbox-counter {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-size: .85rem;
}
.foto-item { cursor: pointer; }
.foto-item:hover { opacity: .85; transition: opacity .3s; }

/* ===== FOOTER ===== */
.footer {
  background: var(--footer-bg, var(--dark));
  color: var(--footer-text, var(--text-light));
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.footer h4 {
  font-family: var(--font-heading);
  color: var(--gold-text);
  margin-bottom: .8rem;
  font-size: 1rem;
}
.footer p, .footer a { font-size: .85rem; color: var(--footer-text); line-height: 1.6; }
.footer a:hover { color: var(--gold-text); }
.footer-links li { margin-bottom: .5rem; }

.footer-social-center {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}
.footer-social-center .social-icon {
  color: var(--footer-text);
}
.footer-social-center .social-icon:hover { color: var(--gold-text); }

.footer-bottom-links {
  text-align: center;
  font-size: .8rem;
  color: var(--text-body);
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom-links a {
  color: var(--text-muted);
  font-size: .8rem;
}
.footer-bottom-links a:hover { color: var(--gold-text); }

/* Legacy footer (subpages) */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: .5rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  transition: background .3s;
  font-size: 1.1rem;
}
.footer-social a:hover { background: var(--gold); color: var(--always-white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: .82rem;
  color: var(--text-body);
}

/* ===== INSTAGRAM / FOTOS ===== */
.instagram-follow-btn {
  display: inline-flex;
  align-items: center;
  padding: .7rem 1.5rem;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--always-white);
  border-radius: 4px;
  font-weight: 600;
  font-size: .9rem;
  transition: opacity .3s;
}
.instagram-follow-btn:hover { opacity: .85; color: var(--always-white); }

.instagram-grid {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* ===== RESPONSIVE ===== */

/* --- Tablet (max 1024px) --- */
@media (max-width: 1024px) {
  .about-grid,
  .contact-grid {
    gap: 2rem;
  }

  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* --- Mobile (max 768px) --- */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 2rem;
    gap: 1.2rem;
    box-shadow: 0 4px 20px var(--card-shadow);
    text-align: center;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .theme-toggle-mobile { display: block; background: none; border: none; color: var(--text); cursor: pointer; padding: 5px; }
  .nav-flags { display: flex; gap: .5rem; justify-content: center; padding-top: .5rem; }
  .nav-theme-toggle { display: none; }
  .navbar .container { justify-content: space-between; }

  .top-bar-left { display: none; }
  .top-bar-center { position: static; transform: none; }
  .top-bar-inner { flex-direction: column; align-items: center; padding: .3rem 0; }
  .top-bar-right { display: none; }
  .header-logo { height: 200px; }
  .top-bar { padding: .2rem 0; margin: 0; border-bottom: none; }
  .lang-switcher-mobile {
    display: flex;
    gap: .5rem;
    margin-top: .3rem;
  }

  .about-grid,
  .contact-grid,
  .ontbijt-grid,
  .footer-grid-3 {
    grid-template-columns: 1fr;
  }

  .hero { min-height: 250px; height: 45vh; }
  .page-hero { min-height: 200px; height: 35vh; }
  .hero-logo { height: 120px; }
  .hero-title-cursive { font-size: clamp(1.8rem, 5vw, 2.5rem); }

  section { padding: 2rem 0; }

  .desktop-bottom-bar { display: none; }

  /* Mobile bottom bar */
  .mobile-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: var(--gold);
    border-top: none;
    box-shadow: 0 -2px 12px rgba(0,0,0,.1);
  }
  .mobile-bottom-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--always-white);
    text-align: center;
  }
  .mobile-bottom-bar a + a {
    border-left: 1px solid rgba(255,255,255,.2);
  }
  .mobile-bottom-bar a:active {
    background: var(--gold-dark);
  }

  .footer { padding-bottom: 4rem; }
  .nav-offerte { display: none; }

  .activities-grid,
  .features-grid,
  .vacatures-grid {
    grid-template-columns: 1fr;
  }

  .menu-tabs {
    gap: .5rem;
    margin-bottom: 2rem;
  }
  .menu-tab {
    padding: .5rem 1rem;
    font-size: .8rem;
  }

  .menu-item {
    flex-direction: column;
    align-items: flex-start;
    gap: .2rem;
  }
  .menu-item-price {
    margin-left: 0;
  }

  .map-wrapper {
    height: 250px;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    font-size: 16px; /* voorkomt inzoomen op iOS */
  }

  .cta-banner { padding: 2.5rem 0; }

  .footer { padding: 2rem 0 5rem; }
  .footer-grid { gap: 1.5rem; }

  .foto-grid { columns: 2; }
}

/* --- Small mobile (max 480px) --- */
@media (max-width: 480px) {
  .container { width: 92%; }

  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.2rem; }

  .hero { min-height: 200px; height: 40vh; }
  .page-hero { min-height: 180px; height: 30vh; }
  .hero-logo { height: 90px; }

  .btn {
    padding: .6rem 1.2rem;
    font-size: .85rem;
    width: 100%;
    text-align: center;
  }


  .ontbijt-text h2 { font-size: 1.2rem; }

  .feature-card-img,
  .activity-card-img {
    height: 180px;
  }

  .foto-grid { columns: 1; }

  .footer-bottom-links a { font-size: .7rem; }
}

/* ===== FOTO GALERIJ ===== */
.foto-grid {
  columns: 3;
  column-gap: 1rem;
}

.foto-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
}

.foto-item img {
  width: 100%;
  display: block;
  transition: transform .3s ease;
}

.foto-item:hover img {
  transform: scale(1.03);
}

