/* ============================================================
   SUPER TACO — Premium Dark Mexican Restaurant Theme
   ============================================================ */

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

/* ── Custom Properties ────────────────────────────────────── */
:root {
  --bg-dark: #0a0a0a;
  --bg-darker: #050505;
  --bg-card: #111111;
  --gold: #d4a843;
  --gold-light: #f0d078;
  --gold-dark: #b8912a;
  --orange: #e85d26;
  --orange-dark: #c44b1c;
  --red: #c0392b;
  --green: #2ecc71;
  --green-dark: #1a9c54;
  --cream: #f5e6c8;
  --text: #f0f0f0;
  --text-muted: #999999;
  --glass-bg: rgba(10, 10, 10, 0.75);
  --glass-border: rgba(212, 168, 67, 0.2);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-script: 'Dancing Script', cursive;
  --nav-height: 70px;
  --container-max: 1200px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --shadow-gold: 0 0 20px rgba(212, 168, 67, 0.15);
  --shadow-lift: 0 18px 40px rgba(0, 0, 0, 0.45);
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background-color: var(--bg-darker);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* ── Custom Scrollbar ─────────────────────────────────────── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-dark), var(--gold));
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dark) var(--bg-darker);
}

/* ── Selection ────────────────────────────────────────────── */
::selection {
  background: var(--gold);
  color: var(--bg-darker);
}

::-moz-selection {
  background: var(--gold);
  color: var(--bg-darker);
}

/* ── Container ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ============================================================
   LOADING SCREEN
   ============================================================ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-darker);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#loader .loader-emoji {
  font-size: 4rem;
  animation: spin 2s linear infinite;
  margin-bottom: 24px;
}

#loader .loader-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light), var(--gold));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 2s ease-in-out infinite;
}

#loader .loader-bar {
  width: 120px;
  height: 3px;
  margin-top: 20px;
  border-radius: var(--radius-full);
  background: rgba(212, 168, 67, 0.15);
  overflow: hidden;
}

#loader .loader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: var(--radius-full);
  animation: loader-slide 1.2s ease-in-out infinite;
}

@keyframes loader-slide {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-bottom: 1px solid var(--glass-border);
  transition: background var(--transition-smooth), box-shadow var(--transition-smooth);
}

#navbar.scrolled {
  background: rgba(5, 5, 5, 0.92);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.nav-logo {
  font-family: var(--font-script);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  transition: color var(--transition-smooth);
}

.nav-logo span {
  color: var(--orange);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-smooth);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: var(--radius-full);
  transform: translateX(-50%);
  transition: width var(--transition-smooth);
}

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

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

#menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 1001;
}

#menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: var(--radius-full);
  transition: transform 0.35s ease, opacity 0.25s ease;
}

#menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

#menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

#menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  width: 100%;
  background: rgba(5, 5, 5, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 20px 0;
  transform: translateY(-120%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}

.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav a {
  display: block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s, background 0.3s, padding-left 0.3s;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--gold);
  background: rgba(212, 168, 67, 0.05);
  padding-left: 42px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  will-change: opacity;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0.55) 0%,
    rgba(10, 10, 10, 0.7) 50%,
    rgba(5, 5, 5, 0.92) 100%
  );
}

.hero-slide.active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-subtitle {
  font-family: var(--font-script);
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.05;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text);
  text-shadow:
    0 0 40px rgba(212, 168, 67, 0.25),
    0 0 80px rgba(212, 168, 67, 0.1);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.5s forwards;
}

.hero-title .gold {
  color: var(--gold);
  display: inline-block;
}

.hero-tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.15rem;
  color: var(--cream);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.7s forwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 42px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--glass-bg);
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius-full);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-bounce),
              box-shadow var(--transition-smooth),
              color var(--transition-smooth),
              background var(--transition-smooth);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.9s forwards;
}

.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  opacity: 0;
  transition: opacity var(--transition-smooth);
  z-index: -1;
}

.hero-cta:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 14px 35px rgba(212, 168, 67, 0.25);
  color: var(--bg-darker);
}

.hero-cta:hover::before {
  opacity: 1;
}

/* Floating Embers / Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  bottom: -10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: float-up linear infinite;
}

.hero-particle:nth-child(1)  { left: 10%;  animation-duration: 6s;  animation-delay: 0s;    width: 3px; height: 3px; }
.hero-particle:nth-child(2)  { left: 20%;  animation-duration: 8s;  animation-delay: 1s;    width: 2px; height: 2px; }
.hero-particle:nth-child(3)  { left: 35%;  animation-duration: 7s;  animation-delay: 2s;    width: 5px; height: 5px; background: var(--orange); }
.hero-particle:nth-child(4)  { left: 50%;  animation-duration: 9s;  animation-delay: 0.5s;  width: 3px; height: 3px; }
.hero-particle:nth-child(5)  { left: 65%;  animation-duration: 6.5s; animation-delay: 3s;   width: 4px; height: 4px; }
.hero-particle:nth-child(6)  { left: 75%;  animation-duration: 7.5s; animation-delay: 1.5s; width: 2px; height: 2px; background: var(--orange); }
.hero-particle:nth-child(7)  { left: 85%;  animation-duration: 8.5s; animation-delay: 0.8s; width: 3px; height: 3px; }
.hero-particle:nth-child(8)  { left: 45%;  animation-duration: 10s;  animation-delay: 2.5s; width: 2px; height: 2px; }
.hero-particle:nth-child(9)  { left: 5%;   animation-duration: 7s;  animation-delay: 4s;   width: 4px; height: 4px; background: var(--gold-light); }
.hero-particle:nth-child(10) { left: 92%;  animation-duration: 9s;  animation-delay: 1.2s; width: 3px; height: 3px; }

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 12px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition-smooth), transform var(--transition-bounce), box-shadow var(--transition-smooth);
}

.slider-dot:hover {
  transform: scale(1.25);
  box-shadow: 0 0 12px rgba(212, 168, 67, 0.4);
}

.slider-dot.active {
  background: var(--gold);
  box-shadow: 0 0 14px rgba(212, 168, 67, 0.5);
}

/* ============================================================
   SECTIONS — SHARED
   ============================================================ */
