/* ==========================================================================
   TRISTAN Sea & Food Experience - Luxury Design System & 60FPS Performance
   Siviri, Halkidiki, Greece
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@200;300;400;500;600&display=swap');

:root {
  /* Color Palette */
  --color-navy: #081c2c;
  --color-navy-dark: #040e16;
  --color-navy-light: #0d263b;
  --color-warm-white: #faf9f6;
  --color-sand: #e8ddc6;
  --color-sand-light: #f4eee1;
  --color-gold: #c9a15d;
  --color-gold-hover: #dbb36f;
  --color-gold-glow: rgba(201, 161, 93, 0.25);
  --color-sea-blue: #eef7fb;
  --color-sea-blue-dark: #d8ecf6;
  --color-gray-light: #f4f7f9;
  --color-text-dark: #121c24;
  --color-text-muted: #62727d;
  --color-text-light: #e0e8ef;
  --color-border-gold: rgba(201, 161, 93, 0.3);
  --color-border-light: rgba(8, 28, 44, 0.08);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-medium: 0.25s ease;

  /* Shadows */
  --shadow-luxury: 0 10px 25px rgba(8, 28, 44, 0.05);
  --shadow-card-hover: 0 15px 30px rgba(8, 28, 44, 0.1);
  --shadow-gold-glow: 0 5px 15px rgba(201, 161, 93, 0.15);

  /* Spacing */
  --section-padding-desktop: 120px;
  --container-max-width: 1360px;
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  background-color: var(--color-warm-white);
  color: var(--color-text-dark);
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  background-color: var(--color-warm-white);
  transform: translateZ(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-navy-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 4px;
}

/* Typography Utilities */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.subtitle-uppercase {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1rem;
}

.text-gold { color: var(--color-gold) !important; }
.text-italic { font-style: italic; }

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Buttons */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.1rem 2.5rem;
  background: var(--color-gold);
  color: var(--color-navy-dark);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--color-gold);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: var(--shadow-gold-glow);
  will-change: transform;
}

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

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.1rem 2.5rem;
  background: transparent;
  color: var(--color-warm-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(250, 249, 246, 0.4);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-outline-white:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(8, 28, 44, 0.4);
}

.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--color-navy);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--color-navy);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
}

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

/* ==========================================================================
   NAVIGATION & HARDWARE-ACCELERATED HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.8rem 0;
  transition: padding 0.25s ease, background 0.25s ease;
  transform: translateZ(0);
}

.site-header.scrolled, .site-header.inner-page {
  background: rgba(8, 28, 44, 0.96);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201, 161, 93, 0.2);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  cursor: pointer;
}

.logo-icon-svg {
  width: 40px;
  height: 40px;
  fill: var(--color-gold);
  transition: transform 0.3s ease;
}

.site-logo:hover .logo-icon-svg {
  transform: scale(1.05);
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--color-warm-white);
  line-height: 1;
}

.logo-subtitle {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 249, 246, 0.85);
  text-decoration: none;
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: all 0.2s ease;
  transform: translateX(-50%);
}

.nav-link:hover, .nav-link.active { color: var(--color-warm-white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.header-actions .btn-gold {
  white-space: nowrap !important;
  padding: 0.65rem 1.25rem !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.08em !important;
  flex-shrink: 0 !important;
  text-decoration: none;
}

/* Language Dropdown */
.lang-selector-wrap { position: relative; }
.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(250, 249, 246, 0.06);
  border: 1px solid rgba(201, 161, 93, 0.3);
  padding: 0.5rem 0.9rem;
  border-radius: 2px;
  color: var(--color-warm-white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lang-btn:hover { background: rgba(201, 161, 93, 0.15); border-color: var(--color-gold); }
.lang-flag-current { width: 18px; height: 12px; object-fit: cover; }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 220px;
  background: var(--color-navy-dark);
  border: 1px solid var(--color-border-gold);
  border-radius: 4px;
  padding: 0.6rem 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1100;
  max-height: 380px;
  overflow-y: auto;
}

.lang-selector-wrap:hover .lang-dropdown, .lang-dropdown.active {
  opacity: 1; visibility: visible; transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.2rem;
  color: rgba(250, 249, 246, 0.8);
  font-size: 0.78rem;
  cursor: pointer;
  transition: background 0.15s ease;
}

.lang-option:hover, .lang-option.active {
  background: rgba(201, 161, 93, 0.15);
  color: var(--color-gold);
}

.lang-flag { width: 20px; height: 13px; object-fit: cover; }

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-toggle span { width: 100%; height: 2px; background: var(--color-warm-white); }

