/* GENERAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

:root {
  --gold: #d4af37;
  --gold-dark: #b8941f;
  --gold-light: #e8c766;
  --black: #0a0a0a;
  --dark-gray: #1a1a1a;
  --medium-gray: #2a2a2a;
  --light-gray: #444;
  --white: #ffffff;
  --text-light: #e0e0e0;
  --text-muted: #888;
  --nav-height: 200px;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text-light);
  overflow-x: hidden;
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.65;
}

h1,
h2,
h3,
h4,
.logo,
.price,
.stat-number {
  font-family: 'Bodoni Moda', serif;
  letter-spacing: 0.9px;
}



body.menu-open {
  overflow: hidden;
}

/* BRAND (LOGO IMAGE + TEXT) */
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  height: 42px;
  width: auto;
  display: block;
}


/* BURGER MENU */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 22px;
  position: relative;
  z-index: 1100;
}

.burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
}

.burger span:nth-child(1) {
  top: 0;
}

.burger span:nth-child(2) {
  top: 10px;
}

.burger span:nth-child(3) {
  bottom: 0;
}

/* Burger active animation */
.burger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

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

.burger.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 10px;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  left: 0;
  right: 0;
  will-change: transform;
}

/* Right side container */
.nav-right {
  display: flex;
  align-items: centre;
  gap: 1.25rem;
  /* controls distance between menu and language */
}

.nav.scrolled {
  padding: 1rem 5%;
  background: rgba(10, 10, 10, 0.98);
}

.logo {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}

.nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav a {
  text-decoration: none;
  color: var(--text-light);
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-weight: 400;
  position: relative;
}

.nav a:hover {
  color: var(--gold);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

/* Default (desktop) */
.lang-switcher {
  display: flex;
  gap: 0.5rem;
  align-items: centre;
}

/* Mobile defaults */
.lang-switcher.mobile {
  display: none;
}

.lang-switcher button {
  background: transparent;
  border: 1px solid var(--light-gray);
  padding: 0.5rem 1rem;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.lang-switcher button:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.lang-switcher button.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* HERO */
.hero,
.section {
  overflow-x: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
    url('https://images.unsplash.com/photo-1514933651103-005eec06c04b?auto=format&fit=crop&w=2074&q=80') center / cover no-repeat;
  will-change: transform;
  z-index: 0;
}

.hero-overlay {
  z-index: 1;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}


/* HERO LOGO + EETCAFÉ */
.hero-logo-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.hero-logo-image {
  width: 300px;
  max-width: 90vw;
  height: auto;
  opacity: 0;
  transform: translateY(30px);
}

.hero-eetcafe {
  font-size: 2.2rem;
  letter-spacing: 6px;
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(30px);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
  transform: translateY(-4rem);
}

.hero-title {
  font-size: 4.5rem;
  letter-spacing: 4px;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-sub {
  margin: 1.5rem 0 2.5rem;
  font-size: 1.4rem;
  opacity: 0;
  transform: translateY(30px);
  color: var(--text-light);
  font-weight: 300;
}

.hero-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 1.5rem;
  justify-content: centre;
}




.btn {
  padding: 1rem 2.5rem;
  border: 2px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  opacity: 0;
  transform: translateY(30px);
  background: transparent;
  border-radius: 2px;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  z-index: 10;
  pointer-events: auto !important;
  cursor: pointer !important;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

/* Make sure buttons are visually distinct */
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(30, 42, 58, 0.3);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.scroll-indicator {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 3;
}


.scroll-arrow {
  width: 2px;
  height: 30px;
  background: var(--gold);
  position: relative;
  animation: bounce 2s infinite;
  will-change: transform;
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: -4px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/* SECTIONS */
.section {
  padding: 6rem 10%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.alt {
  background: rgba(24, 22, 22, 0.829);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ABOUT */
#about {
  position: relative;
  background: #fef3e4;
}


#about::before {
  content: "";
  position: absolute;
  top: 1rem;
  /* distance from top of section */
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 90vw);
  /* total width of the line */
  height: 6px;
  /* thickness */
  background: linear-gradient(to right,
      #000 0%,
      #000 33.33%,
      #fdda24 33.33%,
      #fdda24 66.66%,
      #ef3340 66.66%,
      #ef3340 100%);
  border-radius: 2px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--black);
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--black);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
  padding: 1.5rem;
  background: rgba(231, 231, 227, 0.743);
  border-radius: 8px;
}

.stat-number {
  display: block;
  color: var(--black);
  font-size: large;
  font-weight: 900;
}

.stat-label {
  color: var(--black);
  font-size: 0.9rem;
}

/* ABOUT IMAGE WITH ORANGE OVERLAY */
.about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(238, 195, 149, 0.141);
  /* orange cover */
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image:hover::after {
  opacity: 0.85;
}

/* MENUS */
/* MENU PDF LINK */
.menu-pdf {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.menu-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border-radius: 4px;
  background: transparent;
}

.menu-pdf-btn:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
}

.menu-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.tab {
  padding: 1rem 2rem;
  background: var(--black);
  border: 1px solid var(--medium-gray);
  cursor: pointer;
  color: var(--text-light);
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 140px;
  justify-content: center;
}

.tab:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.tab.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.tab-icon {
  font-size: 1.2rem;
}

.menu-content {
  display: none;
}

.menu-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dish {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  align-items: center;
}

.dish:hover {
  border-color: var(--gold);
  transform: translateX(10px);
}

.dish-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.dish-image img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.dish:hover .dish-image img {
  transform: scale(1.1);
}

.dish-content h3 {
  margin-bottom: 0.5rem;
  color: var(--white);
  font-size: 1.3rem;
}

.dish-content p {
  color: var(--white);
  line-height: 1.5;
}

.price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  font-family: "Playfair Display", serif;
}

