/* GIA BANAKI - Premium Design System & Stylesheet */

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

/* Core Custom Properties */
:root {
  /* Color Palette */
  --sand-50: #fbfaf7;
  --sand-100: #f7f4ed;
  --sand-200: #eeeae0;
  --sand-300: #e2dacf;
  --sand-500: #bfa888; /* Gold Accent / Brass */
  --sand-800: #594f41;
  --charcoal: #141412;
  --charcoal-light: #23221f;
  --white: #ffffff;
  --ocean-blue: #1a3b5c;
  --turquoise: #387b9c;
  --light-olive: #5d6657;
  --dark-olive: #343b2f;

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

  /* Grid & Spacing */
  --space-unit: 1rem;
  --container-max: 1440px;
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --header-height: 130px;

  /* Safe areas for mobile browsers */
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--sand-100);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.6;
}

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

h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.95;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1.05;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.15;
}

p {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--sand-800);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--sand-100);
}
::-webkit-scrollbar-thumb {
  background: var(--sand-300);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--sand-500);
}

/* Utilities */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 4rem;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

.whitespace-large {
  padding: 8rem 0;
}
@media (max-width: 768px) {
  .whitespace-large {
    padding: 4rem 0;
  }
}

.text-center { text-align: center; }
.text-gold { color: var(--sand-500); }
.text-white { color: var(--white); }

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

.image-zoom-container {
  overflow: hidden;
}
.image-zoom-container img {
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.image-zoom-container:hover img {
  transform: scale(1.08);
}

/* Header & Navigation */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  color: var(--white);
}

header.site-header.scrolled {
  background: rgba(13, 15, 18, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  height: 95px;
  color: var(--white);
}

header.site-header.scrolled-dark {
  background: rgba(13, 15, 18, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  height: 95px;
  color: var(--white);
}

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

.logo a {
  display: flex;
  align-items: center;
}

.logo img {
  height: 110px; /* Highly visible premium branding */
  width: auto;
  transition: var(--transition-smooth); /* Smooth sizing transition */
  filter: brightness(0) invert(1); /* Forces logo to be white */
}

/* Shrink logo on scroll */
header.site-header.scrolled .logo img,
header.site-header.scrolled-dark .logo img {
  height: 80px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition-fast);
  color: var(--white); /* White menu links */
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: var(--transition-fast);
}

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

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

/* Hamburger Menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 150;
  width: 30px;
  height: 20px;
  position: relative;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  position: absolute;
  transition: var(--transition-fast);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-radius: 0;
  transition: var(--transition-smooth);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--white);
  border: 1px solid var(--charcoal);
}

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

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}

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

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

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

.btn-gold {
  background: var(--sand-500);
  color: var(--white);
  border: 1px solid var(--sand-500);
}
.btn-gold:hover {
  background: transparent;
  color: var(--sand-500);
}

/* Floating Actions */
.floating-reservation {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 90;
  border-radius: 50px;
  padding: 1.2rem 2rem;
  box-shadow: 0 10px 30px rgba(28, 27, 24, 0.15);
  font-size: 0.75rem;
  background: var(--sand-500);
  color: var(--white);
  border: none;
}
.floating-reservation:hover {
  transform: translateY(-5px);
  background: var(--charcoal);
}

.back-to-top {
  position: fixed;
  bottom: 2.5rem;
  left: 2.5rem;
  z-index: 90;
  width: 50px;
  height: 50px;
  background: var(--white);
  border: 1px solid var(--sand-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

/* HOME PAGE - Hero */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video-container video,
.hero-video-container .hero-fallback-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(20,20,18,0.5) 0%, rgba(20,20,18,0.2) 60%, rgba(20,20,18,0.7) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 500;
  color: var(--sand-300);
}

.hero-title {
  margin-bottom: 2.5rem;
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  animation: floatBounce 2s infinite ease-in-out;
}

.scroll-indicator .mouse-icon {
  width: 20px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  position: relative;
}

.scroll-indicator .mouse-icon::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 6px;
  background: var(--white);
  border-radius: 1px;
  animation: mouseScroll 1.5s infinite;
}

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

@keyframes floatBounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -10px); }
}

