/* =========================================
   Furnace Nightlife - PREMIUM DESIGN SYSTEM
   ========================================= */

@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&family=Inter:wght@300;400;500&display=swap');

/* --- CSS Variables --- */
:root {
  --primary-gold: #D4AF37;
  --secondary-gold: #F4D03F;
  --gold-dark: #A8892A;
  --gold-light: #F9E88E;
  --black: #0A0A0A;
  --dark: #121212;
  --dark-2: #0F0F0F;
  --card: #1A1A1A;
  --card-2: #1F1F1F;
  --border: rgba(212, 175, 55, 0.2);
  --border-bright: rgba(212, 175, 55, 0.5);
  --text: #FFFFFF;
  --text-muted: #9CA3AF;
  --text-dim: #6B7280;
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;
  --max-width: 1400px;
  --nav-height: 80px;
  --section-pad: 120px 0;
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --shadow: 0 20px 50px rgba(0,0,0,0.4);
  --shadow-gold: 0 0 30px rgba(212,175,55,0.15);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--dark); color: var(--text); font-family: 'Poppins', sans-serif; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--primary-gold); border-radius: 3px; }

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  border-bottom: 1px solid var(--border);
}
.navbar.scrolled .nav-link { color: var(--text); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
}
.nav-logo-text .logo-main {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-gold);
  letter-spacing: 0.08em;
  line-height: 1.1;
}
.nav-logo-text .logo-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  transition: var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--primary-gold);
  transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--primary-gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.btn-book {
  padding: 12px 28px;
  background: var(--primary-gold);
  color: var(--black);
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border: 2px solid var(--primary-gold);
  white-space: nowrap;
}
.btn-book:hover {
  background: transparent;
  color: var(--primary-gold);
  box-shadow: 0 0 20px rgba(212,175,55,0.4);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary-gold);
  transition: var(--transition);
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  padding: 32px 40px;
  flex-direction: column;
  gap: 24px;
  border-top: 1px solid var(--border);
  z-index: 999;
  transform: translateY(-20px);
  opacity: 0;
  transition: var(--transition);
}
.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu .nav-link {
  font-size: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .btn-book { width: 100%; text-align: center; margin-top: 8px; }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border-radius: var(--radius-sm);
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary-gold);
  color: var(--black);
  border: 2px solid var(--primary-gold);
}
.btn-primary:hover {
  background: transparent;
  color: var(--primary-gold);
  box-shadow: 0 0 30px rgba(212,175,55,0.3);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  transform: translateY(-2px);
}
.btn-gold-outline {
  background: transparent;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
}
.btn-gold-outline:hover {
  background: var(--primary-gold);
  color: var(--black);
  box-shadow: 0 0 30px rgba(212,175,55,0.4);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 10px 24px;
  font-size: 0.7rem;
}
.btn-lg {
  padding: 18px 48px;
  font-size: 0.85rem;
}
.btn-full { width: 100%; justify-content: center; }
.btn svg { width: 18px; height: 18px; }

/* =========================================
   SECTION LAYOUT
   ========================================= */
.section { padding: var(--section-pad); }
.section-sm { padding: 80px 0; }
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}
.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary-gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: 0.03em;
}
.section-title span { color: var(--primary-gold); }
.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
  margin: 20px auto;
}
.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =========================================
   HERO - HOMEPAGE
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/1267244/pexels-photo-1267244.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&dpr=2');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.85) 0%,
    rgba(10,10,10,0.6) 50%,
    rgba(10,10,10,0.8) 100%
  );
}
.hero-bg.loaded { transform: scale(1); }
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding-top: var(--nav-height);
}
.hero-text {}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--primary-gold);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--primary-gold);
}
.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.8);
}
.hero-title .gold { color: var(--primary-gold); }
.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
}
.hero-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 48px;
}
.hero-tagline span {
  color: var(--primary-gold);
  margin: 0 8px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-logo-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-logo-side img {
  width: 280px;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(212,175,55,0.3));
  animation: float 4s ease-in-out infinite;
}
.hero-features {
  display: flex;
  gap: 32px;
  padding: 24px 40px;
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(10,10,10,0.95), transparent);
  justify-content: center;
}
.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-feature-item svg {
  width: 20px; height: 20px;
  color: var(--primary-gold);
  flex-shrink: 0;
}
.scroll-indicator {
  position: absolute;
  bottom: 100px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--primary-gold), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--nav-height);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(10,10,10,0.85) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
}
.page-hero-content .section-tag { margin-bottom: 12px; }
.page-hero-content h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: 0.05em;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.7);
}
.page-hero-content h1 span { color: var(--primary-gold); }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--primary-gold); transition: var(--transition); }
.breadcrumb a:hover { color: var(--secondary-gold); }
.breadcrumb span { color: var(--text-muted); }

