/* ============================================================
   SHAHI MAHAL RESTROBAR — PREMIUM LUXURY STYLESHEET
   ============================================================ */

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

/* ---------- CSS Custom Properties ---------- */
:root {
  --bg-primary:      #0B0B0B;
  --bg-secondary:    #161616;
  --bg-card:         #1a1a1a;
  --gold:            #C9A227;
  --gold-light:      #E8C547;
  --gold-dark:       #A07D10;
  --white:           #FFFFFF;
  --gray:            #BDBDBD;
  --gray-dark:       #888888;
  --burgundy:        #7A0E15;
  --burgundy-light:  #9E1A23;
  --glass-bg:        rgba(11, 11, 11, 0.75);
  --glass-border:    rgba(201, 162, 39, 0.18);
  --shadow-gold:     0 8px 32px rgba(201, 162, 39, 0.18);
  --shadow-deep:     0 20px 60px rgba(0, 0, 0, 0.7);
  --font-heading:    'Cinzel', serif;
  --font-display:    'Playfair Display', serif;
  --font-body:       'Poppins', sans-serif;
  --transition:      0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius:   12px;
  --border-radius-lg:20px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

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

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.8;
}

/* ---------- Gold Gradient Text ---------- */
.text-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Elegant Divider ---------- */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}
.divider-icon {
  color: var(--gold);
  font-size: 1.1rem;
  opacity: 0.8;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section--dark { background: var(--bg-secondary); }
.section--deeper { background: #111111; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: -1;
}
.btn:hover::after { transform: scaleX(1); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 162, 39, 0.55);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--bg-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 162, 39, 0.35);
}

.btn-ghost {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

/* Ripple Effect */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}
@keyframes ripple {
  to { transform: scale(4); opacity: 0; }
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 0;          /* vertical room for 175px logo */
  transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.header.scrolled {
  padding: 0.4rem 0;
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
/* When scrolled, shrink logo slightly so nav stays balanced */
.header.scrolled .logo-img {
  height: 110px;
}

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


/* ── Logo ── */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 175px;               /* 2× the previous 90px size */
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 10px rgba(201,162,39,0.50)) brightness(1.08) saturate(1.15);
  transition: height 0.4s ease, filter 0.3s ease, transform 0.3s ease;
}
.logo:hover .logo-img {
  filter: drop-shadow(0 0 12px rgba(201,162,39,0.6)) brightness(1.15) saturate(1.3);
  transform: scale(1.04);
}
/* Hide old text elements if they remain anywhere */
.logo-text-wrap,
.logo-text,
.logo-sub { display: none; }