/* ==========================================================================
   PAGE HERO FOR INNER PAGES
   ========================================================================== */
.page-hero-section {
  position: relative;
  padding: 190px 0 100px;
  background: var(--color-navy-dark);
  color: var(--color-warm-white);
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: brightness(0.7);
  transform: translateZ(0);
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.8rem);
  font-weight: 300;
  color: var(--color-warm-white);
  margin-bottom: 0.8rem;
}

.page-hero-subtitle {
  font-size: 1.05rem;
  color: var(--color-sand);
  letter-spacing: 0.08em;
}

/* ==========================================================================
   USER-PROVIDED ICON BACKGROUND WATERMARKS
   ========================================================================== */
.user-provided-watermark {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  width: 440px;
  height: auto;
  opacity: 0.12;
  mix-blend-mode: multiply;
  filter: grayscale(20%);
  transform: translateZ(0);
}

.watermark-left-top { left: -50px; top: 6%; }
.watermark-right-bottom { right: -50px; bottom: 5%; }
.watermark-right-top { right: -50px; top: 8%; }

/* ==========================================================================
   HERO SECTION WITH VIDEO
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-navy-dark);
  transform: translateZ(0);
}

.hero-video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transform: translateZ(0);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.0);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(8, 28, 44, 0.4) 0%, rgba(4, 14, 22, 0.85) 100%),
              linear-gradient(to bottom, rgba(8, 28, 44, 0.5) 0%, transparent 40%, rgba(8, 28, 44, 0.9) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--color-warm-white);
  max-width: 900px;
  padding: 0 1.5rem;
  margin-top: 2rem;
}

.hero-subhead {
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  line-height: 1.05;
  color: var(--color-warm-white);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-style: italic;
  color: var(--color-sand);
  margin-bottom: 2rem;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin: 0 auto 2.5rem;
  width: 180px;
}

.hero-divider-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--color-gold), transparent); }
.hero-divider-trident { width: 18px; height: 18px; fill: var(--color-gold); }

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 4.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-sand);
  text-decoration: none;
}

.scroll-text { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.8; }
.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1px solid var(--color-border-gold);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  width: 3px;
  height: 7px;
  background: var(--color-gold);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite ease-in-out;
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

.hero-wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 4;
}

.hero-wave-svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
}

.hero-wave-svg path { fill: var(--color-sea-blue); }

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section-menu-highlights {
  background-color: var(--color-sea-blue);
  padding: var(--section-padding-desktop) 0;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--color-navy);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.menu-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
  z-index: 2;
  margin-bottom: 4rem;
}

.menu-card {
  background: var(--color-warm-white);
  border-radius: 8px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-luxury);
  border: 1px solid var(--color-border-light);
  transition: transform 0.25s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  will-change: transform;
}

.menu-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-border-gold);
}

.menu-card-icon-wrap {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--color-sea-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  transition: background 0.2s ease;
  border: 1px solid var(--color-border-gold);
}

.menu-card:hover .menu-card-icon-wrap {
  background: var(--color-gold);
}

.menu-card-icon {
  width: 36px;
  height: 36px;
  fill: var(--color-navy);
}

.menu-card-title {
  font-size: 1.8rem;
  color: var(--color-navy);
  margin-bottom: 1rem;
}

.menu-card-desc {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.menu-card-image-reveal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s ease;
  z-index: 10;
  overflow: hidden;
}

.menu-card-image-reveal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.4s ease;
}

.menu-card:hover .menu-card-image-reveal img {
  transform: scale(1.12);
}

.menu-card-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(8, 28, 44, 0.94) 0%, rgba(8, 28, 44, 0.6) 50%, rgba(8, 28, 44, 0.45) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 2.2rem 1.8rem;
  text-align: center;
  color: var(--color-warm-white);
}

.menu-card:hover .menu-card-image-reveal { opacity: 1; visibility: visible; }

/* ==========================================================================
   MENU PAGE STYLING & STICKY CATEGORIES BAR
   ========================================================================== */
.full-menu-section {
  padding: 80px 0 var(--section-padding-desktop);
  background: var(--color-gray-light);
  position: relative;
  overflow: visible;
}