/* =========================================
   FEATURED EXPERIENCES CARDS
   ========================================= */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.experience-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.experience-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-gold);
  box-shadow: var(--shadow), var(--shadow-gold);
}
.experience-card-img {
  height: 200px;
  overflow: hidden;
}
.experience-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.experience-card:hover .experience-card-img img { transform: scale(1.08); }
.experience-card-body {
  padding: 28px;
}
.experience-icon {
  width: 48px; height: 48px;
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.experience-icon svg {
  width: 22px; height: 22px;
  color: var(--primary-gold);
}
.experience-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 10px;
}
.experience-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =========================================
   EVENT CARDS
   ========================================= */
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.events-slider {
  position: relative;
  overflow: hidden;
}
.events-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}
.events-slider-track .event-card { flex: 0 0 calc(25% - 18px); }
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  transition: var(--transition);
  cursor: pointer;
}
.slider-btn:hover {
  background: var(--primary-gold);
  color: var(--black);
  border-color: var(--primary-gold);
}
.slider-btn svg { width: 20px; height: 20px; }
.slider-prev { left: -24px; }
.slider-next { right: -24px; }

.event-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.event-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-bright);
  box-shadow: var(--shadow), var(--shadow-gold);
}
.event-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.event-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.event-card:hover .event-card-image img { transform: scale(1.06); }
.event-badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 5px 14px;
  background: var(--primary-gold);
  color: var(--black);
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
}
.event-badge.free { background: #10B981; }
.event-badge.hot { background: #EF4444; color: var(--text); }
.event-name-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}
.event-name-overlay h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.event-name-overlay .event-style {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--primary-gold);
}
.event-card-body { padding: 20px; }
.event-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.event-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.event-meta-item svg {
  width: 14px; height: 14px;
  color: var(--primary-gold);
  flex-shrink: 0;
}

/* =========================================
   DRINKS / MENU ITEMS
   ========================================= */
.drinks-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.drink-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}
.drink-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-gold);
}
.drink-card-img {
  height: 160px;
  overflow: hidden;
  position: relative;
}
.drink-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.drink-card:hover .drink-card-img img { transform: scale(1.1); }
.drink-card-body { padding: 18px 16px; }
.drink-category {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary-gold);
  margin-bottom: 6px;
}
.drink-card h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 6px;
}
.drink-price {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--primary-gold);
  font-weight: 700;
}
.menu-item-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.menu-item-row:hover {
  border-color: var(--border-bright);
  transform: translateX(4px);
}
.menu-item-img {
  width: 80px; height: 80px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.menu-item-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.menu-item-info { flex: 1; }
.menu-item-info h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 4px;
}
.menu-item-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.menu-item-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--primary-gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* =========================================
   VIP PACKAGES
   ========================================= */
.vip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.vip-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.vip-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow), 0 0 40px rgba(212,175,55,0.2);
}
.vip-card.featured {
  border-color: var(--primary-gold);
  box-shadow: 0 0 30px rgba(212,175,55,0.15);
}
.vip-card-badge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 20px;
  background: var(--primary-gold);
  color: var(--black);
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 20px;
  white-space: nowrap;
  z-index: 3;
}
.vip-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.vip-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.vip-card:hover .vip-card-img img { transform: scale(1.06); }
.vip-card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, var(--card), transparent);
}
.vip-card-body { padding: 28px 30px 32px; }
.vip-tier {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.vip-tier-icon {
  width: 44px; height: 44px;
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vip-tier-icon svg { width: 20px; height: 20px; color: var(--primary-gold); }
.vip-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--primary-gold);
}
.vip-min-spend {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 4px;
}
.vip-min-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.vip-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}
.vip-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.vip-benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}
.vip-benefit-item::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--primary-gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* =========================================
   GALLERY
   ========================================= */