.section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text);
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-subtitle {
  font-family: var(--font-script);
  font-size: 1.25rem;
  color: var(--gold);
  text-align: center;
  font-style: italic;
  margin-bottom: 50px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about {
  background: var(--bg-dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrap {
  perspective: 1200px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}

.about-image-wrap:hover .about-image {
  transform: rotateY(5deg) rotateX(2deg) scale(1.03);
}

.about-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  pointer-events: none;
}

.about-text h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 18px;
}

.about-text p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-text p strong {
  color: var(--cream);
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--glass-border);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

/* ============================================================
   PARALLAX DIVIDER
   ============================================================ */
.parallax-divider {
  height: 400px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-divider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--bg-dark) 0%,
    rgba(10, 10, 10, 0.65) 30%,
    rgba(10, 10, 10, 0.65) 70%,
    var(--bg-dark) 100%
  );
}

.parallax-quote {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 24px;
}

.parallax-quote p {
  font-family: var(--font-script);
  font-size: 2rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
}

.parallax-quote span {
  display: block;
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   MENU SECTION
   ============================================================ */
#menu {
  background: var(--bg-darker);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}

.menu-tab {
  padding: 10px 28px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-smooth);
  white-space: nowrap;
}

.menu-tab:hover {
  color: var(--gold);
  border-color: var(--gold-dark);
  background: rgba(212, 168, 67, 0.06);
}

.menu-tab.active {
  color: var(--bg-darker);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-color: var(--gold);
  box-shadow: 0 4px 18px rgba(212, 168, 67, 0.25);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.menu-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform var(--transition-bounce),
              box-shadow var(--transition-smooth),
              border-color var(--transition-smooth);
}

.menu-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-lift), 0 0 30px rgba(212, 168, 67, 0.08);
  border-color: rgba(212, 168, 67, 0.35);
}

.menu-item-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.menu-item-content {
  padding: 22px 24px;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.menu-item-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
}

.menu-item-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--gold);
  white-space: nowrap;
  position: relative;
  padding-left: 14px;
}

.menu-item-price::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 1px;
  background: var(--gold-dark);
}

.menu-item-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.menu-item-tags {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.menu-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

.menu-tag.spicy {
  border-color: rgba(232, 93, 38, 0.3);
  color: var(--orange);
}

.menu-tag.vegan {
  border-color: rgba(46, 204, 113, 0.3);
  color: var(--green);
}

.menu-tag.popular {
  border-color: rgba(212, 168, 67, 0.3);
  color: var(--gold);
}

/* ============================================================
   DRINKS SECTION
   ============================================================ */
#drinks {
  background: var(--bg-dark);
}

.drinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.drink-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform var(--transition-bounce),
              box-shadow var(--transition-smooth),
              border-color var(--transition-smooth);
}

.drink-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 35px rgba(212, 168, 67, 0.12), var(--shadow-lift);
  border-color: rgba(212, 168, 67, 0.4);
}

.drink-card-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.drink-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.drink-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.drink-card-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--gold);
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
#gallery {
  background: var(--bg-darker);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item:nth-child(7) { grid-column: span 2; grid-row: span 2; }

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

.gallery-item:hover img {
  transform: scale(1.12);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

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

.gallery-overlay-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  transform: scale(0.7);
  transition: transform var(--transition-bounce);
}

.gallery-item:hover .gallery-overlay-icon {
  transform: scale(1);
}

/* ============================================================
   REVIEWS / TESTIMONIALS
   ============================================================ */
#reviews {
  background: var(--bg-dark);
}

.reviews-scroll {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.reviews-scroll::-webkit-scrollbar {
  height: 4px;
}

.reviews-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-full);
}

.reviews-scroll::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: var(--radius-full);
}

.review-card {
  min-width: 340px;
  max-width: 380px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform var(--transition-bounce), box-shadow var(--transition-smooth);
}

.review-card:hover {
  transform: rotate(-1deg) translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.review-star {
  color: var(--gold);
  font-size: 1rem;
}

.review-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.75;
  margin-bottom: 22px;
  position: relative;
}

.review-text::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--gold-dark);
  opacity: 0.3;
  position: absolute;
  top: -18px;
  left: -6px;
  line-height: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-dark);
}

.review-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

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

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact {
  background: var(--bg-darker);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  border: 1px solid var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--gold);
  transition: background var(--transition-smooth), color var(--transition-smooth);
}

.contact-item:hover .contact-icon {
  background: var(--gold);
  color: var(--bg-darker);
}

.contact-item-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--text);
}

.contact-item-value {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-map {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--bg-card);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.7) brightness(0.7) contrast(1.1);
  transition: filter var(--transition-smooth);
}

.contact-map:hover iframe {
  filter: grayscale(0.2) brightness(0.85) contrast(1.05);
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--glass-border);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}

.footer-brand .nav-logo {
  font-size: 2rem;
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 320px;
}

.footer-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 22px;
  color: var(--text);
}

.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.3s, padding-left 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 4px;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--gold);
  transition: transform var(--transition-bounce),
              background var(--transition-smooth),
              color var(--transition-smooth),
              box-shadow var(--transition-smooth);
}

.social-icon:hover {
  transform: scale(1.15);
  background: var(--gold);
  color: var(--bg-darker);
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.3);
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 22px 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.footer-bottom a {
  color: var(--gold);
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

/* ============================================================
   SOCIAL SIDEBAR
   ============================================================ */
.social-sidebar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.social-sidebar-item {
  display: flex;
  align-items: center;
  background: rgba(17, 17, 17, 0.92);
  border: 1px solid var(--glass-border);
  border-left: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  overflow: hidden;
  transition: transform var(--transition-smooth);
  transform: translateX(-100%);
}

.social-sidebar-item:hover {
  transform: translateX(0);
}

.social-sidebar-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  transform: translateX(100%);
}

.social-sidebar-item:hover .social-sidebar-icon {
  transform: translateX(0);
}

.social-sidebar-label {
  padding: 0 16px 0 4px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Always show the icon tab sticking out */
.social-sidebar-item {
  transform: translateX(calc(-100% + 44px));
}

.social-sidebar-item:hover {
  transform: translateX(0);
}

/* ============================================================
   SCROLL-TO-TOP BUTTON
   ============================================================ */
#scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-darker);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, visibility 0.4s ease,
              transform var(--transition-bounce),
              box-shadow var(--transition-smooth);
  box-shadow: 0 4px 18px rgba(212, 168, 67, 0.2);
}

#scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scroll-top:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 8px 28px rgba(212, 168, 67, 0.35);
}

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 8px rgba(212, 168, 67, 0.2);
  }
  50% {
    box-shadow: 0 0 28px rgba(212, 168, 67, 0.45);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes float-up {
  0% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: translateY(-100vh) scale(0.3);
  }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.from-left {
  transform: translateX(-40px);
}

.animate-on-scroll.from-left.visible {
  transform: translateX(0);
}

.animate-on-scroll.from-right {
  transform: translateX(40px);
}

.animate-on-scroll.from-right.visible {
  transform: translateX(0);
}

.animate-on-scroll.scale-in {
  transform: scale(0.9);
}

.animate-on-scroll.scale-in.visible {
  transform: scale(1);
}

/* Staggered children animation */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.35s; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.4s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   3D CARD EFFECTS
   ============================================================ */
.card-3d {
  perspective: 1000px;
}

.card-3d-inner {
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.card-3d:hover .card-3d-inner {
  transform: rotateX(4deg) rotateY(-4deg);
}

.card-3d-front,
.card-3d-back {
  backface-visibility: hidden;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

/* Glassmorphism */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
}

/* Glow Text */
.glow-text {
  text-shadow:
    0 0 10px rgba(212, 168, 67, 0.5),
    0 0 30px rgba(212, 168, 67, 0.3),
    0 0 60px rgba(212, 168, 67, 0.15);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light), var(--gold));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s ease-in-out infinite;
}

/* Lazy-load image fade-in */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.5s ease;
}

img[loading="lazy"].loaded,
img[loading="lazy"]:not([src=""]) {
  opacity: 1;
}

/* Decorative separator */
.separator {
  width: 80px;
  height: 2px;
  margin: 20px auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: var(--radius-full);
}

/* Gold outline button */
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius-full);
  background: transparent;
  transition: all var(--transition-smooth);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--bg-darker);
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.25);
}

/* Filled gold button */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bg-darker);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border: none;
  border-radius: var(--radius-full);
  transition: transform var(--transition-bounce), box-shadow var(--transition-smooth);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(212, 168, 67, 0.3);
}

/* Pulse glow utility */
.pulse-glow {
  animation: pulse-glow 2.5s ease-in-out infinite;
}

/* Floating animation utility */
.float {
  animation: float 3.5s ease-in-out infinite;
}

/* ============================================================
   NAV CTA BUTTON
   ============================================================ */
.nav-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 10px 22px !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  color: var(--bg-darker) !important;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: var(--radius-full);
  letter-spacing: 1px !important;
  text-transform: uppercase;
  transition: transform var(--transition-bounce), box-shadow var(--transition-smooth) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(212, 168, 67, 0.3);
  color: var(--bg-darker) !important;
}
.nav-cta svg { width: 16px; height: 16px; }

/* ============================================================
   HERO ENHANCEMENTS
   ============================================================ */
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(5,5,5,0.4) 100%);
  pointer-events: none;
}
.particles-container {
  position: absolute; inset: 0; z-index: 5; pointer-events: none; overflow: hidden;
}
.hero-badge {
  display: inline-block;
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.hero-badge span { color: var(--gold-light); }
.hero-title-line {
  display: block;
}
.hero-title-accent {
  color: var(--gold);
  text-shadow: 0 0 60px rgba(212,168,67,0.35), 0 0 120px rgba(212,168,67,0.15);
}
.hero-divider {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 20px;
}
.divider-icon { font-size: 1.2rem; }
.divider-line {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.typing-cursor {
  color: var(--gold); animation: blink 0.8s step-end infinite;
}
@keyframes blink { 0%,100%{ opacity:1; } 50%{ opacity:0; } }

.hero-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 10px;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; font-family: var(--font-body);
  font-weight: 600; font-size: 0.88rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: var(--radius-full); cursor: pointer;
  transition: transform var(--transition-bounce), box-shadow var(--transition-smooth),
              background var(--transition-smooth), color var(--transition-smooth);
  position: relative; overflow: hidden;
}
.btn-primary {
  color: var(--bg-darker);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border: none;
}
.btn-primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 32px rgba(212,168,67,0.3);
}
.btn-secondary {
  color: var(--gold);
  background: var(--glass-bg);
  border: 1px solid var(--gold-dark);
  backdrop-filter: blur(12px);
}
.btn-secondary:hover {
  transform: translateY(-4px) scale(1.03);
  background: rgba(212,168,67,0.1);
  box-shadow: 0 12px 32px rgba(212,168,67,0.15);
}
.btn-full { width: 100%; justify-content: center; }