.wine-category {
  margin-bottom: 3rem;
}

.wine-category h3 {
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-size: 1.5rem;
  border-bottom: 1px solid var(--medium-gray);
  padding-bottom: 0.5rem;
}

.wine-list {
  list-style: none;
  padding: 0;
}

.wine-list li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--medium-gray);
  align-items: center;
  transition: background 0.3s ease;
}

.wine-list li:hover {
  background: rgba(255, 255, 255, 0.03);
}

.wine-list li strong {
  color: var(--white);
}

.wine-list li span:not(.price) {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* GALLERY */

/* GALLERY CAROUSEL */
.gallery-carousel {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
}

.gallery-track {
  position: relative;
}

.gallery-slide {
  display: none;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gallery-slide.active {
  display: block;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-slide .gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.2rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: var(--white);
}

/* Navigation buttons */
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 2.5rem;
  width: 48px;
  height: 48px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.gallery-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.gallery-btn.prev {
  left: 1rem;
}

.gallery-btn.next {
  right: 1rem;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2rem 1rem 1rem;
  color: var(--white);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

/* BOOKING CONFIRMATION */
/* ENHANCED BOOKING SECTION */

/* Section Header Decor */
.section-header-decor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.decor-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  max-width: 100px;
}

/* Belgian Flag */
.belgian-flag {
  display: flex;
  justify-content: center;
  gap: 0;
  height: 4px;
  margin: 1.5rem auto 0;
  max-width: 150px;
  border-radius: 2px;
  overflow: hidden;
}

.flag-black,
.flag-yellow,
.flag-red {
  flex: 1;
  height: 100%;
}

.flag-black {
  background: #000000;
}

.flag-yellow {
  background: #fdda24;
}

.flag-red {
  background: #ef3340;
}

/* Elegant Booking Wrapper */
.booking-elegant-wrapper {
  max-width: 900px;
  /* Reduced from 1000px */
  margin: 0 auto;
}

/* Booking Card */
.booking-card {
  background: var(--dark-gray);
  border-radius: 14px;
  /* Reduced from 16px */
  overflow: hidden;
  margin-bottom: 2.5rem;
  /* Reduced from 3rem */
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  /* Reduced shadow */
}

.booking-card-header {
  padding: 1.5rem 1.5rem 1rem;
  /* Reduced padding */
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  border-bottom: 1px solid rgb(255, 255, 255);
}

.booking-card-header h3 {
  font-size: 1.6rem;
  /* Reduced from 1.8rem */
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-family: 'Bodoni Moda', serif;
}

.booking-card-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  /* Slightly smaller */
}

/* Calendly Container - Adjusted for perfect centering */
.calendly-container {
  padding: 1rem;
  background: var(--white);
  border-radius: 0 0 14px 14px;
  height: 620px;
  /* Reduced from 650px for smaller container */
  overflow: hidden;
  display: flex;
  justify-content: center;
  /* Center horizontally */
  align-items: center;
  /* Center vertically */
}

.calendly-inline-widget {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-height: 700px !important;
  /* Reduced from 750px for smaller widget */
  min-height: 300px !important;
  width: 100%;
  /* Ensure it takes full container width */
  max-width: 1000px;
  /* Optional: control max width */
  margin: 0 auto;
  /* Center within container */
}

/* Booking Alternatives */
.booking-alternatives {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  /* Reduced min width */
  gap: 1.5rem;
  /* Reduced from 2rem */
  margin-bottom: 2.5rem;
  /* Reduced from 3rem */
}

.alternative-option {
  display: flex;
  gap: 1.25rem;
  /* Reduced from 1.5rem */
  padding: 1.25rem;
  /* Reduced from 1.5rem */
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  /* Reduced from 12px */
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  align-items: flex-start;
}

.alternative-option:hover {
  border-color: var(--white);
  transform: translateY(-3px);
  /* Reduced from -4px */
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.12);
  /* Reduced shadow */
}