/* SECTION - The Experience */
.experience-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

@media (max-width: 992px) {
  .experience-intro {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.exp-text-wrap {
  padding-right: 4rem;
}
@media (max-width: 992px) {
  .exp-text-wrap {
    padding-right: 0;
  }
}

.exp-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--sand-500);
  margin-bottom: 1.5rem;
  display: block;
}

.exp-heading {
  margin-bottom: 2rem;
}

.exp-desc {
  margin-bottom: 2rem;
  color: var(--sand-800);
}

.exp-image-wrap {
  position: relative;
}

.exp-image-wrap img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.03);
}

/* Experience Categories Cards */
.experience-categories {
  background: var(--sand-200);
}

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

@media (max-width: 992px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}

.category-card {
  position: relative;
  height: 480px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
  color: var(--white);
  cursor: pointer;
}

.category-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(20,20,18,0) 50%, rgba(20,20,18,0.85) 100%);
  z-index: 2;
  transition: var(--transition-smooth);
}

.category-card-content {
  position: relative;
  z-index: 3;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.category-card-content h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.category-card-content p {
  font-size: 0.85rem;
  color: var(--sand-300);
  opacity: 0;
  transition: var(--transition-smooth);
}

.category-card:hover .category-card-img {
  transform: scale(1.06);
}

.category-card:hover .category-card-overlay {
  background: linear-gradient(180deg, rgba(20,20,18,0.2) 20%, rgba(20,20,18,0.9) 100%);
}

.category-card:hover .category-card-content {
  transform: translateY(0);
}

.category-card:hover .category-card-content p {
  opacity: 1;
}

/* SECTION - Signature Food */
.signature-food {
  background: var(--sand-50);
}

.magazine-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 6rem;
  align-items: center;
  margin-bottom: 10rem;
}

.magazine-row.reverse {
  grid-template-columns: 0.8fr 1.2fr;
}

.magazine-row.reverse .mag-image-col {
  order: 2;
}
.magazine-row.reverse .mag-text-col {
  order: 1;
}

@media (max-width: 992px) {
  .magazine-row, .magazine-row.reverse {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 6rem;
  }
  .magazine-row.reverse .mag-image-col {
    order: unset;
  }
  .magazine-row.reverse .mag-text-col {
    order: unset;
  }
}

.mag-image-col img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}

.mag-title {
  margin-bottom: 1.5rem;
}
.mag-price {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--sand-500);
  margin-bottom: 1.5rem;
}
.mag-desc {
  margin-bottom: 2.5rem;
  max-width: 480px;
}

/* SECTION - Signature Cocktails (DARK THEME) */
.signature-cocktails {
  background-color: var(--charcoal);
  color: var(--white);
}

.signature-cocktails p {
  color: var(--sand-300);
}

.cocktail-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

@media (max-width: 992px) {
  .cocktail-showcase {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.cocktail-image img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cocktail-details {
  padding-left: 2rem;
}
@media (max-width: 992px) {
  .cocktail-details {
    padding-left: 0;
  }
}

.cocktail-list-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 2rem 0;
  cursor: pointer;
  transition: var(--transition-fast);
}

.cocktail-list-item:hover,
.cocktail-list-item.active {
  border-color: var(--sand-500);
}

.cocktail-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.cocktail-header h3 {
  font-size: 1.6rem;
  transition: var(--transition-fast);
}

.cocktail-list-item:hover h3,
.cocktail-list-item.active h3 {
  color: var(--sand-500);
}

.cocktail-header .price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--sand-500);
}

.cocktail-ingredients {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

/* SECTION - Beach Lifestyle */
.lifestyle-banner {
  position: relative;
  height: 80vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.lifestyle-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lifestyle-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20,20,18,0.3);
  z-index: 2;
}

.lifestyle-banner-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
  color: var(--white);
}