/* Scroll Indicator */
.scroll-indicator {
  position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
  z-index: 20; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
  animation: fadeInUp 1s ease 1.5s forwards; opacity: 0;
}
.scroll-mouse {
  width: 24px; height: 38px; border: 2px solid var(--gold-dark);
  border-radius: 12px; position: relative;
}
.scroll-wheel {
  width: 4px; height: 8px; background: var(--gold);
  border-radius: 2px; position: absolute; top: 6px; left: 50%;
  transform: translateX(-50%); animation: scroll-anim 1.8s ease-in-out infinite;
}
@keyframes scroll-anim {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

/* ============================================================
   SECTION DARK VARIANT
   ============================================================ */
.section-dark { background: var(--bg-darker); }
.section-desc {
  text-align: center; max-width: 650px; margin: -20px auto 50px;
  color: var(--text-muted); font-size: 1rem; line-height: 1.8;
}
.align-left { text-align: left; }
.align-left::after { left: 0; transform: none; }

/* ============================================================
   ABOUT ENHANCEMENTS
   ============================================================ */
.about-image-wrapper { perspective: 1200px; }
.about-image {
  border-radius: var(--radius-md); overflow: hidden; position: relative;
  transform-style: preserve-3d; transition: transform 0.6s ease;
}
.about-image img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius-md); transition: transform 0.6s ease;
}
.about-image-wrapper:hover .about-image {
  transform: rotateY(5deg) rotateX(2deg) scale(1.02);
}
.about-image-badge {
  position: absolute; bottom: 20px; right: 20px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-darker); padding: 14px 22px; border-radius: var(--radius-md);
  text-align: center;
}
.badge-number {
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.8rem; display: block; line-height: 1;
}
.badge-text { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.about-content .about-text {
  font-size: 1rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 16px;
}
.about-content .about-text strong { color: var(--cream); }
.stat-decimal, .stat-plus {
  font-family: var(--font-display); font-weight: 900;
  font-size: 2rem; color: var(--gold); line-height: 1;
}
.about-features {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px;
}
.feature-tag {
  padding: 8px 18px; border: 1px solid var(--glass-border);
  border-radius: var(--radius-full); font-size: 0.82rem;
  color: var(--text-muted); display: flex; align-items: center; gap: 6px;
}
.feature-icon { color: var(--green); font-weight: 700; }

/* ============================================================
   PARALLAX ENHANCEMENTS
   ============================================================ */
.parallax-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(10,10,10,0.6) 30%, rgba(10,10,10,0.6) 70%, var(--bg-dark) 100%);
}
.parallax-content {
  position: relative; z-index: 2; text-align: center; padding: 0 24px;
}
.parallax-icon { font-size: 2.5rem; display: block; margin-bottom: 16px; animation: float 3s ease-in-out infinite; }
.parallax-quote {
  font-family: var(--font-script); font-size: 2rem;
  font-style: italic; color: var(--cream); line-height: 1.5; max-width: 700px; margin: 0 auto;
}
.parallax-author {
  display: block; margin-top: 16px; font-family: var(--font-body);
  font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold);
}

/* ============================================================
   MENU ITEM ENHANCEMENTS
   ============================================================ */
.menu-item-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  padding: 5px 14px; background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-darker); font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; border-radius: var(--radius-full);
}
.menu-item-footer {
  display: flex; justify-content: space-between; align-items: center; margin-top: 14px;
  padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.05);
}
.menu-item-spicy { font-size: 0.9rem; }
.menu-cta {
  text-align: center; margin-top: 60px; padding-top: 40px;
  border-top: 1px solid var(--glass-border);
}
.menu-cta p {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  margin-bottom: 20px; color: var(--text);
}
.menu-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   DRINKS ENHANCEMENTS
   ============================================================ */
.drink-image {
  width: 100%; height: 180px; border-radius: var(--radius-md);
  overflow: hidden; margin-bottom: 18px;
}
.drink-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.drink-card:hover .drink-image img { transform: scale(1.08); }
.drink-image-emoji {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(212,168,67,0.08), rgba(232,93,38,0.08));
}
.drink-emoji { font-size: 4rem; }
.drink-content { text-align: left; }
.drink-name {
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; margin-bottom: 6px;
}
.drink-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.drink-prices { display: flex; flex-direction: column; gap: 6px; }
.drink-price-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.9rem; color: var(--text-muted);
  padding: 4px 0; border-bottom: 1px dashed rgba(255,255,255,0.05);
}
.drink-price {
  font-family: var(--font-display); font-weight: 700; color: var(--gold);
}

