/* ============================================
   AURA CLUB - Premium Nightclub Website
   Modern Dark Luxury Theme
   ============================================ */

/* --- CSS Variables --- */
:root {
  --black: #000000;
  --rich-black: #0a0a0a;
  --dark: #111111;
  --dark-gray: #1a1a1a;
  --medium-gray: #2a2a2a;
  --light-gray: #999999;
  --gold: #d4a853;
  --gold-light: #e9bc5a;
  --gold-dark: #b8912e;
  --white: #ffffff;
  --white-soft: rgba(255,255,255,0.9);
  --glass: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.1);
  --glass-strong: rgba(255,255,255,0.08);
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-gold: 0 0 30px rgba(212,168,83,0.3);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', 'Segoe UI', sans-serif;
  --nav-height: 80px;
}

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

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

body {
  font-family: var(--font-body);
  background: #000;
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

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

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

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

::selection {
  background: var(--gold);
  color: var(--black);
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--rich-black);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

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

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
  color: var(--light-gray);
  font-size: 1rem;
  font-weight: 300;
}

.text-gold { color: var(--gold); }
.text-white { color: var(--white); }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.container-fluid {
  width: 100%;
  padding: 0 40px;
}

.section {
  padding: 120px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  margin-bottom: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-header .line {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 20px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* --- Preloader --- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  width: 120px;
  animation: pulse 1.5s ease-in-out infinite;
}

/* --- Header / Navigation (NORMAL FLOW - NOT FIXED) --- */
.site-header {
  width: 100%;
  background: #000;
  border-bottom: 1px solid rgba(212,168,83,0.15);
  position: relative;
  z-index: 100;
}

.navbar {
  position: relative;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 45px;
}
.nav-links li { display: block; }

.navbar .logo {
  height: 45px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  box-shadow: 0 0 8px rgba(212,168,83,0.4);
}

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

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  display: block;
  box-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 999;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  font-size: 1.8rem;
  font-family: var(--font-heading);
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.mobile-menu.active a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.5s; }
.mobile-menu.active a:nth-child(6) { transition-delay: 0.6s; }

.mobile-menu a:hover {
  color: var(--gold);
}

/* --- Nav Spacer --- */
.nav-spacer {
  width: 100%;
  height: 80px;
  min-height: 80px;
  display: block;
  background: var(--black);
  flex-shrink: 0;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  background: #000;
  overflow: hidden;
  display: block;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease;
  z-index: 0;
}

.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0.15) 30%,
    rgba(0,0,0,0.15) 60%,
    rgba(0,0,0,0.5) 100%
  );
  z-index: 1;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 90%;
  z-index: 3;
  text-align: center;
  padding: 20px;
}

.hero-content .logo-hero {
  width: 200px;
  margin: 0 auto 30px;
  animation: fadeInDown 1s ease 0.3s both;
}

.hero-content h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 15px;
  text-transform: uppercase;
  margin-bottom: 15px;
  animation: fadeInUp 1s ease 0.5s both;
  text-shadow: 0 0 40px rgba(0,0,0,0.5);
}

.hero-content .tagline {
  font-size: clamp(1rem, 2vw, 1.4rem);
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 50px;
  animation: fadeInUp 1s ease 0.7s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.9s both;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeInUp 1s ease 1.2s both;
}

.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--light-gray);
}

.scroll-line {
  width: 1px;
  height: 60px;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.15);
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollDown 2s ease-in-out infinite;
}

/* Hero Slide Indicators */
.hero-indicators {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  background: transparent;
  transition: var(--transition);
  padding: 0;
}

.hero-indicators button.active {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(212,168,83,0.5);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

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

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.75rem;
}

/* --- Glass Card --- */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px;
  transition: var(--transition);
}

.glass-card:hover {
  background: var(--glass-strong);
  border-color: rgba(212,168,83,0.2);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
}

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

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

.about-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  border: 2px solid var(--gold);
  transform: translate(30px, 30px);
  pointer-events: none;
}

.about-content h2 {
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.about-content .subtitle {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-weight: 300;
}

.about-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--glass-border);
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 5px;
}

.stat-item span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--light-gray);
}

/* --- Events Section --- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.event-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  max-width: 100%;
}

.event-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,168,83,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.event-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #050505;
  isolation: isolate;
}

/* Disco lights background */
.event-card-image::before,
.event-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.event-card-image::before {
  background:
    radial-gradient(circle at 20% 30%, rgba(212,168,83,0.55) 0%, transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(255,0,128,0.45) 0%, transparent 38%),
    radial-gradient(circle at 70% 80%, rgba(0,200,255,0.45) 0%, transparent 38%),
    radial-gradient(circle at 30% 75%, rgba(150,0,255,0.45) 0%, transparent 38%);
  filter: blur(20px);
  animation: discoLights 8s ease-in-out infinite;
}