/* Nav Links */
.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0.6rem 0.9rem;
  border-radius: 4px;
  position: relative;
  transition: color var(--transition-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 1px;
  background: var(--gold);
  transition: transform var(--transition-fast);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { transform: translateX(-50%) scaleX(1); }
.nav-link.active { color: var(--gold); }
.nav-link.active::after { transform: translateX(-50%) scaleX(1); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition-fast);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav & Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: #0A0A0A;
  background: linear-gradient(180deg, #0A0A0A 0%, #121212 100%);
  border-left: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.85);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem 1.25rem 2rem 1.25rem;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.open {
  transform: translateX(0);
}

/* Mobile Nav Close Button (✕) */
.mobile-nav-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  color: #D4AF37;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2010;
  transition: all 0.25s ease;
}
.mobile-nav-close:hover,
.mobile-nav-close:active {
  background: #D4AF37;
  color: #0A0A0A;
  transform: rotate(90deg);
  border-color: #D4AF37;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* Mobile Nav Header & Logo */
.mobile-nav-header {
  text-align: center;
  padding-top: 0.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.mobile-nav-logo {
  display: inline-block;
  text-decoration: none;
}
.mobile-nav-logo img {
  height: 85px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

/* Mobile Nav Links Container */
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 1.25rem 0;
}
.mobile-nav-links .nav-link {
  font-family: var(--font-heading, 'Cinzel', serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 1.1rem 0.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.25s ease;
}
.mobile-nav-links .nav-link:last-child {
  border-bottom: none;
}
.mobile-nav-links .nav-link:hover,
.mobile-nav-links .nav-link.active {
  color: #D4AF37;
  padding-left: 0.75rem;
  background: rgba(212, 175, 55, 0.05);
}

/* Mobile Nav Footer Button */
.mobile-nav-footer {
  padding-top: 1rem;
  margin-top: auto;
}
.mobile-reserve-btn {
  width: 100%;
  justify-content: center;
  padding: 0.95rem 1.25rem;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh; /* true mobile viewport height */
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/hero-interior.jpg');
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
  background-attachment: scroll; /* avoid fixed on mobile — causes blur */
  transform-origin: center top;
  will-change: transform;
  animation: kenBurns 30s ease-in-out infinite alternate;
  filter: contrast(1.08) saturate(1.15) brightness(1.02);
}

@keyframes kenBurns {
  0%   { transform: scale(1)    translate(0, 0); }
  50%  { transform: scale(1.04) translate(-0.4%, 0.3%); }
  100% { transform: scale(1.07) translate(0.4%, 0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 5, 0.60) 0%,
    rgba(8, 8, 8, 0.42) 35%,
    rgba(8, 8, 8, 0.65) 75%,
    rgba(11, 11, 11, 0.90) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  /* Push content below the enlarged header (175px logo + padding) */
  padding-top: clamp(140px, 20vh, 210px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 50px;
  padding: 0.45rem 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
  animation-delay: 0.3s;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards;
  animation-delay: 0.55s;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards;
  animation-delay: 0.75s;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards;
  animation-delay: 0.95s;
}

/* Floating decorative shapes */
.hero-decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.hero-decor-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,162,39,0.08) 0%, transparent 70%);
  top: 10%;
  right: 5%;
  animation: float 8s ease-in-out infinite;
}
.hero-decor-2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(122,14,21,0.15) 0%, transparent 70%);
  bottom: 20%;
  right: 20%;
  animation: float 12s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-20px) scale(1.05); }
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.6;
  animation: fadeIn 1s ease forwards 1.5s, bounce 2s ease-in-out infinite 2s;
  z-index: 3;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}
.about-image-wrap img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  transition: transform 0.8s ease;
}
.about-image-wrap:hover img { transform: scale(1.04); }

.about-image-frame {
  position: absolute;
  inset: -12px;
  border: 1px solid var(--gold-dark);
  border-radius: 24px;
  opacity: 0.4;
  pointer-events: none;
}
.about-image-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  box-shadow: var(--shadow-gold);
}
.about-image-badge .badge-num {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.about-image-badge .badge-text {
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
}

.about-content { padding-right: 1rem; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.stat-box {
  background: var(--bg-card);
  border: 1px solid rgba(201,162,39,0.12);
  border-radius: var(--border-radius);
  padding: 1.25rem;
  text-align: center;
  transition: var(--transition);
}
.stat-box:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.25rem;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

/* Feature card with background image support */
.feature-card {
  background: var(--bg-card);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(201,162,39,0.12);
  border-radius: var(--border-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
  isolation: isolate;
}

/* Dark overlay — dims the bg image, lifts on hover to reveal it */
.feature-card-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.72);
  transition: background 0.5s ease;
  z-index: 0;
  border-radius: inherit;
}
.feature-card:hover .feature-card-bg-overlay {
  background: rgba(8, 8, 8, 0.48);
}

/* Ensure content sits above the overlay */
.feature-card > .feature-icon,
.feature-card > .feature-title {
  position: relative;
  z-index: 1;
}

/* Gold top border reveal on hover */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  z-index: 2;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  border-color: rgba(201,162,39,0.35);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,162,39,0.15);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: rgba(201,162,39,0.10);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: var(--transition);
  position: relative;
  z-index: 1;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.feature-card:hover .feature-icon {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.12) rotate(5deg);
  box-shadow: 0 6px 24px rgba(201,162,39,0.45);
}
.feature-card:hover .feature-icon svg,
.feature-card:hover .feature-icon span {
  filter: brightness(0);
}
.feature-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

/* ============================================================
   FOOD CARDS
   ============================================================ */
.food-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.food-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,162,39,0.08);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.food-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,162,39,0.2);
}

.food-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.food-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.food-card:hover .food-card-img img { transform: scale(1.1); }

.food-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.food-card:hover .food-card-overlay { opacity: 1; }

.food-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
}