.gallery-grid {
  columns: 4;
  column-gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item-overlay svg {
  width: 36px; height: 36px;
  color: var(--primary-gold);
  transform: scale(0.5);
  transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item:hover .gallery-item-overlay svg { transform: scale(1); }

/* Category Filters */
.filter-tabs {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-tab {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 30px;
  color: var(--text-muted);
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.filter-tab:hover { border-color: var(--primary-gold); color: var(--primary-gold); }
.filter-tab.active {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: var(--black);
  font-weight: 600;
}

/* =========================================
   LIGHTBOX
   ========================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 40px;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  z-index: 1;
}
.lightbox-close:hover {
  background: var(--primary-gold);
  color: var(--black);
  border-color: var(--primary-gold);
}
.lightbox-close svg { width: 20px; height: 20px; }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-nav:hover {
  background: var(--primary-gold);
  color: var(--black);
}
.lightbox-nav svg { width: 20px; height: 20px; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-section { background: var(--dark-2); }
.testimonials-slider {
  position: relative;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}
.testimonial-card {
  flex: 0 0 calc(33.33% - 20px);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: var(--border-bright);
  box-shadow: var(--shadow-gold);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--primary-gold);
  font-size: 1rem;
}
.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 28px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary-gold);
  flex-shrink: 0;
}
.testimonial-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.testimonial-author h5 {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  color: var(--text);
}
.testimonial-author span {
  font-size: 0.75rem;
  color: var(--primary-gold);
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.slider-dot.active {
  background: var(--primary-gold);
  width: 28px;
  border-radius: 4px;
}

/* =========================================
   INSTAGRAM / SOCIAL GRID
   ========================================= */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 4px;
}
.instagram-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}
.instagram-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.instagram-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(212,175,55,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.instagram-item-overlay svg {
  width: 28px; height: 28px;
  color: var(--black);
}
.instagram-item:hover img { transform: scale(1.1); }
.instagram-item:hover .instagram-item-overlay { opacity: 1; }

/* =========================================
   NEWSLETTER
   ========================================= */
.newsletter-section {
  background: linear-gradient(135deg, #1A1A00 0%, var(--card) 50%, #0A0A0A 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.newsletter-text h2 {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  color: var(--text);
  margin-bottom: 16px;
}
.newsletter-text h2 span { color: var(--primary-gold); }
.newsletter-text p { color: var(--text-muted); }
.newsletter-form {
  display: flex;
  gap: 0;
}
.newsletter-form input {
  flex: 1;
  padding: 16px 24px;
  background: var(--dark);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}
.newsletter-form input:focus { border-color: var(--primary-gold); }
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form button {
  padding: 16px 28px;
  background: var(--primary-gold);
  color: var(--black);
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: var(--transition);
  white-space: nowrap;
}
.newsletter-form button:hover {
  background: var(--secondary-gold);
}

/* =========================================
   STATISTICS
   ========================================= */
.stats-section {
  background: linear-gradient(90deg, var(--dark-2) 0%, var(--card) 50%, var(--dark-2) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--primary-gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* =========================================
   FORMS
   ========================================= */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D4AF37' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--dark); color: var(--text); }
.form-error { font-size: 0.75rem; color: var(--error); margin-top: 4px; }
.form-success { font-size: 0.75rem; color: var(--success); margin-top: 4px; }

/* =========================================
   RESERVATION PAGE
   ========================================= */
.reservations-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}
.reservation-form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.reservation-form-card h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: 8px;
}
.reservation-form-card p.sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 40px;
}
.reservation-summary {
  background: var(--card);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: sticky;
  top: 100px;
}
.reservation-summary h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--primary-gold);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.summary-row:last-child { border-bottom: none; }
.summary-row .label {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.summary-row .value {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
  text-align: right;
}
.summary-total {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid var(--primary-gold);
}
.summary-total .label { color: var(--text); font-weight: 600; }
.summary-total .value {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--primary-gold);
}

/* =========================================
   SUCCESS MODAL
   ========================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9001;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 24px;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: var(--card);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.modal-overlay.active .modal { transform: scale(1); }
.modal-icon {
  width: 80px; height: 80px;
  background: rgba(16,185,129,0.1);
  border: 2px solid #10B981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.modal-icon svg { width: 36px; height: 36px; color: #10B981; }
.modal h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: 16px;
}
.modal p {
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
}
.modal-reference {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-sm);
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  color: var(--primary-gold);
  margin-bottom: 32px;
  letter-spacing: 0.1em;
}

/* =========================================
   ABOUT PAGE SECTIONS
   ========================================= */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-story-text {}
.about-story-text h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.25;
}
.about-story-text h2 span { color: var(--primary-gold); }
.about-story-text p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.about-story-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-story-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.about-story-img::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  right: 20px; bottom: 20px;
  border: 2px solid var(--primary-gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-bright);
}
.team-card-img {
  height: 260px;
  overflow: hidden;
}
.team-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.team-card:hover .team-card-img img { transform: scale(1.06); }
.team-card-info {
  padding: 24px 20px;
}
.team-card-info h4 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 6px;
}
.team-card-info span {
  font-size: 0.78rem;
  color: var(--primary-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.timeline {
  position: relative;
  padding-left: 60px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-gold), transparent);
}
.timeline-item {
  position: relative;
  margin-bottom: 48px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -48px;
  top: 6px;
  width: 14px; height: 14px;
  background: var(--primary-gold);
  border-radius: 50%;
  border: 3px solid var(--dark);
  box-shadow: 0 0 0 2px var(--primary-gold);
}
.timeline-year {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  color: var(--primary-gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.timeline-item h4 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 8px;
}
.timeline-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.contact-info-card h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 8px;
}
.contact-info-card p.sub {
  color: var(--text-muted);
  margin-bottom: 40px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; color: var(--primary-gold); }