.event-card-image::after {
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
  mix-blend-mode: overlay;
  opacity: 0.5;
  animation: gridPulse 4s ease-in-out infinite;
}

@keyframes discoLights {
  0%, 100% {
    background-position: 0% 0%, 100% 0%, 100% 100%, 0% 100%;
    filter: blur(20px) hue-rotate(0deg);
  }
  25% {
    background-position: 100% 50%, 0% 50%, 50% 0%, 50% 100%;
    filter: blur(25px) hue-rotate(60deg);
  }
  50% {
    background-position: 50% 100%, 50% 0%, 0% 50%, 100% 50%;
    filter: blur(30px) hue-rotate(120deg);
  }
  75% {
    background-position: 0% 50%, 100% 50%, 50% 100%, 50% 0%;
    filter: blur(25px) hue-rotate(60deg);
  }
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}

.event-card-image img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: var(--transition-slow);
  filter: drop-shadow(0 0 30px rgba(0,0,0,0.6));
}

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

.event-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.8) 100%);
}

.event-date-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--black);
  padding: 10px 15px;
  text-align: center;
  font-weight: 700;
  z-index: 1;
}

.event-date-badge .day {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  font-family: var(--font-heading);
}

.event-date-badge .month {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.event-card-content {
  padding: 25px 30px 30px;
}

.event-card-content h4 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-card-content .event-time {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-card-content .event-time i {
  font-size: 0.9rem;
}

.event-card-content p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.btn-ticket {
  margin-top: 18px;
  padding: 11px 26px !important;
  font-size: 0.78rem !important;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-ticket i {
  font-size: 0.95rem;
}

/* --- Honeypot (anti-spam, gizli) --- */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* --- Menu Page --- */
.section-menu { padding-top: calc(var(--nav-height) + 60px); }

.menu-page-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 4px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.menu-card {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  max-width: 100%;
}

.menu-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,168,83,0.08) 0%, transparent 50%, rgba(212,168,83,0.08) 100%);
  pointer-events: none;
  z-index: 1;
}

.menu-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,168,83,0.45);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 40px rgba(212,168,83,0.15);
}

.menu-card-image {
  position: relative;
  width: 100%;
  background: #050505;
  overflow: hidden;
}

.menu-card-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: var(--transition-slow);
}

.menu-card:hover .menu-card-image img {
  transform: scale(1.03);
}

.menu-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
  color: var(--gold);
}

.menu-card-overlay i {
  font-size: 2.5rem;
  filter: drop-shadow(0 0 15px rgba(212,168,83,0.6));
}

.menu-card-overlay span {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.menu-card:hover .menu-card-overlay {
  opacity: 1;
}

.menu-actions {
  text-align: center;
  margin-top: 60px;
}

.menu-actions .btn i {
  margin-right: 8px;
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .menu-card-overlay {
    opacity: 1;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.75) 100%);
    justify-content: flex-end;
    padding-bottom: 20px;
  }
  .menu-card-overlay i {
    font-size: 1.4rem;
  }
  .menu-card-overlay span {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }
  .menu-actions { margin-top: 40px; }
}

/* --- Artist/DJ Section --- */
.artists-wrapper {
  position: relative;
}

.artists-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0 40px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.artists-slider::-webkit-scrollbar {
  display: none;
}

.artists-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(0,0,0,0.7);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.artists-nav:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 30px rgba(212,168,83,0.5);
}

.artists-prev { left: -10px; }
.artists-next { right: -10px; }