/* ============================================================
   GALLERY ENHANCEMENTS
   ============================================================ */
.gallery-item-wide { grid-column: span 2; }
.gallery-item-tall { grid-row: span 2; }
.gallery-icon {
  color: var(--gold); transform: scale(0.7);
  transition: transform var(--transition-bounce);
}
.gallery-item:hover .gallery-icon { transform: scale(1); }
.gallery-caption {
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 600;
  color: var(--cream); margin-top: 10px;
}
.gallery-overlay {
  flex-direction: column;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.95); display: none;
  align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-img {
  max-width: 90vw; max-height: 85vh; object-fit: contain;
  border-radius: var(--radius-md);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; color: var(--gold); font-size: 2rem; background: none;
  cursor: pointer; transition: color 0.3s, transform 0.3s;
  z-index: 10001;
}
.lightbox-close { top: 20px; right: 30px; font-size: 3rem; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  color: var(--gold-light); transform: scale(1.2);
}
.lightbox-prev:hover, .lightbox-next:hover { transform: translateY(-50%) scale(1.2); }

/* ============================================================
   REVIEWS ENHANCEMENTS
   ============================================================ */
.reviews-container {
  display: flex; gap: 28px; overflow-x: auto;
  padding-bottom: 20px; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; cursor: grab;
}
.reviews-container:active { cursor: grabbing; }
.reviews-container::-webkit-scrollbar { height: 4px; }
.reviews-container::-webkit-scrollbar-track { background: rgba(255,255,255,0.03); border-radius: 999px; }
.reviews-container::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 999px; }
.review-card {
  min-width: 340px; max-width: 380px; flex-shrink: 0;
  scroll-snap-align: start; padding: 32px 28px;
}
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 18px; letter-spacing: 4px; }
.review-text {
  font-size: 0.95rem; font-style: italic; color: var(--cream);
  line-height: 1.75; margin-bottom: 22px; position: relative;
}
.review-text::before {
  content: '\201C'; font-family: var(--font-display);
  font-size: 3.5rem; color: var(--gold-dark); opacity: 0.3;
  position: absolute; top: -18px; left: -6px; line-height: 1;
}
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--gold-dark); display: flex;
  align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.1rem; color: var(--gold);
  background: rgba(212,168,67,0.1);
}
.review-name { font-weight: 600; font-size: 0.95rem; display: block; }
.review-date { font-size: 0.78rem; color: var(--text-muted); display: block; }

/* ============================================================
   CONTACT ENHANCEMENTS
   ============================================================ */
.contact-detail h4 {
  font-family: var(--font-display); font-weight: 700; font-size: 1rem; margin-bottom: 4px;
}
.contact-detail p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.contact-detail a { color: var(--gold); transition: color 0.3s; }
.contact-detail a:hover { color: var(--gold-light); }
.contact-social { margin-top: 10px; }
.contact-social h4 {
  font-family: var(--font-display); font-weight: 700; margin-bottom: 16px;
}
.contact-social-links { display: flex; gap: 12px; }
.contact-map {
  width: 100%; height: 100%; min-height: 400px;
  border-radius: var(--radius-md); position: relative;
  border: 1px solid var(--glass-border);
}
.contact-map iframe { filter: grayscale(0.6) brightness(0.7); transition: filter 0.4s; }
.contact-map:hover iframe { filter: grayscale(0.2) brightness(0.85); }
.map-overlay-card {
  position: absolute; bottom: 20px; left: 20px;
  padding: 18px 24px; z-index: 2;
}
.map-overlay-card h4 { font-size: 1rem; margin-bottom: 4px; }
.map-overlay-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 10px; }
.map-directions-btn {
  font-size: 0.82rem; color: var(--gold); font-weight: 600;
  transition: color 0.3s;
}
.map-directions-btn:hover { color: var(--gold-light); }

/* ============================================================
   FOOTER ENHANCEMENTS
   ============================================================ */
