/* ============================================
   Stay In Bar and Grill — Design System
   Colors: Black, White, Orange
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --black: #0a0a0a;
  --charcoal: #1a1a1a;
  --charcoal-light: #2a2a2a;
  --charcoal-lighter: #333333;
  --orange: #e8611a;
  --orange-light: #f07a3a;
  --orange-dark: #c44e12;
  --amber: #e8961a;
  --gold: #d4a650;
  --white: #f5f5f0;
  --white-dim: #cccccc;
  --glass-bg: rgba(26, 26, 26, 0.6);
  --glass-border: rgba(232, 97, 26, 0.15);
  --glass-shadow: rgba(0, 0, 0, 0.4);
  --text-primary: #f5f5f0;
  --text-secondary: rgba(245, 245, 240, 0.7);
  --text-muted: rgba(245, 245, 240, 0.4);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-fast: 0.2s ease;
  --transition-med: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --border-radius: 16px;
  --border-radius-sm: 10px;
  --border-radius-xs: 6px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  outline: none;
}

ul,
ol {
  list-style: none;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--white) 0%, var(--orange) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* ---------- Container ---------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

/* ---------- Glassmorphism Utility ---------- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  box-shadow: 0 8px 32px var(--glass-shadow);
}

.glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 97, 26, 0.3), transparent);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

/* ============================================
   LOADING SCREEN
   ============================================ */
#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

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

.loading-logo {
  width: 180px;
  height: 180px;
  object-fit: contain;
  border-radius: 50%;
  animation: logoPulse 2s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.loading-icons {
  position: absolute;
  width: 320px;
  height: 320px;
}

.loading-icon {
  position: absolute;
  font-size: 2rem;
  opacity: 0;
  animation: iconFlash 3s ease-in-out infinite;
}

.loading-icon:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.loading-icon:nth-child(2) {
  top: 25%;
  right: 0;
  animation-delay: 0.5s;
}

.loading-icon:nth-child(3) {
  bottom: 25%;
  right: 0;
  animation-delay: 1s;
}

.loading-icon:nth-child(4) {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 1.5s;
}

.loading-icon:nth-child(5) {
  bottom: 25%;
  left: 0;
  animation-delay: 2s;
}

.loading-icon:nth-child(6) {
  top: 25%;
  left: 0;
  animation-delay: 2.5s;
}

.loading-progress {
  width: 200px;
  height: 3px;
  background: var(--charcoal-light);
  border-radius: 3px;
  margin-top: 3rem;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.loading-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  border-radius: 3px;
  width: 0%;
  transition: width 0.3s linear;
}

.loading-text {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
}

/* ============================================
   CURSOR EFFECTS
   ============================================ */
#cursor-spotlight {
  position: fixed;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 97, 26, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  will-change: transform;
}

#smoke-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
}

/* ============================================
   NAVIGATION
   ============================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  padding: 1rem 0;
  transition: all var(--transition-med);
}

#navbar.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(232, 97, 26, 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  transition: filter var(--transition-fast);
}

.nav-logo:hover {
  filter: drop-shadow(0 0 8px rgba(232, 97, 26, 0.5));
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition-med);
}

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

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

.nav-cta {
  padding: 0.6rem 1.5rem;
  background: var(--orange);
  color: var(--white) !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

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

.nav-cta:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(232, 97, 26, 0.4);
}

.nav-cta:active {
  transform: translateY(0) scale(0.97);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-fast);
  border-radius: 2px;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 8999;
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: right var(--transition-med);
  border-left: 1px solid var(--glass-border);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav a:hover {
  color: var(--orange);
  padding-left: 10px;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 8998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-med);
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

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

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

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

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

.hero-slide.slide-out {
  animation: heroSlideOut 1.5s ease forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(10, 10, 10, 0.4) 0%,
      rgba(10, 10, 10, 0.6) 50%,
      rgba(10, 10, 10, 0.9) 100%);
  z-index: 1;
}

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

.hero-logo-video {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin: 0 auto 2rem;
  border-radius: 50%;
  opacity: 0;
  animation: fadeScaleIn 1s ease 0.5s forwards;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 1s ease 1s forwards;
  background: linear-gradient(135deg, var(--white), var(--orange-light));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease 1.4s forwards;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease 1.8s forwards;
}

.btn-primary {
  padding: 0.9rem 2.2rem;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(232, 97, 26, 0.4);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.97);
}

.btn-outline {
  padding: 0.9rem 2.2rem;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(232, 97, 26, 0.5);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.btn-outline:hover {
  background: rgba(232, 97, 26, 0.1);
  border-color: var(--orange);
  transform: translateY(-3px);
}

.btn-outline:active {
  transform: translateY(-1px) scale(0.97);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease 2.2s forwards;
}

.hero-scroll-indicator span {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--text-muted);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--orange);
  border-radius: 4px;
  animation: scrollWheel 2s ease-in-out infinite;
}

/* Particle canvas in hero */
#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
#about {
  background: var(--charcoal);
  overflow: hidden;
}

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