.menu-tabs-nav {
  position: -webkit-sticky;
  position: sticky;
  top: 70px;
  z-index: 990;
  background: rgba(244, 247, 249, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.1rem 1rem;
  margin-bottom: 3.5rem;
  border-top: 1px solid rgba(201, 161, 93, 0.25);
  border-bottom: 1px solid rgba(201, 161, 93, 0.35);
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 4px 15px rgba(8, 28, 44, 0.08);
}

.menu-tab-btn {
  padding: 0.8rem 1.6rem;
  background: var(--color-warm-white);
  border: 1px solid var(--color-border-gold);
  color: var(--color-navy);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.15s ease, color 0.15s ease;
  flex-shrink: 0;
  white-space: nowrap;
}

.menu-tab-btn.active, .menu-tab-btn:hover {
  background: var(--color-navy);
  color: var(--color-gold);
  border-color: var(--color-navy);
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 4rem;
  max-width: 1150px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.menu-item-row {
  border-bottom: 1px solid rgba(8, 28, 44, 0.1);
  padding-bottom: 1.5rem;
  transition: border-color 0.2s ease;
  position: relative;
}

.menu-item-row:hover { border-color: var(--color-gold); }

.menu-item-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

.menu-item-title-translated {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--color-navy);
  font-weight: 500;
}

.menu-item-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(8, 28, 44, 0.25);
  margin: 0 0.8rem;
}

.menu-item-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-gold);
  font-weight: 600;
}

/* CUSTOMER SELECTION ADD BUTTON */
.btn-add-customer {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(201, 161, 93, 0.15);
  color: var(--color-navy);
  border: 1px solid var(--color-gold);
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  margin-top: 0.6rem;
}

.btn-add-customer:hover {
  background: var(--color-gold);
  color: var(--color-navy-dark);
}

/* FLOATING CUSTOMER SELECTION BAR & ULTRA 60FPS DRAWER */
.customer-selection-float-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1500;
  background: var(--color-navy-dark);
  color: var(--color-gold);
  border: 1px solid var(--color-border-gold);
  padding: 1rem 1.8rem;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: transform 0.2s ease, background 0.2s ease;
  will-change: transform;
}

.customer-selection-float-btn:hover {
  background: var(--color-navy);
  transform: translateY(-2px);
}

.customer-badge-count {
  background: var(--color-gold);
  color: var(--color-navy-dark);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

/* HIGH PERFORMANCE SOLID BACKDROP WITHOUT BACKDROP-FILTER BLUR */
.customer-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 14, 22, 0.88);
  z-index: 2100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  will-change: opacity;
}

.customer-drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* GPU HARDWARE ACCELERATED DRAWER */
.customer-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 90vw;
  height: 100vh;
  background: var(--color-navy-dark);
  color: var(--color-warm-white);
  border-left: 1px solid var(--color-border-gold);
  z-index: 2200;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  will-change: transform;
}

.customer-drawer.active {
  transform: translate3d(0, 0, 0);
}

.customer-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(201, 161, 93, 0.2);
}

.customer-drawer-close {
  background: transparent;
  border: none;
  color: var(--color-warm-white);
  font-size: 2rem;
  cursor: pointer;
}

.customer-drawer-close:hover { color: var(--color-gold); }

.customer-tray-items-list {
  flex: 1;
  overflow-y: auto;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.customer-tray-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 249, 246, 0.05);
  padding: 1rem;
  border-radius: 4px;
  border: 1px solid rgba(201, 161, 93, 0.2);
}

.customer-qty-controls {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.customer-qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 3px;
  background: var(--color-navy);
  border: 1px solid var(--color-border-gold);
  color: var(--color-gold);
  font-weight: bold;
  cursor: pointer;
}

.customer-qty-btn:hover { background: var(--color-gold); color: var(--color-navy); }

.customer-drawer-footer {
  border-top: 1px solid rgba(201, 161, 93, 0.2);
  padding-top: 1.5rem;
}

/* EXPERIENCE & ABOUT STYLING */
.section-experience {
  background-color: var(--color-navy);
  color: var(--color-warm-white);
  padding: var(--section-padding-desktop) 0;
  position: relative;
}

.experience-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 6rem;
}

.experience-headline {
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-warm-white);
  margin-bottom: 2rem;
}

.experience-text {
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.9;
  margin-bottom: 2.5rem;
  opacity: 0.85;
}

.experience-photo-wrap { position: relative; }
.experience-photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.experience-photo-frame {
  position: absolute;
  top: 20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-gold);
  border-radius: 4px;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(201, 161, 93, 0.2);
}

.stat-item { text-align: center; padding: 1.5rem; }
.stat-icon { width: 42px; height: 42px; fill: var(--color-gold); margin-bottom: 1.2rem; }
.stat-title { font-family: var(--font-display); font-size: 1.35rem; color: var(--color-warm-white); margin-bottom: 0.4rem; }
.stat-subtitle { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-gold); opacity: 0.8; }