.lifestyle-banner-content h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
}

/* SECTION - Instagram Grid */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

@media (max-width: 992px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.instagram-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.instagram-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 59, 92, 0.85); /* Deep ocean overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  z-index: 2;
  transition: var(--transition-smooth);
}

.instagram-item:hover img {
  transform: scale(1.08);
}

.instagram-item:hover .instagram-hover {
  opacity: 1;
}

.instagram-hover i {
  font-size: 1.5rem;
}

/* Large Call To Action */
.large-cta-section {
  background: var(--sand-200);
  text-align: center;
  position: relative;
}

.large-cta-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.large-cta-wrap h2 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* Luxury Footer */
footer.luxury-footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 6rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer.luxury-footer p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-col img {
  height: 85px !important; /* Larger footer logo */
  width: auto !important;
  filter: brightness(0) invert(1) !important; /* Forces logo to be pure white */
  margin-bottom: 1.5rem !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 4rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--sand-500);
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  color: rgba(255,255,255,0.7);
}

.social-links a:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.05);
}

/* MENU PAGE - Core Layout */
.menu-hero {
  position: relative;
  height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
  background-color: var(--charcoal);
}

.menu-hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.menu-hero-content {
  position: relative;
  z-index: 2;
}

/* Service Mode Slider & Controls */
.menu-controls {
  background: var(--sand-50);
  border-bottom: 1px solid var(--sand-200);
  position: sticky;
  top: var(--header-height);
  z-index: 80;
  padding: 1rem 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.menu-controls-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 992px) {
  .menu-controls-inner {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
}

/* Toggle Switch */
.service-toggle-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.service-toggle {
  position: relative;
  display: inline-flex;
  background: var(--sand-200);
  padding: 4px;
  border-radius: 30px;
  cursor: pointer;
  user-select: none;
}

.toggle-option {
  padding: 0.6rem 1.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 20px;
  transition: var(--transition-fast);
  color: var(--sand-800);
  z-index: 2;
}

.toggle-option.active {
  color: var(--white);
  background: var(--charcoal);
}

.toggle-option.active-beach {
  color: var(--white);
  background: var(--turquoise);
}

/* Search bar */
.search-wrapper {
  position: relative;
  flex-grow: 1;
  max-width: 400px;
}

@media (max-width: 992px) {
  .search-wrapper {
    max-width: 100%;
  }
}

.search-input {
  width: 100%;
  padding: 0.8rem 1rem 0.8rem 2.8rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  border: 1px solid var(--sand-300);
  background: var(--white);
  outline: none;
  transition: var(--transition-fast);
}

.search-input:focus {
  border-color: var(--sand-500);
  box-shadow: 0 4px 12px rgba(191, 168, 136, 0.1);
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--sand-800);
  pointer-events: none;
}

/* Language and Dietary Filters Bar */
.filters-bar {
  background: var(--sand-100);
  padding: 1rem 0;
  border-bottom: 1px solid var(--sand-200);
}

.filters-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.dietary-tags-filter {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.dietary-filter-btn {
  background: var(--white);
  border: 1px solid var(--sand-300);
  padding: 0.5rem 1.2rem;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-fast);
}

.dietary-filter-btn:hover {
  border-color: var(--sand-500);
  color: var(--sand-500);
}

.dietary-filter-btn.active {
  background: var(--sand-500);
  color: var(--white);
  border-color: var(--sand-500);
}

.lang-selector-wrap {
  position: relative;
}

.lang-dropdown-btn {
  background: var(--white);
  border: 1px solid var(--sand-300);
  padding: 0.6rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition-fast);
}

.lang-dropdown-btn:hover {
  border-color: var(--sand-500);
}

.lang-dropdown-panel {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--white);
  border: 1px solid var(--sand-200);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  width: 280px;
  display: none;
  grid-template-columns: 1fr 1fr;
  padding: 1rem;
  gap: 0.5rem;
  z-index: 120;
  margin-top: 5px;
}