.footer-pattern {
  position: absolute; top: 0; left: 0; right: 0;
  height: 200px; opacity: 0.03;
  background-size: 400px; background-repeat: repeat;
  pointer-events: none;
}
#footer { position: relative; overflow: hidden; }
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-script); font-size: 1.8rem;
  color: var(--gold); margin-bottom: 14px;
}
.logo-icon { font-size: 1.4em; }
.logo-text { font-family: var(--font-script); }
.footer-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.footer-contact ul li {
  font-size: 0.88rem; color: var(--text-muted); padding: 6px 0;
}
.footer-contact a { color: var(--gold); }
.footer-credit { font-size: 0.8rem; margin-top: 6px; color: var(--text-muted); }
.footer-links ul { display: flex; flex-direction: column; }
.footer-links li a {
  display: block; padding: 6px 0; font-size: 0.88rem;
  color: var(--text-muted); transition: color 0.3s, padding-left 0.3s;
}
.footer-links li a:hover { color: var(--gold); padding-left: 6px; }
.footer-heading {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; color: var(--text);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 50px;
}
.footer-social { display: flex; gap: 14px; margin-top: 4px; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.service-card {
  padding: 40px 30px; text-align: center;
  transition: transform var(--transition-bounce), box-shadow var(--transition-smooth);
}
.service-card:hover {
  transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(212,168,67,0.08);
}
.service-icon-wrapper { margin-bottom: 24px; }
.service-icon {
  width: 80px; height: 80px; border-radius: 50%;
  border: 2px solid var(--gold-dark); display: flex;
  align-items: center; justify-content: center;
  color: var(--gold); margin: 0 auto;
  transition: background var(--transition-smooth), color var(--transition-smooth), box-shadow var(--transition-smooth);
}
.service-card:hover .service-icon {
  background: var(--gold); color: var(--bg-darker);
  box-shadow: 0 0 30px rgba(212,168,67,0.3);
}
.service-icon-orange { border-color: var(--orange); color: var(--orange); }
.service-card:hover .service-icon-orange { background: var(--orange); }
.service-icon-red { border-color: var(--red); color: var(--red); }
.service-card:hover .service-icon-red { background: var(--red); }
.service-title {
  font-family: var(--font-display); font-weight: 700; font-size: 1.4rem;
  margin-bottom: 12px;
}
.service-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }

/* ============================================================
   MODALS
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.8); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s;
  padding: 20px;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal {
  width: 100%; max-width: 600px; max-height: 90vh; overflow-y: auto;
  padding: 40px; position: relative;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s ease;
}
.modal-overlay.active .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 16px; right: 20px;
  font-size: 2rem; color: var(--text-muted); cursor: pointer;
  transition: color 0.3s; background: none; border: none; z-index: 2;
}
.modal-close:hover { color: var(--gold); }
.modal-header { text-align: center; margin-bottom: 30px; }
.modal-icon { font-size: 3rem; display: block; margin-bottom: 10px; }
.modal-header h3 {
  font-family: var(--font-display); font-weight: 900; font-size: 1.8rem;
  margin-bottom: 8px;
}
.modal-header p { color: var(--text-muted); font-size: 0.9rem; }
.modal-success { text-align: center; max-width: 400px; padding: 50px 40px; }
.success-content { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.success-icon { font-size: 4rem; }
.success-content h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 1.5rem;
}
.success-content p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* ============================================================
   FORM STYLES
   ============================================================ */
.modal-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.82rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm);
  color: var(--text); font-size: 0.95rem;
  transition: border-color 0.3s, background 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold-dark); background: rgba(212,168,67,0.05);
  outline: none;
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-card); color: var(--text); }
.form-group textarea { resize: vertical; min-height: 60px; }
.radio-group { display: flex; gap: 16px; flex-wrap: wrap; }
.radio-option {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
  padding: 10px 18px; border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm); transition: border-color 0.3s, background 0.3s;
  font-size: 0.9rem; flex: 1;
}
.radio-option:has(input:checked) {
  border-color: var(--gold-dark); background: rgba(212,168,67,0.08);
}
.radio-option input { display: none; }
.radio-custom {
  width: 18px; height: 18px; border: 2px solid var(--text-muted);
  border-radius: 50%; position: relative; transition: border-color 0.3s;
}
.radio-option input:checked + .radio-custom {
  border-color: var(--gold);
}
.radio-option input:checked + .radio-custom::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
}