/* GALLERY STYLING */
.section-gallery {
  background-color: var(--color-warm-white);
  padding: var(--section-padding-desktop) 0;
  position: relative;
  overflow: hidden;
}

.gallery-filters {
  position: -webkit-sticky;
  position: sticky;
  top: 70px;
  z-index: 990;
  background: rgba(250, 249, 246, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 0.5rem;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(8, 28, 44, 0.05);
}

.gallery-filter-btn {
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 0.5rem 1rem;
  position: relative;
  transition: color 0.2s ease;
}

.gallery-filter-btn.active, .gallery-filter-btn:hover { color: var(--color-navy); }
.gallery-filter-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: all 0.2s ease;
  transform: translateX(-50%);
}
.gallery-filter-btn.active::after { width: 60%; }

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  position: relative;
  z-index: 2;
}

.gallery-item {
  width: 100%;
  aspect-ratio: 4 / 3;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-luxury);
  border: 1px solid rgba(201, 161, 93, 0.2);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 28, 44, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gallery-item-zoom {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item-zoom svg { width: 20px; height: 20px; fill: var(--color-gold); }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* ABOUT SECTION */
.section-about {
  background-color: var(--color-sea-blue);
  padding: var(--section-padding-desktop) 0;
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* CONTACT PAGE STYLING */
.section-contact-page {
  padding: var(--section-padding-desktop) 0;
  background: var(--color-sea-blue);
  position: relative;
  overflow: hidden;
}

.contact-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 2;
}

.contact-info-card {
  background: var(--color-navy);
  color: var(--color-warm-white);
  padding: 3.5rem;
  border-radius: 6px;
  box-shadow: var(--shadow-luxury);
  border: 1px solid var(--color-border-gold);
}

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

.contact-info-icon {
  width: 24px;
  height: 24px;
  fill: var(--color-gold);
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-form-wrap {
  background: var(--color-warm-white);
  padding: 3.5rem;
  border-radius: 6px;
  box-shadow: var(--shadow-card-hover);
  border: 1px solid var(--color-border-light);
}

/* RESERVATION CTA & MODAL */
.section-reservation-cta {
  position: relative;
  padding: 160px 0;
  background: var(--color-navy-dark);
  color: var(--color-warm-white);
  text-align: center;
  overflow: hidden;
}

.reservation-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: brightness(0.8);
}

.reservation-cta-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: 0 auto;
}

.lightbox-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 14, 22, 0.95);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  padding: 2rem;
}

.lightbox-backdrop.active { opacity: 1; visibility: visible; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 4px; }
.lightbox-close { position: absolute; top: 2rem; right: 2rem; color: var(--color-warm-white); font-size: 2.5rem; background: transparent; border: none; cursor: pointer; }

/* OPTIMIZED BLOWING WIND CANVAS OVERLAY */
.wind-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 3000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wind-canvas.active { opacity: 1; }

/* FOOTER */
.site-footer {
  background-color: var(--color-navy-dark);
  color: var(--color-warm-white);
  padding: 100px 0 40px;
  position: relative;
  border-top: 1px solid rgba(201, 161, 93, 0.2);
}

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

.footer-brand { display: flex; flex-direction: column; gap: 1.5rem; }
.footer-desc { font-size: 0.9rem; color: var(--color-text-muted); max-width: 320px; line-height: 1.8; }
.footer-heading { font-family: var(--font-display); font-size: 1.35rem; color: var(--color-sand); margin-bottom: 1.5rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-link { color: rgba(250, 249, 246, 0.7); text-decoration: none; font-size: 0.88rem; transition: color 0.2s ease; }
.footer-link:hover { color: var(--color-gold); }

.social-icons { display: flex; gap: 1rem; margin-top: 1rem; }
.social-icon-btn {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--color-border-gold);
  display: flex; align-items: center; justify-content: center; color: var(--color-warm-white); text-decoration: none; transition: background 0.2s ease;
}
.social-icon-btn svg { width: 18px; height: 18px; fill: var(--color-gold); }
.social-icon-btn:hover { background: var(--color-gold); border-color: var(--color-gold); }
.social-icon-btn:hover svg { fill: var(--color-navy-dark); }

.footer-bottom {
  padding-top: 2.5rem;
  border-top: 1px solid rgba(250, 249, 246, 0.08);
  display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: var(--color-text-muted);
}

.mobile-only-reserve { display: none; }

/* RESPONSIVE MEDIA QUERIES & MOBILE DROPDOWN MENU */
@media (min-width: 901px) {
  .mobile-only-reserve { display: none !important; }
}