.about-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius);
  transition: transform var(--transition-slow);
}

.about-image:hover img {
  transform: scale(1.05);
}

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

.about-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--white), var(--orange));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-quote {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  font-style: italic;
  color: var(--gold);
  padding-left: 1.5rem;
  border-left: 3px solid var(--orange);
  margin-top: 1.5rem;
}

.about-features {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.about-feature {
  text-align: center;
}

.about-feature .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
}

.about-feature .label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
#services {
  background: var(--black);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  padding: 2rem 1.5rem;
  text-align: center;
  overflow: hidden;
  transition: all var(--transition-med);
  cursor: default;
}

.service-card:nth-child(1) {
  grid-column: span 2;
}

.service-card:nth-child(4) {
  grid-column: span 2;
}

.service-card:nth-child(7) {
  grid-column: span 2;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(232, 97, 26, 0.15);
  border-color: rgba(232, 97, 26, 0.3);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
  transition: transform var(--transition-med);
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotate(5deg);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

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

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
  position: relative;
  background: var(--charcoal-light);
  border-radius: 50px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  padding: 4px;
}

.menu-tab {
  padding: 0.8rem 2rem;
  background: none;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  transition: all var(--transition-med);
  position: relative;
  z-index: 1;
  flex: 1;
  text-align: center;
}

.menu-tab.active {
  color: var(--white);
}

.menu-tab-indicator {
  position: absolute;
  height: calc(100% - 8px);
  top: 4px;
  background: var(--orange);
  border-radius: 50px;
  transition: all var(--transition-med);
  z-index: 0;
}

.menu-panel {
  display: none;
  animation: fadeInUp 0.5s ease forwards;
}

.menu-panel.active {
  display: block;
}

/* Food menu images */
.food-menu-display {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.food-menu-card {
  perspective: 1000px;
  cursor: pointer;
}

.food-menu-card img {
  border-radius: var(--border-radius);
  transition: transform var(--transition-med);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.food-menu-card:hover img {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(232, 97, 26, 0.2);
}

/* Cocktail cards */
.cocktail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.cocktail-card {
  position: relative;
  overflow: hidden;
  transition: all var(--transition-med);
  transform-style: preserve-3d;
  perspective: 800px;
}

.cocktail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(232, 97, 26, 0.15);
}

.cocktail-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.cocktail-card-body {
  padding: 1.5rem;
}

.cocktail-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.cocktail-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Shimmer effect on cocktail cards */
.cocktail-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: left 0.6s;
}

.cocktail-card:hover::after {
  left: 100%;
}

/* Shisha items */
.shisha-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.shisha-item {
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition-med);
}

.shisha-item:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 97, 26, 0.3);
}

.shisha-item .shisha-icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  display: inline-block;
  transition: transform var(--transition-med);
}

.shisha-item:hover .shisha-icon {
  transform: rotate(15deg) scale(1.15);
}

.shisha-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.shisha-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ============================================
   LIVE EVENTS SECTION
   ============================================ */
#events {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.events-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.events-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.events-content {
  position: relative;
  z-index: 1;
}

.event-main-card {
  max-width: 700px;
  margin: 0 auto 3rem;
  padding: 2.5rem;
  text-align: center;
  position: relative;
}

.happening-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: linear-gradient(135deg, var(--orange), #ff4444);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  animation: badgePulse 2s ease-in-out infinite;
}

.happening-badge.hidden {
  display: none;
}

.event-main-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.event-main-card .event-date {
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

.countdown-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.countdown-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.3rem;
}

.btn-rsvp {
  padding: 1rem 3rem;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
  animation: rsvpGlow 3s ease-in-out infinite;
  display: inline-block;
}

.btn-rsvp:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(232, 97, 26, 0.5);
}

.btn-rsvp:active {
  transform: scale(0.95);
}