.food-card-body {
  padding: 1.5rem;
}
.food-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.food-card-desc {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.food-card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.food-card-price {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold);
}

/* ============================================================
   COCKTAIL SLIDER
   ============================================================ */
.cocktail-section { overflow: hidden; }
.cocktail-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.cocktail-slider-wrap {
  position: relative;
  overflow: hidden;
}
.cocktail-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.cocktail-card {
  flex: 0 0 calc(33.33% - 1rem);
  min-width: 0;
  background: var(--bg-card);
  border: 1px solid rgba(201,162,39,0.08);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  cursor: pointer;
}
.cocktail-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,162,39,0.25);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.cocktail-card-img {
  height: 300px;
  position: relative;
  overflow: hidden;
}
.cocktail-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.cocktail-card:hover .cocktail-card-img img { transform: scale(1.08); }

/* Glass reflection overlay */
.cocktail-glass-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.06) 0%,
    transparent 40%,
    rgba(201,162,39,0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.cocktail-card:hover .cocktail-glass-overlay { opacity: 1; }

.cocktail-card-body { padding: 1.5rem; }
.cocktail-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.cocktail-type {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  justify-content: center;
}
.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid rgba(201,162,39,0.25);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  cursor: pointer;
  font-size: 1.1rem;
}
.slider-btn:hover {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
  transform: scale(1.1);
}
.slider-dots {
  display: flex;
  gap: 0.5rem;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201,162,39,0.25);
  transition: var(--transition-fast);
  cursor: pointer;
}
.slider-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-slider-wrap { position: relative; }
.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,162,39,0.1);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  right: 1.5rem;
  font-size: 8rem;
  font-family: var(--font-display);
  color: rgba(201,162,39,0.06);
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,162,39,0.22);
  box-shadow: var(--shadow-gold);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--burgundy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}
.testimonial-role {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}

/* ============================================================
   GALLERY PREVIEW
   ============================================================ */
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-top: 3rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  cursor: pointer;
}
.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
  transition: transform 0.7s ease;
  display: block;
}
.gallery-item:nth-child(1) img { min-height: 420px; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
}
.gallery-zoom-icon {
  width: 36px;
  height: 36px;
  background: rgba(201,162,39,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-primary);
  font-size: 0.9rem;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/cta-bg.png');
  background-size: cover;
  background-position: center;
  animation: kenBurns 16s ease-in-out infinite alternate;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,11,11,0.9) 0%,
    rgba(11,11,11,0.7) 50%,
    rgba(122,14,21,0.45) 100%
  );
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.25rem;
}
.cta-text {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #080808;
  border-top: 1px solid rgba(201,162,39,0.12);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.8;
  margin: 1.25rem 0;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid rgba(201,162,39,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.9rem;
  transition: var(--transition-fast);
  text-decoration: none;
}
.social-link:hover {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
  transform: translateY(-3px) rotate(-5deg);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--gray);
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links a:hover { color: var(--gold); }
.footer-links a::before {
  content: '›';
  color: var(--gold-dark);
  font-size: 1rem;
  transition: transform var(--transition-fast);
}
.footer-links a:hover::before { transform: translateX(3px); }

.footer-info li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--gray);
}
.footer-info-icon {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.footer-newsletter input {
  width: 100%;
  padding: 0.85rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid rgba(201,162,39,0.15);
  border-radius: 6px;
  color: var(--white);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s ease;
  margin-bottom: 0.75rem;
}
.footer-newsletter input:focus { border-color: var(--gold); }
.footer-newsletter input::placeholder { color: var(--gray-dark); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copyright {
  font-size: 0.8rem;
  color: var(--gray-dark);
}
.footer-copyright span { color: var(--gold); }
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.78rem;
  color: var(--gray-dark);
  transition: color var(--transition-fast);
}
.footer-legal a:hover { color: var(--gold); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floating-btns {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  text-decoration: none;
  color: var(--white);
  overflow: hidden;
}
.float-btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}
.float-btn-whatsapp:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.45);
}
.float-btn-call {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
}
.float-btn-call:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,162,39,0.45);
}

/* Back to top */
.back-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid rgba(201,162,39,0.25);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  font-size: 1rem;
}
.back-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-top:hover {
  background: var(--gold);
  color: var(--bg-primary);
  transform: translateY(-3px);
}