.alternative-icon {
  flex-shrink: 0;
  width: 44px;
  /* Reduced from 48px */
  height: 44px;
  /* Reduced from 48px */
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.alternative-icon svg {
  width: 22px;
  /* Reduced from 24px */
  height: 22px;
  /* Reduced from 24px */
  stroke: var(--white);
}

.alternative-content h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
  /* Reduced from 0.75rem */
  font-size: 1.1rem;
  /* Reduced from 1.2rem */
  font-family: 'Bodoni Moda', serif;
}

.alternative-content p {
  color: var(--text-light);
  margin-bottom: 0.5rem;
  line-height: 1.5;
  font-size: 0.95rem;
  /* Slightly smaller */
}

/* Update your existing phone-number class or add these styles */
.phone-number {
  display: inline-block;
  color: var(--white);
  /* Use solid color instead of gradient */
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 0.25rem;
  text-decoration: none;
  /* Remove underline */
  transition: all 0.3s ease;
  position: relative;
}

/* Add a hover effect */
.phone-number:hover {
  color: var(--white);
  transform: translateY(-2px);
}

/* Create gradient effect without interfering with the link */
.phone-number::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, var(--white), var(--white));
  border-radius: 1px;
  opacity: 0.7;
}

/* Ensure the strong tag inside gets proper styling */
.phone-number strong {
  color: inherit;
  background: transparent;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
}

/* Make the entire phone section clickable */
.phone-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  transition: all 0.3s ease;
}

.phone-link:hover .phone-number {
  color: var(--white);
  transform: translateY(-2px);
}

/* You can also make the entire alternative option clickable */
.alternative-option.phone-clickable {
  cursor: pointer;
  transition: all 0.3s ease;
}

.alternative-option.phone-clickable:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: var(--white);
}

.opening-hours,
.walk-in {
  color: var(--text-muted);
  font-size: 0.85rem;
  /* Reduced from 0.9rem */
  margin-top: 0.5rem;
}

/* Reservation Tips */
.reservation-tips {
  text-align: center;
  padding: 1.25rem;
  /* Reduced from 1.5rem */
  background: rgba(212, 175, 55, 0.05);
  border-radius: 10px;
  /* Reduced from 12px */
  border-left: 4px solid var(--white);
  margin-top: 1.5rem;
  /* Reduced from 2rem */
}