.past-events {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.past-event-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 16/10;
}

.past-event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.past-event-card:hover img {
  transform: scale(1.08);
}

.past-event-card .past-event-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(10, 10, 10, 0.8));
  font-weight: 600;
  font-size: 0.9rem;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-rows: 240px;
  grid-auto-flow: dense;
  gap: 1.5rem;
}

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

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



.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.08);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 60%, rgba(10, 10, 10, 0.6));
  opacity: 0;
  transition: opacity var(--transition-med);
}

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

.gallery-item .gallery-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 1;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-med);
}

.gallery-item:hover .gallery-label {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-med);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--border-radius);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  background: rgba(232, 97, 26, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--orange);
}

/* ============================================
   INSTAGRAM SECTION
   ============================================ */
#instagram {
  background: var(--black);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.instagram-card {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  transition: all var(--transition-med);
}

.instagram-card:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 97, 26, 0.4);
}

.instagram-card .ig-icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
}

.instagram-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.instagram-follow {
  text-align: center;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.btn-instagram:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 6px 20px rgba(220, 39, 67, 0.4);
}

.btn-instagram:active {
  transform: scale(0.97);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form {
  padding: 2rem;
  position: relative;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-xs);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group select {
  color-scheme: dark;
  appearance: auto;
}

.form-group select option {
  background: #1a1a1a;
  color: #f5f5f0;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 97, 26, 0.1);
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  border-radius: var(--border-radius-xs);
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 97, 26, 0.4);
}