/* ============================================================
   RESPONSIVE — TABLET (max-width: 992px)
   ============================================================ */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .gallery-item:nth-child(7) { grid-column: span 2; grid-row: span 1; }

  .section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
  }

  .parallax-divider {
    height: 320px;
  }

  .parallax-quote p {
    font-size: 1.65rem;
  }

  .about-stats {
    justify-content: center;
  }

  .stat-number {
    font-size: 2rem;
  }

  .social-sidebar {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .nav-cta { display: none !important; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }

  #menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .section {
    padding: 70px 0;
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .hero-tagline {
    font-size: 0.95rem;
    letter-spacing: 2px;
  }

  .hero-cta {
    padding: 14px 32px;
    font-size: 0.82rem;
  }

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

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(7) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item-wide { grid-column: span 2; }
  .gallery-item-tall { grid-row: span 1; }

  .review-card {
    min-width: 290px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-social {
    justify-content: center;
  }

  .parallax-divider {
    height: 280px;
    background-attachment: scroll;
  }

  .parallax-quote {
    font-size: 1.4rem;
  }

  .about-stats {
    gap: 24px;
  }

  .contact-map {
    height: 300px;
    min-height: 300px;
  }

  .social-sidebar {
    display: none;
  }

  #scroll-top {
    width: 42px;
    height: 42px;
    bottom: 20px;
    right: 20px;
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }

  .modal { padding: 30px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .radio-group { flex-direction: column; }

  .scroll-indicator { display: none; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .container {
    padding-inline: 16px;
  }

  .hero-title {
    font-size: clamp(2rem, 12vw, 3rem);
    letter-spacing: 1px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-tagline {
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
  }

  .hero-cta {
    padding: 12px 26px;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
  }

  .section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.6rem;
    letter-spacing: 1.5px;
  }

  .section-subtitle {
    font-size: 1.05rem;
    margin-bottom: 32px;
  }

  .menu-tabs {
    justify-content: flex-start;
    gap: 8px;
  }

  .menu-tab {
    padding: 8px 18px;
    font-size: 0.75rem;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 140px;
    gap: 10px;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(7) {
    grid-column: span 1;
  }
  .gallery-item-wide { grid-column: span 2; }
  .gallery-item-tall { grid-row: span 1; }

  .review-card {
    min-width: 260px;
    padding: 24px 20px;
  }

  .about-stats {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .slider-dots {
    bottom: 20px;
    gap: 8px;
  }

  .slider-dot {
    width: 10px;
    height: 10px;
  }

  .parallax-divider {
    height: 220px;
  }

  .parallax-quote {
    font-size: 1.15rem;
  }

  .contact-map {
    height: 240px;
    min-height: 240px;
  }

  .footer-grid {
    gap: 28px;
  }

  .service-card { padding: 30px 20px; }
  .service-icon { width: 64px; height: 64px; }
  .service-title { font-size: 1.2rem; }

  .modal { padding: 24px 18px; }
  .modal-header h3 { font-size: 1.4rem; }

  .btn { padding: 14px 28px; font-size: 0.82rem; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-particle {
    display: none;
  }

  .parallax-divider {
    background-attachment: scroll;
  }
}

/* ============================================================
   THEME TOGGLE BUTTON
   ============================================================ */
.theme-toggle-nav {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 8px 16px !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  border-radius: var(--radius-full);
  border: 1px solid var(--gold-dark);
  color: var(--gold) !important;
  background: transparent;
  transition: all var(--transition-smooth) !important;
  margin-right: 12px;
}
.theme-toggle-nav::after { display: none !important; }
.theme-toggle-nav:hover {
  background: rgba(212, 168, 67, 0.1);
  transform: translateY(-1px);
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  #navbar,
  #loader,
  #scroll-top,
  .social-sidebar,
  .hero-particles,
  .slider-dots {
    display: none !important;
  }

  body {
    background: #fff;
    color: #111;
  }

  .section {
    padding: 30px 0;
    break-inside: avoid;
  }
}

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
    margin-right: 1rem;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.2rem;
    transition: color 0.3s ease;
}

.lang-btn:hover {
    color: var(--gold-light);
}

.lang-btn.active {
    color: var(--gold);
    font-weight: 700;
}

.lang-sep {
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .lang-switcher {
        margin: 1rem 0;
        justify-content: center;
    }
}