.reservation-tips .tip {
  color: var(--text-light);
  font-size: 0.9rem;
  /* Reduced from 0.95rem */
  line-height: 1.6;
  margin: 0;
}

.reservation-tips strong {
  color: var(--gold);
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-header-decor {
    flex-direction: column;
    gap: 1rem;
  }

  .decor-line {
    width: 100%;
    max-width: 200px;
  }

  .booking-alternatives {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .alternative-option {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 1.25rem 1rem;
  }

  .booking-card-header {
    padding: 1.25rem 1rem;
  }

  .calendly-container {
    padding: 0.75rem;
  }

  /* Even smaller Calendly on mobile */
  .calendly-inline-widget {
    height: 500px !important;
    min-height: 500px !important;
  }
}

@media (max-width: 480px) {
  .booking-card-header h3 {
    font-size: 1.4rem;
    /* Smaller on mobile */
  }

  .phone-number {
    font-size: 1.2rem;
  }

  /* Extra small on very small screens */
  .calendly-inline-widget {
    height: 450px !important;
    min-height: 450px !important;
    min-width: 280px !important;
  }

  .booking-card {
    border-radius: 12px;
  }
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 2rem;
  color: var(--white);
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--gold);
  min-width: 40px;
}

.contact-item strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.contact-item p {
  color: var(--white);
  margin: 0;
}

.map-container {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

/* Fix the map placeholder to ensure button is visible */
.map-placeholder {
  position: relative;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
}

/* Ensure iframe doesn't cover the button */
.map-placeholder iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 1;
  /* Lower z-index than button */
}

/* Add a subtle overlay to make button more visible */
.map-placeholder::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  pointer-events: none;
  z-index: 2;
  /* Between iframe and button */
}

/* Remove the old map-overlay if it exists */
.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-overlay {
  display: none;
}

/* NAVIGATION MODAL - CENTERED AND ELEGANT */

/* MINIMAL YET APPEALING NAVIGATE BUTTON */
.navigate-btn {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.9rem 2.2rem;
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
  border-radius: 8px;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  letter-spacing: 0.8px;
  font-size: 1rem;
  text-transform: uppercase;
  min-width: 160px;
}

.navigate-btn:hover {
  background: var(--black);
  color: var(--gold);
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
  border-color: var(--gold);
}

.navigate-btn:active {
  transform: translateX(-50%) translateY(-1px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

/* Add subtle arrow indicator */
.navigate-btn::after {
  content: " →";
  font-weight: 400;
  opacity: 0.8;
  transition: transform 0.3s ease;
}

.navigate-btn:hover::after {
  transform: translateX(4px);
}

/* Ensure good contrast on map */
.navigate-btn {
  backdrop-filter: blur(4px);
  background: rgba(212, 175, 55, 0.95);
}

.navigate-btn:hover {
  background: rgba(10, 10, 10, 0.95);
}

/* Responsive */
@media (max-width: 768px) {
  .navigate-btn {
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
    min-width: 140px;
    bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .navigate-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    min-width: 130px;
    bottom: 0.8rem;
  }
}

/* ======================
   ENHANCED NAVIGATION MODAL
   ====================== */

.nav-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 2rem;
}

.nav-modal.active {
  display: flex;
}

.nav-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.nav-modal-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.nav-modal-card {
  background: var(--dark-gray);
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.nav-modal-header {
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), transparent);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-modal-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.nav-modal-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
}

.nav-modal-header h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-family: 'Bodoni Moda', serif;
}

.nav-modal-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0;
}

/* Navigation Options */
.nav-options {
  padding: 1.5rem 2rem;
}

.nav-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
}

.nav-option:last-child {
  margin-bottom: 0;
}

.nav-option:hover {
  transform: translateX(8px);
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(212, 175, 55, 0.05);
}