.btn-submit:active {
  transform: scale(0.98);
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(232, 97, 26, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.contact-info-text p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.contact-ambient {
  padding: 1.5rem;
  border-radius: var(--border-radius-sm);
  background: rgba(232, 97, 26, 0.05);
  border-left: 3px solid var(--orange);
  margin-top: 1rem;
}

.contact-ambient p {
  font-style: italic;
  color: var(--gold);
  font-size: 0.95rem;
}

/* ============================================
   FOOTER
   ============================================ */
#footer {
  background: var(--black);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(232, 97, 26, 0.15);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand h3 {
  font-size: 1.2rem;
  color: var(--white);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--charcoal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(232, 97, 26, 0.3);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ============================================
   SCROLL ANIMATION CLASSES
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-rotate {
  opacity: 0;
  transform: translateY(30px) rotate(-3deg);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-rotate.visible {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered children */
.stagger-children>* {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-children.visible>*:nth-child(1) {
  transition-delay: 0s;
}

.stagger-children.visible>*:nth-child(2) {
  transition-delay: 0.1s;
}

.stagger-children.visible>*:nth-child(3) {
  transition-delay: 0.2s;
}

.stagger-children.visible>*:nth-child(4) {
  transition-delay: 0.3s;
}

.stagger-children.visible>*:nth-child(5) {
  transition-delay: 0.4s;
}

.stagger-children.visible>*:nth-child(6) {
  transition-delay: 0.5s;
}

.stagger-children.visible>*:nth-child(7) {
  transition-delay: 0.6s;
}

.stagger-children.visible>*:nth-child(8) {
  transition-delay: 0.7s;
}

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

/* Instant Reveal Override for Bypassing Loader
   IMPORTANT: Do NOT use 'animation: none' here — hero elements
   (tagline, subtitle, buttons, logo) rely on CSS animations to
   transition from opacity:0 to opacity:1. Killing animations
   leaves them permanently invisible. */
.instant-reveal .reveal,
.instant-reveal .reveal-rotate,
.instant-reveal .reveal-scale,
.instant-reveal .reveal-left,
.instant-reveal .reveal-right {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  transition: none !important;
}

.instant-reveal .stagger-children,
.instant-reveal .stagger-children>* {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  transition: none !important;
}

/* Force hero content visible instantly on bypass */
.instant-reveal .hero-tagline,
.instant-reveal .hero-subtitle,
.instant-reveal .hero-buttons,
.instant-reveal .hero-logo-video {
  opacity: 1 !important;
  animation-delay: 0s !important;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeScaleIn {
  from {
    opacity: 0;
    transform: scale(0.7);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroSlideOut {
  from {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  to {
    opacity: 0;
    transform: translateX(-5%) scale(1.02);
  }
}

@keyframes logoPulse {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(232, 97, 26, 0.3));
  }

  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(232, 97, 26, 0.6));
  }
}

@keyframes iconFlash {

  0%,
  100% {
    opacity: 0;
    transform: scale(0.5);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(232, 97, 26, 0.4);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(232, 97, 26, 0);
  }
}

@keyframes rsvpGlow {

  0%,
  100% {
    box-shadow: 0 0 15px rgba(232, 97, 26, 0.2);
  }

  50% {
    box-shadow: 0 0 30px rgba(232, 97, 26, 0.5);
  }
}

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

  100% {
    background-position: 200% 0;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes glossy-blue-shine {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:nth-child(1),
  .service-card:nth-child(4),
  .service-card:nth-child(7) {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

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

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

  .past-events {
    grid-template-columns: 1fr;
  }

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

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

  .gallery-item:nth-child(5) {
    grid-column: span 1;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .countdown {
    gap: 1rem;
  }

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

  .hero-tagline {
    font-size: clamp(1.6rem, 5vw, 3rem);
  }

  .menu-tabs {
    max-width: 100%;
  }

  .menu-tab {
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

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

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

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

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

  .countdown {
    flex-wrap: wrap;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .about-features {
    flex-direction: column;
    align-items: center;
  }

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

/* Disable cursor effects on touch devices */
@media (hover: none) {

  #cursor-spotlight,
  #smoke-canvas {
    display: none !important;
  }
}

/* ============================================
   TICKET MODAL STYLES
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10002;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-med);
  padding: 1rem;
}

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

.modal-content {
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 2.5rem;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  font-size: 1.5rem;
  color: var(--white-dim);
  transition: color var(--transition-fast);
}

.modal-close:hover {
  color: var(--orange);
}

.modal-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--white), var(--orange));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-subtitle {
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 2rem;
}

.ticket-types {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ticket-type-card {
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: left;
  position: relative;
  background: rgba(255, 255, 255, 0.03);
}

.ticket-type-card:hover {
  border-color: rgba(232, 97, 26, 0.4);
  background: rgba(232, 97, 26, 0.05);
}

.ticket-type-card.selected {
  border-color: var(--orange);
  background: rgba(232, 97, 26, 0.1);
  box-shadow: 0 0 15px rgba(232, 97, 26, 0.2);
}

.ticket-type-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.3rem;
}

.ticket-type-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}

.ticket-type-price {
  font-weight: 800;
  color: var(--orange);
}

.ticket-type-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.quantity-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.quantity-control button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--charcoal-light);
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.quantity-control button:hover {
  background: var(--orange);
}

.quantity-control input {
  width: 50px;
  background: transparent;
  border: none;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white) !important;
  /* Force override of readonly styles */
  -webkit-text-fill-color: var(--white) !important;
  /* Safari/Chrome readonly fix */
  opacity: 1 !important;
  /* Prevent browser from dimming readonly inputs */
}

.price-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin: 1.5rem 0;
  font-weight: 700;
  font-size: 1.1rem;
}

#total-price-display {
  color: var(--orange);
  font-size: 1.3rem;
}

.payment-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
  font-style: italic;
}

@media (max-width: 480px) {
  .modal-content {
    padding: 2rem 1.5rem;
  }
}

/* ============================================
   MENU TAB BACKGROUND SLIDESHOWS
   ============================================ */
.menu-bg-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.menu-bg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.menu-bg-slide.active {
  opacity: 1;
}

.menu-bg-slide img,
.menu-bg-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   SERVICE CARD BACKGROUNDS
   ============================================ */
.service-card {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Ensure existing content stays on top of background */
.service-card>*:not(.card-bg):not(.card-overlay) {
  position: relative;
  z-index: 3;
}

.card-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .card-bg img {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2;
  transition: background var(--transition-med);
}

.service-card:hover .card-overlay {
  background: rgba(0, 0, 0, 0.6);
}

/* ============================================
   MENU BACKGROUND EFFECTS
   ============================================ */
.shooting-star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(232, 97, 26, 0.1),
    0 0 0 8px rgba(232, 97, 26, 0.1),
    0 0 20px var(--orange);
  animation: shootingStar 3s linear infinite;
  pointer-events: none;
}

.shooting-star::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), transparent);
}

@keyframes shootingStar {
  0% {
    transform: rotate(315deg) translateX(0);
    opacity: 1;
  }

  70% {
    opacity: 1;
  }

  100% {
    transform: rotate(315deg) translateX(-1000px);
    opacity: 0;
  }
}

@keyframes shootingStarRL {
  0% {
    transform: rotate(135deg) translateX(0);
    opacity: 1;
  }

  100% {
    transform: rotate(135deg) translateX(1200px);
    opacity: 0;
  }
}

.floating-menu-text {
  position: absolute;
  color: var(--orange);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 10vw, 8rem);
  opacity: 0;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  z-index: 0;
  filter: blur(2px);
  transform: translate(-50%, -50%) scale(0.8);
  animation: textPopFade 6s ease-in-out forwards;
}

@keyframes textPopFade {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }

  20% {
    opacity: 0.15;
    transform: translate(-50%, -50%) scale(1);
  }

  80% {
    opacity: 0.15;
    transform: translate(-50%, -50%) scale(1.1);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.shooting-star.white {
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1),
    0 0 0 8px rgba(255, 255, 255, 0.1),
    0 0 20px var(--white);
}

.shooting-star.white::before {
  background: linear-gradient(90deg, var(--white), transparent);
}

/* ============================================
   SERVICES BACKGROUND EFFECTS
   ============================================ */
/* Neon Blue - Right to Left */
.shooting-star.neon-blue {
  background: #00fbff;
  box-shadow: 0 0 0 4px rgba(0, 251, 255, 0.1), 0 0 20px #00fbff;
  animation: shootingStarRL 3s linear forwards;
}

.shooting-star.neon-blue::before {
  background: linear-gradient(-90deg, #00fbff, transparent);
  left: 0;
  width: 150px;
}

/* Warm White - Left to Right */
.shooting-star.warm-white {
  background: #fff7e6;
  box-shadow: 0 0 0 4px rgba(255, 247, 230, 0.1), 0 0 20px #fff7e6;
  animation: shootingStarLR 3s linear forwards;
}

.shooting-star.warm-white::before {
  background: linear-gradient(90deg, #fff7e6, transparent);
  right: 0;
  width: 150px;
}

@keyframes shootingStarLR {
  0% {
    transform: rotate(45deg) translateX(0);
    opacity: 1;
  }

  100% {
    transform: rotate(45deg) translateX(1200px);
    opacity: 0;
  }
}

/* Reduced spacing for services section */
#services .section-subtitle {
  margin-bottom: 1.5rem;
}

/* Vintage Bulb Styles */
.vintage-bulb {
  position: absolute;
  width: 40px;
  height: 60px;
  background: rgba(255, 247, 230, 0.05);
  /* Very dim initial state */
  border-radius: 50% 50% 40% 40%;
  z-index: 1;
  pointer-events: none;
  filter: blur(1px);
}

.vintage-bulb::after {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 10px;
  background: #333;
  /* The base of the bulb */
  border-radius: 2px;
}

@keyframes bulbFlash {

  0%,
  100% {
    background: rgba(255, 247, 230, 0.05);
    box-shadow: none;
  }

  10%,
  15% {
    background: rgba(255, 247, 230, 0.3);
    box-shadow: 0 0 20px rgba(255, 247, 230, 0.2);
  }

  20% {
    background: rgba(255, 247, 230, 0.05);
    box-shadow: none;
  }
}

.bulb-flashing {
  animation: bulbFlash 2s ease-in-out;
}
/* Past Events Slideshow Styles */
.past-event-card {
  position: relative !important;
  overflow: hidden !important;
}

.past-event-card .slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}

.past-event-card .slide-item.active {
  opacity: 1;
  z-index: 2;
}

.past-event-card .slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.past-event-card .past-event-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 3;
}

/* Hide hero scroll indicator on mobile */
@media (max-width: 768px) {
  .hero-scroll-indicator {
    display: none !important;
  }
}

.coming-soon-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: linear-gradient(135deg, #f39c12, #d35400);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  box-shadow: 0 4px 10px rgba(243, 156, 18, 0.3);
}

/* Entry Ticket Special Styling */
.ticket-type-card.entry-tier {
  position: relative;
  overflow: hidden;
}

.ticket-type-card.entry-tier .ticket-type-header,
.ticket-type-card.entry-tier .ticket-type-desc {
  filter: blur(0.6px);
  opacity: 0.85;
}

.ticket-type-card.entry-tier::after {
  content: 'BUY IN ADVANCE';
  position: absolute;
  bottom: 8px;
  right: 12px;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 1px;
  opacity: 0.9;
  text-shadow: 0 0 10px rgba(232, 97, 26, 0.4);
}

.ticket-type-card.entry-tier.selected::after {
  color: #fff;
}