.lang-dropdown-panel.active {
  display: grid;
}

.lang-opt {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--sand-800);
}

.lang-opt:hover {
  background: var(--sand-100);
  color: var(--charcoal);
}

.lang-opt.active {
  font-weight: 600;
  color: var(--sand-500);
  background: var(--sand-50);
}

/* Category Sticky Navigation */
.category-nav-bar {
  background: var(--white);
  border-bottom: 1px solid var(--sand-200);
  position: sticky;
  top: calc(var(--header-height) + 60px); /* adjusted for controls */
  z-index: 75;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 992px) {
  .category-nav-bar {
    top: calc(var(--header-height) + 115px);
  }
}

.category-nav-list {
  display: flex;
  padding: 0 4rem;
  list-style: none;
  height: 50px;
  align-items: center;
}

@media (max-width: 768px) {
  .category-nav-list {
    padding: 0 1.5rem;
  }
}

.category-nav-item a {
  display: inline-block;
  padding: 0 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sand-800);
  transition: var(--transition-fast);
  height: 50px;
  line-height: 50px;
  border-bottom: 2px solid transparent;
}

.category-nav-item a:hover,
.category-nav-item a.active {
  color: var(--sand-500);
  border-bottom-color: var(--sand-500);
}

/* Menu Layout Content */
.menu-sections-wrapper {
  padding: 4rem 0 8rem;
}

.menu-category-section {
  scroll-margin-top: 220px;
  margin-bottom: 6rem;
}
@media (max-width: 992px) {
  .menu-category-section {
    scroll-margin-top: 280px;
  }
}

.menu-category-section h2 {
  font-size: 3rem;
  border-bottom: 1px solid var(--sand-300);
  padding-bottom: 1rem;
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.menu-category-section h2 span.el-sub {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--sand-500);
  margin-left: 1.5rem;
}

.category-notice-banner {
  background: var(--sand-200);
  border-left: 3px solid var(--sand-500);
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
  color: var(--sand-800);
}

/* Dish Card Layout */
.dishes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 992px) {
  .dishes-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.dish-card {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid var(--sand-200);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.dish-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(28,27,24,0.04);
  border-color: var(--sand-300);
}

.dish-header {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.dish-titles {
  flex-grow: 1;
}

.dish-title {
  font-size: 1.4rem;
  line-height: 1.2;
}

.dish-title-greek {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--sand-800);
  opacity: 0.7;
  margin-top: 0.3rem;
}

.dish-price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--sand-500);
  font-weight: 500;
  white-space: nowrap;
}

.dish-description {
  font-size: 0.9rem;
  color: var(--sand-800);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.dish-description-greek {
  font-style: italic;
  font-size: 0.8rem;
  color: var(--sand-800);
  opacity: 0.65;
  margin-top: 0.5rem;
}

.dish-meta {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.dish-tag {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  background: var(--sand-200);
  color: var(--sand-800);
}

.dish-tag.gf {
  background: #e1efe0;
  color: #2b5c2a;
}
.dish-tag.vn, .dish-tag.vt {
  background: #e2f4f2;
  color: #1c5e55;
}
.dish-tag.sp {
  background: #fde8e8;
  color: #9b1c1c;
}
.dish-tag.rec {
  background: #fdf6e2;
  color: #723b11;
}

/* Card Controls */
.dish-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--sand-200);
  padding-top: 1.5rem;
  margin-top: auto;
}