.contact-detail-text h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}
.contact-detail-text p, .contact-detail-text a {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  transition: var(--transition);
}
.contact-detail-text a:hover { color: var(--primary-gold); }
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}
.hours-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.hours-item strong { color: var(--text); }
.map-placeholder {
  width: 100%;
  height: 320px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  margin-top: 32px;
}
.map-placeholder svg { width: 48px; height: 48px; color: var(--primary-gold); opacity: 0.5; }
.contact-form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: sticky;
  top: 100px;
}
.contact-form-card h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 8px;
}
.contact-form-card p.sub {
  color: var(--text-muted);
  margin-bottom: 36px;
}

/* =========================================
   EVENT DETAILS PAGE
   ========================================= */
.event-detail-hero {
  position: relative;
  height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: var(--nav-height);
}
.event-detail-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.event-detail-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,1) 0%, rgba(10,10,10,0.4) 60%, rgba(0,0,0,0.3) 100%);
}
.event-detail-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px 60px;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}
.event-detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
}
.event-info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: sticky;
  top: 100px;
}
.event-info-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--primary-gold);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.event-info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.event-info-row:last-of-type { border-bottom: none; }
.event-info-row svg { width: 16px; height: 16px; color: var(--primary-gold); flex-shrink: 0; }
.event-info-row .info-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.event-info-row .info-value { font-size: 0.9rem; color: var(--text); }
.countdown-timer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 24px 0;
}
.countdown-unit {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 8px;
  text-align: center;
}
.countdown-number {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-gold);
  line-height: 1;
  margin-bottom: 4px;
}
.countdown-label {
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.dj-lineup {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}
.dj-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.dj-item:hover { border-color: var(--border-bright); }
.dj-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary-gold);
  flex-shrink: 0;
}
.dj-avatar img { width: 100%; height: 100%; object-fit: cover; }
.dj-info h4 { font-family: 'Cinzel', serif; font-size: 0.9rem; color: var(--text); margin-bottom: 4px; }
.dj-info span { font-size: 0.75rem; color: var(--primary-gold); }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-brand .footer-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}
.footer-brand .footer-logo-text .logo-main {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--primary-gold);
  font-weight: 700;
}
.footer-brand .footer-logo-text .logo-sub {
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 24px;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 40px; height: 40px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: var(--black);
}
.social-link svg { width: 18px; height: 18px; }
.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  color: var(--text);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover { color: var(--primary-gold); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-item svg {
  width: 16px; height: 16px;
  color: var(--primary-gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.footer-hours .hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-hours .hours-row .day { color: rgba(255,255,255,0.7); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom-content p {
  font-size: 0.8rem;
  color: var(--text-dim);
}
.footer-bottom-content p span { color: var(--primary-gold); }
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 0.78rem;
  color: var(--text-dim);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--primary-gold); }

/* =========================================
   SCROLL TO TOP
   ========================================= */
.scroll-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  z-index: 800;
  width: 48px; height: 48px;
  background: var(--primary-gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(212,175,55,0.4);
  border: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover {
  background: var(--secondary-gold);
  transform: translateY(-4px);
}
.scroll-top svg { width: 20px; height: 20px; }

/* =========================================
   SECTION BACKGROUNDS
   ========================================= */
.bg-dark { background: var(--dark); }
.bg-dark-2 { background: var(--dark-2); }
.bg-card { background: var(--card); }
.bg-gradient {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
}
.bg-gold-gradient {
  background: linear-gradient(135deg, rgba(212,175,55,0.08) 0%, rgba(10,10,10,0) 100%);
}

/* =========================================
   SEARCH INPUT
   ========================================= */
.search-bar {
  position: relative;
  max-width: 500px;
  margin: 0 auto 48px;
}
.search-bar input {
  width: 100%;
  padding: 16px 52px 16px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}
.search-bar input:focus { border-color: var(--primary-gold); }
.search-bar svg {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 20px;
  color: var(--text-muted);
  pointer-events: none;
}

/* =========================================
   MENU PAGE - Category Nav
   ========================================= */
.menu-nav {
  background: var(--dark-2);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky;
  top: var(--nav-height);
  z-index: 100;
}
.menu-nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 0;
  overflow-x: auto;
}
.menu-nav-tab {
  padding: 20px 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  background: none;
}
.menu-nav-tab:hover { color: var(--primary-gold); }
.menu-nav-tab.active {
  color: var(--primary-gold);
  border-bottom-color: var(--primary-gold);
}

.menu-category-section {
  margin-bottom: 80px;
}
.menu-category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}
.menu-category-header h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  color: var(--text);
}
.menu-category-header .cat-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.menu-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* =========================================
   VIP PAGE EXTRAS
   ========================================= */