@media (max-width: 768px) {
  .artists-nav {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
  .artists-prev { left: 5px; }
  .artists-next { right: 5px; }
}

.artist-card {
  min-width: 280px;
  scroll-snap-align: start;
  text-align: center;
  position: relative;
}

.artist-image {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid var(--glass-border);
  transition: var(--transition);
  position: relative;
}

.artist-card:hover .artist-image {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(212,168,83,0.3);
}

.artist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.artist-card:hover .artist-image img {
  transform: scale(1.1);
}

.artist-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(212,168,83,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
}

.artist-card:hover .artist-play {
  opacity: 1;
}

.artist-play i {
  color: var(--black);
  font-size: 1.2rem;
  margin-left: 3px;
}

.artist-card h4 {
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.artist-card span {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Audio Player Bar (Inline - NOT Fixed) */
.audio-player-bar {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 60px;
  height: 80px;
  background: var(--dark-gray);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  display: none;
  align-items: center;
  padding: 0 25px;
  gap: 20px;
}

.audio-player-bar.visible {
  display: flex;
}

.audio-player-bar .player-info {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 200px;
}

.audio-player-bar .player-info img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.audio-player-bar .player-info .track-name {
  font-size: 0.9rem;
  font-weight: 500;
}

.audio-player-bar .player-info .artist-name {
  font-size: 0.75rem;
  color: var(--light-gray);
}

.audio-player-bar .player-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.audio-player-bar .player-controls button {
  color: var(--white);
  font-size: 1.2rem;
  transition: var(--transition);
}

.audio-player-bar .player-controls button:hover {
  color: var(--gold);
}

.audio-player-bar .player-controls .play-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.audio-player-bar .player-controls .play-btn:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}

.audio-player-bar .progress-container {
  flex: 1;
  height: 4px;
  background: var(--medium-gray);
  cursor: pointer;
  position: relative;
}

.audio-player-bar .progress-bar {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width 0.1s linear;
}

.audio-player-bar .time-display {
  font-size: 0.75rem;
  color: var(--light-gray);
  min-width: 80px;
  text-align: right;
}

/* --- Gallery Section --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

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

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

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

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

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-item-overlay i {
  font-size: 2rem;
  color: var(--gold);
  transform: scale(0.5);
  transition: var(--transition);
}

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

/* Gallery Filter */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.gallery-filters button {
  padding: 8px 24px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light-gray);
  border: 1px solid transparent;
  transition: var(--transition);
}

.gallery-filters button:hover,
.gallery-filters button.active {
  color: var(--gold);
  border-color: var(--gold);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  transform: scale(0.9);
  transition: var(--transition);
}

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

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

.lightbox-close:hover {
  color: var(--gold);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  padding: 20px;
  background: none;
  border: none;
}

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

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* --- Forms --- */
.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 18px 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

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

.form-group label {
  position: absolute;
  left: 20px;
  top: 18px;
  color: var(--light-gray);
  font-size: 0.9rem;
  pointer-events: none;
  transition: var(--transition);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: 15px;
  font-size: 0.75rem;
  color: var(--gold);
  background: var(--rich-black);
  padding: 0 5px;
}

.form-submit {
  text-align: center;
  margin-top: 20px;
}

/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-list {
  margin-top: 30px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 35px;
}

.contact-info-item .icon {
  width: 50px;
  height: 50px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item .icon i {
  color: var(--gold);
  font-size: 1.1rem;
}

.contact-info-item h5 {
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 5px;
}

.contact-info-item p {
  font-size: 0.95rem;
}

.contact-info-item a {
  color: var(--light-gray);
}

.contact-info-item a:hover {
  color: var(--gold);
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}

.social-links a {
  width: 45px;
  height: 45px;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1rem;
}

.social-links a:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}

/* Map Container */
.map-container {
  width: 100%;
  height: 400px;
  margin-top: 60px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(80%) contrast(1.1) brightness(0.8);
  transition: var(--transition);
}

.map-container:hover iframe {
  filter: grayscale(20%) contrast(1) brightness(0.9);
}

/* --- Footer --- */
.footer {
  background: var(--black);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--glass-border);
}

.footer-brand .logo {
  height: 50px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.footer h5 {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 25px;
  color: var(--gold);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: var(--light-gray);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

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

.footer-bottom p {
  font-size: 0.8rem;
}

.footer-bottom .social-links a {
  width: 35px;
  height: 35px;
  font-size: 0.85rem;
}

/* --- Helpers --- */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.text-center { text-align: center; }
.mt-50 { margin-top: 50px; }
.mt-60 { margin-top: 60px; }
.section-dark { background: var(--dark); }

/* --- Language Switcher --- */
.lang-switcher {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-left: 15px;
  padding-left: 18px;
  border-left: 1px solid rgba(255,255,255,0.15);
}

.lang-switcher .lang-btn {
  font-size: 0.7rem !important;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 5px 9px !important;
  color: rgba(255,255,255,0.5);
  border: 1px solid transparent;
  border-radius: 3px;
  transition: var(--transition);
  text-decoration: none;
}

.lang-switcher .lang-btn:hover {
  color: var(--gold);
  border-color: rgba(212,168,83,0.3);
}

.lang-switcher .lang-btn.active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(212,168,83,0.1);
}

.lang-switcher .lang-btn::after { display: none !important; }

.lang-switcher.mobile {
  display: flex;
  gap: 8px;
  margin: 30px 0 0;
  padding: 20px 0 0;
  border-left: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  justify-content: center;
}
.lang-switcher.mobile .lang-btn {
  font-size: 0.85rem !important;
  padding: 8px 14px !important;
}

/* --- WhatsApp Float Button --- */
.whatsapp-float {
  position: fixed !important;
  bottom: 25px;
  right: 25px;
  left: auto;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff !important;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.6);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: wa-pulse 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1) rotate(-5deg);
  color: #fff;
  box-shadow: 0 8px 30px rgba(37,211,102,0.65);
}
.whatsapp-float i { line-height: 1; }