@media (max-width: 900px) {
  .site-header {
    height: 64px;
    padding: 0.6rem 0 !important;
    background: rgba(8, 28, 44, 0.98) !important;
    border-bottom: 1px solid rgba(201, 161, 93, 0.25) !important;
  }

  .header-container {
    height: 100%;
  }

  .logo-icon-svg {
    width: 32px;
    height: 32px;
  }

  .logo-title {
    font-size: 1.3rem;
  }

  .logo-subtitle {
    font-size: 0.48rem;
    letter-spacing: 0.25em;
  }

  /* Hide header call button on mobile top bar so it doesn't crowd or wrap */
  .header-actions > .btn-gold {
    display: none !important;
  }

  .header-actions {
    gap: 0.8rem;
  }

  .lang-btn {
    padding: 0.35rem 0.6rem;
    font-size: 0.72rem;
  }

  .mobile-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: rgba(201, 161, 93, 0.12);
    border: 1px solid rgba(201, 161, 93, 0.35);
    border-radius: 4px;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, border-color 0.2s ease;
  }

  .mobile-toggle span {
    width: 20px;
    height: 2px;
    background: var(--color-gold);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* MOBILE SLIDING DROPDOWN MENU */
  .nav-menu {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: #081c2c;
    border-bottom: 2px solid var(--color-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
    list-style: none;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s ease, padding 0.3s ease;
    z-index: 999;
  }

  .nav-menu.active {
    max-height: 520px;
    opacity: 1;
    visibility: visible;
    padding: 1.5rem 1.2rem 2rem 1.2rem;
    gap: 0.6rem;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
  }

  .nav-menu .nav-link {
    display: block;
    width: 100%;
    font-size: 1.05rem;
    letter-spacing: 0.18em;
    padding: 0.75rem 0;
    color: var(--color-warm-white);
    border-bottom: 1px solid rgba(201, 161, 93, 0.12);
  }

  .nav-menu .nav-link.active, .nav-menu .nav-link:hover {
    color: var(--color-gold);
    border-bottom-color: var(--color-gold);
  }

  .mobile-only-reserve {
    display: block !important;
    width: 100%;
    text-align: center;
    margin-top: 0.6rem;
  }

  .mobile-dropdown-reserve-btn {
    display: inline-flex !important;
    width: 100%;
    max-width: 320px;
    padding: 0.9rem 1.5rem !important;
    font-size: 0.85rem !important;
    justify-content: center;
  }

  .menu-cards-grid, .experience-split, .about-grid, .contact-split-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { column-count: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }

  /* 100% GUARANTEED STICKY CATEGORIES BAR ON MOBILE */
  .menu-tabs-nav {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 64px !important;
    z-index: 980 !important;
    background: rgba(244, 247, 249, 0.98) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    padding: 0.8rem 0.6rem !important;
    margin-bottom: 2rem !important;
    border-top: 1px solid rgba(201, 161, 93, 0.25) !important;
    border-bottom: 1px solid rgba(201, 161, 93, 0.35) !important;
    display: flex !important;
    justify-content: flex-start !important;
    gap: 0.5rem !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    box-shadow: 0 4px 15px rgba(8, 28, 44, 0.08) !important;
  }

  .menu-tabs-nav::-webkit-scrollbar { display: none; }
}

@media (max-width: 640px) {
  .hero-title { font-size: 2.8rem; }
  .gallery-masonry, .stats-grid, .menu-items-grid, .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* COMPREHENSIVE MOBILE OPTIMIZATION & ZERO HORIZONTAL OVERFLOW */
html, body {
  width: 100%;
  max-width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
}

body {
  overflow-x: clip;
}

img, video, canvas {
  max-width: 100%;
}

.user-provided-watermark {
  pointer-events: none;
}

@media (max-width: 768px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .user-provided-watermark {
    max-width: 90px;
    opacity: 0.1;
  }
  .hero-title {
    font-size: clamp(2.2rem, 8.5vw, 3.8rem) !important;
  }
  .menu-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .menu-card {
    min-height: 340px !important;
  }
  .customer-selection-float-btn {
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: calc(100% - 2rem) !important;
    max-width: 420px !important;
    bottom: 1rem !important;
  }
  .customer-drawer {
    width: 100vw !important;
    max-width: 100vw !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .page-hero-title {
    font-size: 2.2rem !important;
  }
  .menu-tab-btn {
    padding: 0.6rem 1rem !important;
    font-size: 0.75rem !important;
  }
  .gallery-filter-btn {
    padding: 0.6rem 1.2rem !important;
    font-size: 0.75rem !important;
  }
}
