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

:root {
  --color-primary: #8C7B6B;
  --color-primary-dark: #6F6155;
  --color-primary-light: #A69485;
  --color-bg: #F7F3ED;
  --color-bg-alt: #EDE8DF;
  --color-olive: #5C6B4F;
  --color-olive-light: #6B7F5E;
  --color-olive-dark: #4A5840;
  --color-text: #3A3A3A;
  --color-text-light: #6B6B6B;
  --color-white: #FFFFFF;
  --color-footer-bg: #2C2C2C;
  --color-footer-text: #CCCCCC;
  --font-heading: 'Amatic SC', cursive;
  --font-body: 'Quicksand', sans-serif;
  --max-width: 1200px;
  --nav-height: 70px;
}

[data-theme="dark"] {
  --color-primary: #b8a696;
  --color-primary-dark: #a08e7e;
  --color-primary-light: #c9bdb0;
  --color-bg: #121212;
  --color-bg-alt: #1a1a1a;
  --color-olive: #7a8f6c;
  --color-olive-light: #8aa07a;
  --color-olive-dark: #6a7f5c;
  --color-text: #e0e0e0;
  --color-text-light: #999;
  --color-white: #1e1e1e;
  --color-footer-bg: #0a0a0a;
  --color-footer-text: #ccc;
  --sand: #b8a696;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --color-primary: #b8a696;
    --color-primary-dark: #a08e7e;
    --color-primary-light: #c9bdb0;
    --color-bg: #121212;
    --color-bg-alt: #1a1a1a;
    --color-olive: #7a8f6c;
    --color-olive-light: #8aa07a;
    --color-olive-dark: #6a7f5c;
    --color-text: #e0e0e0;
    --color-text-light: #999;
    --color-white: #1e1e1e;
    --color-footer-bg: #0a0a0a;
    --color-footer-text: #ccc;
    --sand: #b8a696;
  }
}

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

@media (max-width: 768px) {
  .nav-social { display: none; }
  .theme-toggle {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
    margin-top: -12px;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary-dark);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 4px;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 24px;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 16px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-white {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-white:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background-color: var(--color-bg);
  opacity: 0.97;
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo img {
  height: 45px;
  width: auto;
}

[data-theme="dark"] .nav-logo img {
  filter: invert(1) brightness(2);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .nav-logo img {
    filter: invert(1) brightness(2);
  }
}

.nav-logo span {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-text);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* WK 2026 highlight button */
.nav-links a.nav-wk {
  background: #ec6608;
  color: #fff;
  padding: .4rem .85rem;
  border-radius: 6px;
  line-height: 1;
}
.nav-links a.nav-wk:hover,
.nav-links a.nav-wk.active {
  background: #d65d05;
  color: #fff;
}
.nav-links a.nav-wk::after { display: none; }

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  display: none;
}

.nav-dropdown-toggle {
  cursor: pointer;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-bg);
  min-width: 180px;
  padding-top: 12px;
  padding-bottom: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 4px 4px;
  z-index: 100;
  list-style: none;
}

@media (min-width: 769px) {
  .nav-dropdown:hover .nav-dropdown-menu {
    display: block;
  }
}

.nav-dropdown-menu li a {
  display: block;
  padding: 8px 24px;
  font-size: 13px !important;
  text-transform: none !important;
  letter-spacing: 0.5px !important;
  color: var(--color-text);
  white-space: nowrap;
}

.nav-dropdown-menu li a:hover {
  color: var(--color-primary);
  background-color: var(--color-bg-alt);
}

.nav-dropdown-menu li a::after {
  display: none !important;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 12px;
}

.lang-switcher a {
  display: block;
  width: 24px;
  height: 16px;
  border-radius: 2px;
  overflow: hidden;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.lang-switcher a:hover,
.lang-switcher a.active {
  opacity: 1;
}

.lang-switcher img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-lang {
  display: none;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: var(--nav-height);
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
}

.hero-content h1 {
  color: var(--color-white);
  font-size: clamp(4rem, 12vw, 8rem);
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
  margin-bottom: 8px;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 400;
  text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.3);
}

/* Page hero (subpages) */
.page-hero {
  position: relative;
  height: 40vh;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: var(--nav-height);
  overflow: hidden;
}

.page-hero .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.page-hero h1 {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}

.section-light {
  background-color: var(--color-bg);
}

.section-white {
  background-color: var(--color-white);
}

.section-olive {
  background-color: var(--color-bg);
  color: var(--color-text);
}

.section-olive h2,
.section-olive h3 {
  color: var(--color-text);
}