@keyframes wa-pulse {
  0% { box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 30px;
    bottom: 18px;
    right: 18px;
    display: flex !important;
  }
}

/* --- Alerts --- */
.alert {
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 4px;
  font-size: 0.9rem;
}
.alert-success {
  background: rgba(76,175,80,0.1);
  border: 1px solid #4caf50;
  color: #81c784;
}
.alert-error {
  background: rgba(229,72,72,0.1);
  border: 1px solid #e54848;
  color: #ef9a9a;
}

/* --- Marquee/Ticker --- */
.ticker {
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.ticker-inner {
  display: inline-flex;
  animation: ticker 30s linear infinite;
}

.ticker-item {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  text-transform: uppercase;
  letter-spacing: 5px;
  padding: 0 50px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.15);
}

.ticker-item .gold {
  -webkit-text-stroke-color: var(--gold);
}

/* --- Parallax Image Band --- */
.parallax-band {
  height: 500px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.parallax-band .content {
  position: relative;
  text-align: center;
  z-index: 1;
}

.parallax-band h2 {
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 5px;
}

.parallax-band p {
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 30px;
}

/* --- Page Header (Inner Pages) --- */
.page-header {
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%);
}

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

.page-header h1 {
  text-transform: uppercase;
  letter-spacing: 10px;
  margin-bottom: 15px;
}

.page-header .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--light-gray);
}

.page-header .breadcrumb a {
  color: var(--gold);
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.95); }
}

@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 100%; }
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(212,168,83,0.3); }
  50% { box-shadow: 0 0 40px rgba(212,168,83,0.6); }
}

@keyframes particle {
  0% { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* --- Responsive --- */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .vip-grid { gap: 20px; }
  .about-grid { gap: 50px; }
}

@media (max-width: 992px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image::after { display: none; }
  .about-image img { height: 400px; }

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

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

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

@media (max-width: 768px) {
  :root { --nav-height: 70px; }

  .container { padding: 0 15px; max-width: 100%; overflow-x: hidden; }
  .container-fluid { padding: 0 15px; }

  .section { padding: 80px 0; }
  .section-header { margin-bottom: 50px; }

  .events-grid { grid-template-columns: 1fr; gap: 20px; }

  .navbar { padding: 0 20px; }

  .hero {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    margin: 0 !important;
    width: 100% !important;
    display: block !important;
    background: #000;
  }
  .hero-bg {
    position: relative !important;
    width: 100%;
    height: auto;
  }
  .hero-slide {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    display: none;
  }
  .hero-slide.active { display: block !important; }
  .hero-slide img {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    object-fit: contain !important;
    display: block;
  }
  .hero-content {
    display: block !important;
    padding: 10px !important;
    max-width: 95% !important;
  }
  .hero-content .tagline {
    font-size: 0.75rem !important;
    letter-spacing: 3px !important;
    margin-bottom: 15px !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
  }
  .hero-buttons {
    display: flex !important;
    gap: 10px !important;
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero-buttons .btn {
    padding: 10px 18px !important;
    font-size: 0.7rem !important;
    letter-spacing: 1px !important;
  }
  .hero-overlay {
    display: block !important;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.6) 100%) !important;
  }
  .hero-indicators { display: none !important; }
  .hero-scroll { display: none !important; }
  .hero-particles { display: none !important; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide,
  .gallery-item.tall { grid-column: span 1; grid-row: span 1; }

  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 15px; }
  .stat-item h3 { font-size: 2rem; }

  .parallax-band { height: 400px; background-attachment: scroll; }

  .ticker-item { font-size: 2rem; padding: 0 30px; }

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

  .audio-player-bar .time-display { display: none; }
  .audio-player-bar .player-info .track-name { font-size: 0.8rem; }
  .audio-player-bar { padding: 0 15px; gap: 12px; }
  .audio-player-bar .player-info { min-width: auto; }

  .nav-links { display: none; }
  .hamburger { display: flex; }
  .navbar { padding: 0 15px; }
}

@media (max-width: 480px) {
  .hero-content .logo-hero { width: 140px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 280px; }

  .about-stats { grid-template-columns: 1fr; text-align: center; }

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

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

  .page-header { min-height: 300px; }
  .page-header h1 { letter-spacing: 5px; }
}