/* ============================================================
   PAGE HERO BANNERS
   ============================================================ */
.page-hero {
  padding: 10rem 0 5rem;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,11,11,0.8) 0%, rgba(11,11,11,0.95) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.06em;
}
.page-hero-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  letter-spacing: 0.05em;
}
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--gray-dark);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}
.page-hero-breadcrumb a { color: var(--gold); }
.page-hero-breadcrumb span { color: var(--gray-dark); }

/* ============================================================
   MENU CAROUSEL
   ============================================================ */
.menu-carousel-section { padding: 5rem 0; }
.menu-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.menu-carousel-track {
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  border: 1px solid rgba(201,162,39,0.15);
}
.menu-slide {
  display: none;
  position: relative;
}
.menu-slide.active { display: block; }
.menu-slide img {
  width: 100%;
  height: 600px;
  object-fit: contain;
  background: var(--bg-secondary);
}

.menu-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.menu-nav-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid rgba(201,162,39,0.25);
  color: var(--gold);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}
.menu-nav-btn:hover {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
  transform: scale(1.08);
}
.menu-page-counter {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--gray);
}
.menu-page-counter span { color: var(--gold); font-weight: 700; }

.menu-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.25rem;
}
.menu-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201,162,39,0.2);
  cursor: pointer;
  transition: var(--transition-fast);
}
.menu-dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 4px;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--bg-card);
  border: 1px solid rgba(201,162,39,0.15);
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition-fast);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
}

.gallery-masonry {
  columns: 3;
  column-gap: 1.25rem;
}
.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}
.gallery-masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-masonry-item:hover img { transform: scale(1.06); }
.gallery-masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
}
.gallery-masonry-item:hover .gallery-masonry-overlay { opacity: 1; }
.gallery-zoom-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.gallery-masonry-item:hover .gallery-zoom-btn { transform: scale(1); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.96);
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  animation: scaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lightbox-inner img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--border-radius);
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}
.lightbox-close {
  position: fixed;
  top: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}
.lightbox-close:hover { background: var(--gold); color: var(--bg-primary); }
.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}
.lightbox-nav:hover { background: var(--gold); color: var(--bg-primary); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  grid-template-areas:
    "info form"
    "map  form";
  gap: 2.5rem 4rem;
  align-items: start;
}

.contact-info-block {
  grid-area: info;
}

.reservation-form-block {
  grid-area: form;
}

.map-block {
  grid-area: map;
}

@media (max-width: 768px) {
  .contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
  .contact-info-block { order: 1; }
  .reservation-form-block { order: 2; }
  .map-block { order: 3; }
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,162,39,0.1);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
}
.contact-info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition-fast);
}
.contact-info-item:hover .contact-info-icon {
  background: var(--gold);
  color: var(--bg-primary);
}
.contact-info-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.contact-info-value {
  font-size: 0.92rem;
  color: var(--white);
  line-height: 1.6;
}
.contact-info-value a { color: var(--white); transition: color var(--transition-fast); }
.contact-info-value a:hover { color: var(--gold); }

/* Map */
.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201,162,39,0.3);
  margin-top: 2rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
}
.map-wrap iframe {
  width: 100%;
  height: 450px;
  display: block;
  border: 0;
  border-radius: 16px;
}

@media (max-width: 1024px) {
  .map-wrap iframe {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .map-wrap iframe {
    height: 300px;
  }
}

/* Reservation Form */
.reservation-form {
  background: var(--bg-card);
  border: 1px solid rgba(201,162,39,0.1);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.form-group {
  position: relative;
}
.form-group-full { grid-column: span 2; }
.form-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-input {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: var(--font-body);
}
.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.12);
  background: rgba(201,162,39,0.04);
}
.form-input::placeholder { color: var(--gray-dark); }
textarea.form-input { resize: vertical; min-height: 110px; }
select.form-input { cursor: pointer; }
select.form-input option { background: var(--bg-secondary); }

.form-submit-wrap {
  margin-top: 1.5rem;
  text-align: center;
}
.form-submit-wrap .btn { width: 100%; justify-content: center; padding: 1.1rem 2rem; }

/* Success Message */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  animation: fadeIn 0.5s ease;
}
.form-success.show { display: block; }
.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