.vip-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.vip-feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}
.vip-feature:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
}
.vip-feature-icon {
  width: 60px; height: 60px;
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.vip-feature-icon svg { width: 26px; height: 26px; color: var(--primary-gold); }
.vip-feature h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 8px;
}
.vip-feature p { font-size: 0.82rem; color: var(--text-muted); }

/* =========================================
   SECTION DIVIDER GOLD
   ========================================= */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 16px auto;
  max-width: 300px;
  justify-content: center;
}
.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-gold));
}
.gold-divider::after {
  background: linear-gradient(90deg, var(--primary-gold), transparent);
}
.gold-divider svg {
  width: 16px; height: 16px;
  color: var(--primary-gold);
  flex-shrink: 0;
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}
@keyframes scrollDown {
  0% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }
.animate-delay-6 { transition-delay: 0.6s; }

/* Gold shimmer effect */
.gold-shimmer {
  background: linear-gradient(90deg, var(--primary-gold) 0%, var(--secondary-gold) 50%, var(--primary-gold) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* =========================================
   UTILITY
   ========================================= */
.text-gold { color: var(--primary-gold) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.hidden { display: none !important; }

/* Gold borders decoration */
.gold-border-left { border-left: 3px solid var(--primary-gold); padding-left: 20px; }

/* Lazy load placeholder */
img[data-src] {
  filter: blur(10px);
  transition: filter 0.3s ease;
}
img.loaded { filter: none; }