.nav-option.google-maps:hover {
  border-color: #4CAF50;
  background: rgba(76, 175, 80, 0.05);
}

.nav-option.apple-maps:hover {
  border-color: #000000;
  background: rgba(0, 0, 0, 0.1);
}

.nav-option.waze:hover {
  border-color: #3336c7;
  background: rgba(51, 54, 199, 0.05);
}

.nav-option-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-option-icon svg {
  width: 28px;
  height: 28px;
}

.nav-option-content {
  flex: 1;
}

.nav-option-content strong {
  display: block;
  color: var(--white);
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.nav-option-content span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.nav-option-arrow {
  color: var(--text-muted);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.nav-option:hover .nav-option-arrow {
  transform: translateX(4px);
  color: var(--gold);
}

/* Address Section */
.nav-address {
  padding: 1.5rem 2rem;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.address-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.address-text {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.address-copy {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.address-copy:hover {
  background: rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}

.address-copy svg {
  width: 16px;
  height: 16px;
}

/* Modal Footer */
.nav-modal-footer {
  padding: 1.5rem 2rem;
  text-align: center;
}

.nav-modal-close {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-modal-close:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.02);
}

.nav-modal-close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

/* Responsive for Modal */
@media (max-width: 768px) {
  .nav-modal {
    padding: 1rem;
  }

  .nav-modal-card {
    border-radius: 16px;
  }

  .nav-modal-header,
  .nav-options,
  .nav-address,
  .nav-modal-footer {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .nav-modal-header h3 {
    font-size: 1.5rem;
  }

  .nav-modal-subtitle {
    font-size: 0.9rem;
  }

  .nav-option {
    padding: 1rem;
  }
}

/* FOOTER */
footer {
  background: var(--black);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--medium-gray);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section p {
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--gold);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem;
  background: var(--dark-gray);
  border: 1px solid var(--medium-gray);
  border-radius: 4px;
  color: var(--text-light);
}

.newsletter-form button {
  padding: 0.75rem 1.5rem;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--gold-dark);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--medium-gray);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    padding: 1rem 5%;
    gap: 1rem;
  }

  footer .container {
    padding: 0 1.5rem;
  }

  .hero-logo-image {
    width: 120px;
  }

  .hero-eetcafe {
    font-size: 1.8rem;
    letter-spacing: 4px;
  }

  .brand {
    gap: 1rem;
  }

  .brand-logo {
    height: 46px;
  }

  .gallery-btn {
    width: 40px;
    height: 40px;
    font-size: 2rem;
  }

  .nav ul {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-sub {
    font-size: 1.2rem;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 200px;
    /* slightly smaller */
    padding: 0.7rem 1.25rem;
    font-size: 0.85rem;
    text-align: center;
    justify-content: center;
  }

  .hero-buttons .btn span {
    white-space: nowrap;
  }

  .section {
    padding: 4rem 5%;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  .dish {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }

  .menu-tabs {
    justify-content: center;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .brand-logo {
    height: 34px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .menu-tabs {
    flex-direction: column;
    align-items: center;
  }

  .tab {
    width: 100%;
    max-width: 200px;
  }

  .wine-list li {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    text-align: center;
  }
}

/* TASTING PAGE STYLES */
.info-item {
  text-align: center;
}

.info-label {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-value {
  display: block;
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 600;
  font-family: "Playfair Display", serif;
}

/* Responsive adjustments for tasting page */
@media (max-width: 768px) {
  .burger {
    display: block;
  }

  .nav {
    flex-direction: row;
    justify-content: space-between;
  }

  .nav nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
    padding-bottom: 2rem;
  }

  .nav nav.open {
    max-height: 400px;
  }

  .nav ul {
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    gap: 1.5rem;
  }

  .lang-switcher.desktop {
    display: none;
    margin-left: 0.5rem;
    /* fine-tune horizontal position */
  }

  .lang-switcher.mobile {
    display: flex;
    justify-content: centre;
    margin-top: 0.5rem;
  }
}