.section-olive p {
  color: var(--color-text);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header p {
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-divider {
  width: 60px;
  height: 3px;
  background-color: var(--color-primary);
  margin: 16px auto;
}

/* ===== ABOUT / INTRO ===== */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

/* ===== PHOTO GALLERY ===== */
.gallery-grid {
  columns: 3;
  column-gap: 16px;
}

.gallery-grid img {
  width: 100%;
  margin-bottom: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-grid img:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: white;
  font-size: 32px;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  z-index: 3;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 40px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  z-index: 3;
}

.lightbox-arrow:hover {
  background: rgba(0, 0, 0, 0.6);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

/* ===== MENU SECTION (homepage) ===== */
.menu-intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.menu-intro p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.menu-intro .btn {
  margin-top: 16px;
}

/* ===== MENU PAGE ===== */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.menu-tab {
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-tab.active,
.menu-tab:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.menu-category {
  display: none;
  max-width: 800px;
  margin: 0 auto;
}

.menu-category.active {
  display: block;
}

.menu-category-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 24px;
  text-align: center;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-bg-alt);
}

.menu-item-name {
  font-weight: 600;
  font-size: 16px;
}

.menu-item-desc {
  font-size: 14px;
  color: var(--color-text-light);
  margin-top: 2px;
}

.menu-item-price {
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
  margin-left: 16px;
}

/* Allergen toggle */
.allergen-toggle-wrapper {
  text-align: center;
  margin: 0 0 24px;
}
.allergen-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--color-text-light);
}
.allergen-toggle input { display: none; }
.allergen-toggle-slider {
  width: 40px;
  height: 22px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-text-light);
  border-radius: 11px;
  position: relative;
  transition: background .3s, border-color .3s;
}
.allergen-toggle-slider::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: var(--color-white);
  border-radius: 50%;
  transition: transform .3s;
}
.allergen-toggle input:checked + .allergen-toggle-slider {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.allergen-toggle input:checked + .allergen-toggle-slider::after {
  transform: translateX(18px);
}

.allergen-tags {
  display: none;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}
.show-allergens .allergen-tags {
  display: flex;
}
.allergen-tag {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--color-bg-alt);
  color: var(--color-text-light);
  border: 1px solid var(--color-bg-alt);
  text-transform: lowercase;
}

.wine-icon {
  vertical-align: -2px;
  opacity: .7;
}

/* ===== EVENTS ===== */
.events-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.events-text h2 {
  color: var(--color-primary);
}

.events-text p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.events-text .btn {
  margin-top: 8px;
}

.events-image img {
  width: 100%;
  border-radius: 8px;
}

/* ===== REFERENCES / LOGO CLOUD ===== */
.references-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 2rem;
}

.references-logos img {
  height: 40px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.references-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 768px) {
  .references-logos {
    gap: 2rem;
  }
  .references-logos img {
    height: 30px;
  }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  max-width: 720px;
  margin: 2rem auto 0;
}
.testimonial {
  position: relative;
  padding: 2rem 2.5rem;
  background: var(--color-bg);
  border-left: 4px solid var(--color-primary);
  border-radius: 8px;
  margin-bottom: 2rem;
  font-style: italic;
  line-height: 1.8;
}
.testimonial p {
  margin-bottom: .75rem;
}
.testimonial p:last-child {
  margin-bottom: 0;
}
.testimonial cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 600;
  color: var(--color-primary);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info h3 {
  color: var(--color-primary);
  margin-top: 24px;
}

.contact-info h3:first-child {
  margin-top: 0;
}

.contact-info p {
  margin-bottom: 8px;
}

.contact-info a {
  color: var(--color-primary);
}

.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
  margin-top: 16px;
}

.contact-form label:first-child {
  margin-top: 0;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  border: 1px solid #D0CBC3;
  border-radius: 4px;
  background-color: var(--color-white);
  color: var(--color-text);
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--color-primary);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  margin-top: 24px;
  width: 100%;
}

.form-success {
  display: none;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 16px 24px;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 24px;
}

.form-success.show {
  display: block;
}

/* Map */
.map-wrapper {
  width: 100%;
  height: 350px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 48px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-footer-text);
  margin-bottom: 16px;
}

.footer-col p,
.footer-col a {
  color: var(--color-footer-text);
  font-size: 14px;
  line-height: 1.8;
}

.footer-col a:hover {
  color: var(--color-primary);
}

.footer-social,
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a,
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-footer-text);
  transition: all 0.3s ease;
}

.footer-social a:hover,
.social-icons a:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.footer-social svg,
.social-icons svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Nav social override */
.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: var(--color-text);
  transition: all 0.3s ease;
}