.btn-add-item {
  padding: 0.6rem 1.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  border: 1px solid var(--charcoal);
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-add-item:hover {
  background: var(--charcoal);
  color: var(--white);
}

.qty-control {
  display: none;
  align-items: center;
  border: 1px solid var(--sand-300);
  background: var(--sand-50);
}

.qty-btn {
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.qty-btn:hover {
  background: var(--sand-200);
}

.qty-val {
  font-size: 0.85rem;
  font-weight: 600;
  width: 32px;
  text-align: center;
}

.note-btn {
  background: none;
  border: none;
  font-size: 0.75rem;
  color: var(--sand-500);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: var(--transition-fast);
}
.note-btn:hover {
  color: var(--charcoal);
}

/* Notes Text Field */
.dish-note-field {
  display: none;
  width: 100%;
  margin-top: 1rem;
}

.dish-note-field input {
  width: 100%;
  padding: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  border: 1px solid var(--sand-300);
  background: var(--sand-50);
}

/* Floating Cart Icon sticky triggers */
.cart-floating-btn {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  z-index: 95;
  transition: var(--transition-smooth);
}

.cart-floating-btn:hover {
  transform: translateY(-5px);
  background: var(--sand-500);
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--sand-500);
  color: var(--white);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Cart Drawer Panel */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20,20,18,0.4);
  backdrop-filter: blur(5px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.cart-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 100%;
  max-width: 450px;
  height: 100%;
  background: var(--white);
  z-index: 1010;
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.cart-drawer-overlay.active .cart-drawer {
  right: 0;
}

.cart-header {
  padding: 2rem;
  border-bottom: 1px solid var(--sand-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--sand-800);
}

.cart-items-list {
  flex-grow: 1;
  overflow-y: auto;
  padding: 2rem;
}

.cart-item-row {
  border-bottom: 1px solid var(--sand-200);
  padding: 1.5rem 0;
}

.cart-item-title-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.cart-item-name {
  font-size: 1rem;
  font-weight: 500;
}

.cart-item-greek {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--sand-800);
  opacity: 0.7;
}

.cart-item-price {
  font-family: var(--font-serif);
  font-weight: 500;
}

.cart-item-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.cart-item-note-text {
  font-size: 0.75rem;
  background: var(--sand-100);
  padding: 0.4rem 0.8rem;
  margin-top: 0.5rem;
  border-left: 2px solid var(--sand-500);
  color: var(--sand-800);
}

.cart-footer {
  padding: 2rem;
  border-top: 1px solid var(--sand-200);
  background: var(--sand-50);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.cart-actions-btns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.btn-show-waiter {
  background: var(--sand-500);
  color: var(--white);
  border: none;
  font-size: 0.85rem;
}
.btn-show-waiter:hover {
  background: var(--charcoal);
}

/* FULLSCREEN SHOW TO WAITER SCREEN (Ultra Contrast Sunlight Mode) */
.waiter-screen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 5000;
  display: none;
  flex-direction: column;
  overflow-y: auto;
  color: #000000;
  padding: 2rem;
  font-family: var(--font-sans);
}

.waiter-screen-overlay.active {
  display: flex;
}

.waiter-header {
  border-bottom: 4px solid #000000;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.waiter-header h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #000000;
  letter-spacing: -0.03em;
}

.waiter-header p {
  font-size: 1rem;
  color: #333333;
  margin-top: 0.3rem;
  font-weight: 600;
}

.waiter-list {
  flex-grow: 1;
}

.waiter-item-row {
  border-bottom: 2px solid #000000;
  padding: 1.5rem 0;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: center;
}

.waiter-qty {
  font-size: 2.5rem;
  font-weight: 900;
  color: #000000;
  background: #f0f0f0;
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #000000;
}

.waiter-item-names {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.waiter-greek-name {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.1;
  color: #000000;
}

.waiter-english-name {
  font-size: 1.4rem;
  font-weight: 500;
  color: #555555;
}

.waiter-item-note {
  font-size: 1.1rem;
  font-weight: 700;
  background: #fff8e1;
  border: 2px dashed #000000;
  padding: 0.6rem 1rem;
  margin-top: 0.5rem;
  display: inline-block;
  color: #d32f2f;
}

.waiter-footer {
  margin-top: 3rem;
  border-top: 4px solid #000000;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-waiter-back {
  background: #000000;
  color: #ffffff;
  border: none;
  font-size: 1.2rem;
  font-weight: 800;
  padding: 1.5rem;
  width: 100%;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
}

.btn-waiter-clear {
  background: #f5f5f5;
  color: #d32f2f;
  border: 2px solid #d32f2f;
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem;
  width: 100%;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
}

/* 14 Language Selector Fullscreen Modal for Mobile */
.mobile-lang-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 2000;
  display: none;
  flex-direction: column;
  padding: 2rem;
  overflow-y: auto;
}

.mobile-lang-modal.active {
  display: flex;
}

.mobile-lang-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--sand-200);
  padding-bottom: 1rem;
}