/* ============================================================
   SECTION HEADER CENTER
   ============================================================ */
.section-header {
  max-width: 700px;
}
.section-header.center {
  text-align: center;
  margin: 0 auto;
}
.section-header.center .section-subtitle {
  margin: 0 auto;
}

/* ============================================================
   ANIMATIONS & REVEAL
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}

/* Reveal animation classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
.stagger-7 { transition-delay: 0.7s; }
.stagger-8 { transition-delay: 0.8s; }

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

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .food-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap img { height: 400px; }
  .testimonial-track { grid-template-columns: 1fr 1fr; }
  .cocktail-card { flex: 0 0 calc(50% - 0.75rem); }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }

  /* Header — tablet: scale logo to 130px */
  .header { padding: 0.5rem 0; }
  .header.scrolled { padding: 0.25rem 0; }
  .logo-img { height: 130px; }
  .header.scrolled .logo-img { height: 85px; }

  /* Hero — tablet */
  .hero-bg { background-position: 60% 20%; }
  .hero-content { max-width: 90%; }
  .hero-title { font-size: 3.2rem; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  /* Header + logo — mobile */
  .header { padding: 0.35rem 0; }
  .header.scrolled { padding: 0.2rem 0; }
  .logo-img { height: 80px; }
  .header.scrolled .logo-img { height: 58px; }
  .logo-text { font-size: 1.15rem; }
  .container { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }

  .nav { display: none; }
  .hamburger { display: flex; }

  /* ── Hero mobile fixes ── */
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    align-items: flex-end; /* push content down — shows more of the image */
    padding-bottom: 5rem;
  }
  .hero-bg {
    background-position: 55% top; /* show chandeliers + neon on mobile portrait */
    background-size: cover;
    background-attachment: scroll;
    filter: contrast(1.1) saturate(1.2) brightness(1.05);
    animation: none; /* disable Ken Burns on mobile — saves CPU */
  }
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(5, 5, 5, 0.50) 0%,
      rgba(8, 8, 8, 0.35) 30%,
      rgba(8, 8, 8, 0.72) 70%,
      rgba(11, 11, 11, 0.95) 100%
    );
  }
  .hero-content {
    max-width: 100%;
    padding-top: 100px;   /* clears 80px mobile header */
    padding-bottom: 1rem;
  }
  .hero-title {
    font-size: 2.4rem;
    line-height: 1.1;
  }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-scroll { display: none; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .food-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-track { grid-template-columns: 1fr; }
  .cocktail-card { flex: 0 0 calc(100% - 0); }

  .gallery-preview-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(1) img { min-height: 250px; }
  .gallery-masonry { columns: 1; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .about-stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-group-full { grid-column: span 1; }

  .section-title { font-size: 2rem; }
  .page-hero-title { font-size: 2.8rem; }

  .floating-btns { bottom: 1.25rem; right: 1.25rem; }
  .float-btn span { display: none; }
  .float-btn { padding: 0.85rem; border-radius: 50%; }
}

@media (max-width: 480px) {
  .food-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .about-stats { grid-template-columns: 1fr; }

  /* Logo — small phones */
  .logo-img { height: 62px; }
  .header.scrolled .logo-img { height: 48px; }

  /* ── Hero small mobile ── */
  .hero {
    padding-bottom: 4rem;
  }
  .hero-bg {
    background-position: 65% top; /* shift right to show neon sign */
  }
  .hero-title {
    font-size: 1.9rem;
    line-height: 1.1;
  }
  .hero-badge {
    font-size: 0.65rem;
    padding: 0.4rem 1rem;
  }
  .hero-subtitle { font-size: 0.88rem; }
  .hero-actions .btn {
    font-size: 0.78rem;
    padding: 0.85rem 1.5rem;
  }
}

/* iPhone SE / very small screens */
@media (max-width: 375px) {
  .hero-title { font-size: 1.65rem; }
  .hero-badge { display: none; }
}

/* Landscape mobile — show more image, less height */
@media (max-width: 900px) and (orientation: landscape) {
  .hero {
    min-height: 100vw;
    min-height: 100svh;
    align-items: center;
    padding-bottom: 2rem;
  }
  .hero-bg {
    background-position: center 15%;
  }
  .hero-title { font-size: 2rem; }
  .hero-content { max-width: 70%; }
}