.nav-social a:hover {
  color: var(--color-primary);
  background-color: var(--color-bg-alt);
}

.nav-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  text-align: center;
  font-size: .8rem;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: .8rem;
}
.footer-bottom-links a:hover { color: var(--sand); }

/* ===== VACATURES ===== */
.vacatures-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.vacature-card {
  background-color: var(--color-white);
  border-left: 4px solid var(--color-primary);
  padding: 24px;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.vacature-card h3 {
  font-family: var(--font-body);
  font-size: 18px;
  margin-bottom: 8px;
}

.vacature-card p {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  background-color: var(--color-bg-alt);
  color: var(--color-text);
  border-radius: 20px;
  margin-right: 6px;
}

@media (max-width: 768px) {
  .vacatures-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CHECKBOX GROUP ===== */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.checkbox-label {
  display: flex !important;
  align-items: center;
  gap: 10px;
  font-weight: 400 !important;
  margin: 0 !important;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ===== BRUILOFT FOTOS ===== */
.bruiloft-fotos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: center;
}

.bruiloft-fotos img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .bruiloft-fotos {
    grid-template-columns: 1fr;
  }
}

/* ===== FADE IN ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== VIRTUAL TOUR EMBED ===== */
.tour-embed {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.tour-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

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

/* Tablet */
@media (max-width: 1024px) {
  .gallery-grid {
    columns: 3;
  }

  .events-content {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    z-index: 1001;
    position: relative;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 40px;
    z-index: 999;
    overflow-y: auto;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 18px;
  }

  .nav-dropdown {
    text-align: center;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    margin-top: 0;
    padding: 8px 0 0 0;
    background: transparent;
  }

  .nav-dropdown-menu li a {
    padding: 4px 0;
    font-size: 15px !important;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .lang-switcher {
    display: none;
  }

  .nav-social {
    display: none;
  }

  .mobile-lang {
    display: flex !important;
    justify-content: center;
    gap: 12px;
    list-style: none;
    padding-top: 8px;
  }

  .mobile-lang a {
    display: block;
    width: 32px;
    height: 22px;
    border-radius: 3px;
    overflow: hidden;
    opacity: 0.5;
  }

  .mobile-lang a:hover,
  .mobile-lang a.active {
    opacity: 1;
  }

  .mobile-lang a::after {
    display: none !important;
  }

  .mobile-lang img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero {
    height: 70vh;
    min-height: 400px;
  }

  .section {
    padding: 60px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .gallery-grid {
    columns: 3;
  }

  .hero {
    height: 60vh;
  }

  .section {
    padding: 48px 0;
  }

  .menu-tabs {
    gap: 8px;
  }

  .menu-tab {
    padding: 8px 16px;
    font-size: 12px;
  }
}

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

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

.review-card {
  flex: 0 0 calc(20% - 1rem);
  background: var(--color-white, #fff);
  border: 1px solid var(--color-bg-alt, #e8e8e8);
  border-radius: 12px;
  padding: 1.2rem;
}

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

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}

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

.review-date {
  font-size: .75rem;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}
.review-source {
  flex-shrink: 0;
}

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

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

.reviews-arrow {
  background: var(--color-white, #fff);
  border: 1px solid var(--color-bg-alt, #e8e8e8);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s;
}

.reviews-arrow:hover {
  background: var(--color-bg-alt, #f5f5f5);
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.2rem;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
}

.reviews-dot.active {
  background: var(--color-primary);
}

@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-wrapper {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
}
.gotable-wrapper > * {
  margin: 0 auto;
}

/* ===== DESKTOP FLOATING BAR ===== */
.desktop-bottom-bar {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 99999;
  display: flex;
  gap: 0;
  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-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .3s ease;
  white-space: nowrap;
}
.desktop-bottom-bar a {
  background: var(--color-primary);
  color: #fff;
}
.desktop-bottom-bar a:first-child {
  border-right: 1px solid rgba(255,255,255,.2);
}
.desktop-bottom-bar a:hover {
  background: var(--color-primary-dark);
}

@media (max-width: 768px) {
  .desktop-bottom-bar { display: none; }
}

/* ===== MOBILE BOTTOM BAR ===== */
.mobile-bottom-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--color-primary);
  }

  .mobile-bottom-bar a {
    flex: 1;
    text-align: center;
    padding: 14px 8px;
    color: var(--color-white);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background 0.3s ease;
  }

  .mobile-bottom-bar a:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }

  .mobile-bottom-bar a:hover {
    background-color: var(--color-primary-dark);
  }

  .footer {
    padding-bottom: 60px;
  }
}