.mobile-lang-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-lang-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.mobile-lang-opt {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--sand-300);
  font-size: 1.1rem;
  font-weight: 500;
}

.mobile-lang-opt.active {
  border-color: var(--sand-500);
  background: var(--sand-50);
  color: var(--sand-500);
  font-weight: 700;
}

/* GALLERY PAGE - Masonry Grid & Lightbox */
.gallery-section {
  padding: 4rem 0 8rem;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.gallery-filter-btn {
  background: transparent;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  color: var(--sand-800);
  transition: var(--transition-fast);
  border-bottom: 2px solid transparent;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  color: var(--sand-500);
  border-bottom-color: var(--sand-500);
}

/* Pinterest inspired Masonry */
.masonry-grid {
  columns: 4 300px;
  column-gap: 1.5rem;
  width: 100%;
}

.masonry-item {
  width: 100%;
  margin-bottom: 1.5rem;
  break-inside: avoid;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.masonry-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.masonry-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20,20,18,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  color: var(--white);
  transition: var(--transition-smooth);
}

.masonry-item:hover img {
  transform: scale(1.05);
}

.masonry-item:hover .masonry-overlay {
  opacity: 1;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 15, 18, 0.95);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  color: var(--white);
  font-size: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10010;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80vh;
  position: relative;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  transform: scale(0.95);
  transition: transform 0.4s ease;
}

.lightbox-modal.active .lightbox-img {
  transform: scale(1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 3rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.5rem;
  transition: var(--transition-fast);
  z-index: 10010;
}

.lightbox-prev { left: 2.5rem; }
.lightbox-next { right: 2.5rem; }
.lightbox-nav:hover { color: var(--sand-500); }

/* CONTACT PAGE - Form & Maps */
.contact-hero {
  height: 50vh;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  align-items: start;
}

@media (max-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.contact-info-col h3 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.contact-details-list {
  list-style: none;
  margin-bottom: 3.5rem;
}

.contact-details-list li {
  margin-bottom: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-details-list li i {
  font-size: 1.2rem;
  color: var(--sand-500);
  margin-top: 0.2rem;
}

.contact-details-list h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
  color: var(--sand-800);
}

.contact-details-list p, .contact-details-list a {
  font-size: 1.1rem;
  color: var(--charcoal);
}

.contact-map-wrapper {
  width: 100%;
  height: 350px;
  border: 1px solid var(--sand-300);
}

.contact-form-col {
  background: var(--white);
  padding: 3.5rem;
  border: 1px solid var(--sand-200);
  box-shadow: 0 15px 35px rgba(28,27,24,0.02);
}

@media (max-width: 600px) {
  .contact-form-col {
    padding: 2rem;
  }
}

.contact-form-col h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.contact-form-col p {
  margin-bottom: 2.5rem;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
  color: var(--sand-800);
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  border: 1px solid var(--sand-300);
  background: var(--sand-100);
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--sand-500);
  background: var(--white);
}

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

/* Custom dropdown styled */
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

/* Responsive Overrides & Mobile Optimization */
@media (max-width: 768px) {
  /* Navigation mobile adjustments */
  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--white);
    flex-direction: column;
    align-items: center;
    padding: 4rem 2rem;
    gap: 2.5rem;
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 140;
    border-top: 1px solid var(--sand-200);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
  }

  .header-actions .btn {
    display: none; /* Hide primary reservation button on small headers to fit burger and logo */
  }

  .hamburger {
    display: block;
  }

  /* Sunbeds and items margins */
  .category-card {
    height: 380px;
  }
}
