/* =============================================
   VELVET ACE NIGHTS — Main Stylesheet
   Premium Casino Night Event | Australia 18+
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --gold:        #D4AF37;
  --gold-light:  #F5D060;
  --gold-dark:   #B8860B;
  --gold-pale:   #f0d080;
  --crimson:     #8B0000;
  --crimson-mid: #C41E3A;
  --bg-deep:     #080808;
  --bg-dark:     #100d0d;
  --bg-card:     #141010;
  --bg-section:  #0e0b0b;
  --text-primary:#F0E8D0;
  --text-muted:  #9E8E70;
  --text-light:  #C8B890;
  --border-gold: rgba(212,175,55,0.3);
  --border-gold-active: rgba(212,175,55,0.7);
  --shadow-gold: 0 0 30px rgba(212,175,55,0.15);
  --shadow-deep: 0 20px 60px rgba(0,0,0,0.8);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* ===== UTILITY ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.divider-gold {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 20px auto;
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(10,8,8,0.97);
  border-top: 1px solid var(--border-gold);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 9000;
  backdrop-filter: blur(12px);
  transform: translateY(100%);
  transition: transform 0.5s ease;
}
#cookie-banner.show { transform: translateY(0); }
#cookie-banner p { font-size: 0.82rem; color: var(--text-muted); max-width: 700px; }
#cookie-banner a { color: var(--gold); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--gold);
  color: #0a0808;
  border: none;
  padding: 9px 22px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: background var(--transition);
}
.btn-cookie-accept:hover { background: var(--gold-light); }
.btn-cookie-decline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 9px 22px;
  border-radius: 6px;
  font-size: 0.82rem;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: color var(--transition);
}
.btn-cookie-decline:hover { color: var(--text-primary); }

/* ===== AGE GATE OVERLAY ===== */
#age-gate {
  position: fixed;
  inset: 0;
  background: rgba(4,2,2,0.97);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(8px);
}

.age-gate-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-gold), var(--shadow-deep);
  animation: fadeInScale 0.5s ease;
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

.age-gate-logo {
  width: 72px;
  margin: 0 auto 24px;
}

.age-gate-card h2 {
  font-size: 1.9rem;
  margin-bottom: 12px;
}

.age-gate-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.age-gate-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
}

.btn-age-yes {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #0a0808;
  border: none;
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.05em;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-age-yes:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212,175,55,0.4); }

.btn-age-no {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: color var(--transition), border-color var(--transition);
}
.btn-age-no:hover { color: var(--text-primary); border-color: rgba(255,255,255,0.3); }

.age-gate-note {
  margin-top: 22px;
  font-size: 0.75rem;
  color: rgba(158,142,112,0.6);
}

/* ===== HEADER / NAV ===== */
#main-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), border-color var(--transition), padding var(--transition);
  padding: 22px 0;
}

#main-header.scrolled {
  background: rgba(8,6,6,0.95);
  border-bottom: 1px solid var(--border-gold);
  padding: 14px 0;
  backdrop-filter: blur(20px);
}

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

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header-logo img {
  width: 46px;
  height: 46px;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.1;
}

.logo-text span {
  display: block;
  font-size: 0.65rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.25em;
  color: var(--gold);
  font-weight: 400;
  text-transform: uppercase;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav.main-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  position: relative;
  padding-bottom: 3px;
}

nav.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

nav.main-nav a:hover { color: var(--gold); }
nav.main-nav a:hover::after { width: 100%; }

.btn-nav-tickets {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #0a0808 !important;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 700 !important;
  letter-spacing: 0.06em;
  transition: transform var(--transition), box-shadow var(--transition) !important;
}
.btn-nav-tickets:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.35) !important;
  color: #0a0808 !important;
}
.btn-nav-tickets::after { display: none !important; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  filter: brightness(0.4);
  transform: scale(1.05);
  transition: transform 8s ease;
}

#hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,6,6,0.2) 0%,
    rgba(8,6,6,0.1) 40%,
    rgba(8,6,6,0.7) 75%,
    rgba(8,6,6,1) 100%
  );
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 80px;
  max-width: 760px;
}

.hero-event-date {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-event-date .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

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

.hero-title {
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.0;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-title em {
  font-style: italic;
  display: block;
  color: var(--gold);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.5s both;
  max-width: 580px;
}

.hero-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.6s both;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.7s both;
}

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

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #0a0808;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212,175,55,0.45);
  color: #0a0808;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-primary);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 8px;
  border: 1px solid rgba(240,232,208,0.25);
  cursor: pointer;
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(212,175,55,0.08);
  color: var(--gold);
}

/* ===== HERO STATS ===== */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(212,175,55,0.15);
  animation: fadeInUp 0.8s ease 0.9s both;
}

.hero-stat-item {
  text-align: left;
}

.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: fadeInUp 1s ease 1.2s both;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(212,175,55,0.5);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollWheel 2s ease infinite;
}

@keyframes scrollWheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.3; }
}

.scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== ABOUT EVENT ===== */
#about {
  padding: 100px 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '♠';
  position: absolute;
  font-size: 28rem;
  color: rgba(212,175,55,0.02);
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  font-family: serif;
  pointer-events: none;
}

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

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
}

.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-deep);
}

.about-image-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.about-image-badge span {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 22px;
}

.about-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(212,175,55,0.04);
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition);
}
.about-feature:hover {
  border-color: var(--border-gold);
  background: rgba(212,175,55,0.08);
}

.feature-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 3px;
}

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

/* ===== EVENT HIGHLIGHTS ===== */
#highlights {
  padding: 100px 0;
  background: var(--bg-section);
}

.highlights-header {
  text-align: center;
  margin-bottom: 64px;
}

.highlights-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}

.highlights-header p {
  font-size: 1.0rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.highlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 40px rgba(212,175,55,0.1);
  border-color: var(--border-gold-active);
}

.highlight-card-img {
  height: 220px;
  overflow: hidden;
}

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

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

.highlight-card-body {
  padding: 24px;
}

.highlight-card-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}

.highlight-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--gold-pale);
}

.highlight-card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== TICKETS SECTION ===== */
#tickets {
  padding: 100px 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

#tickets::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.tickets-header {
  text-align: center;
  margin-bottom: 64px;
}

.tickets-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}

.tickets-header p {
  font-size: 1.0rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
}

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.ticket-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}

.ticket-card:hover, .ticket-card.selected {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(212,175,55,0.15);
}

.ticket-card.selected {
  background: linear-gradient(145deg, rgba(212,175,55,0.08), var(--bg-card));
}

.ticket-card.popular {
  border-color: var(--gold);
  background: linear-gradient(145deg, rgba(212,175,55,0.06), var(--bg-card));
}

.ticket-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #0a0808;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.ticket-type {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.ticket-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.ticket-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
}

.ticket-price .currency {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
}

.ticket-price .amount {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.ticket-price .per {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.ticket-divider {
  width: 100%;
  height: 1px;
  background: var(--border-gold);
  margin-bottom: 24px;
}

.ticket-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}

.ticket-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.ticket-features li:last-child { border-bottom: none; }

.ticket-features li.included { color: var(--text-light); }
.ticket-features li.included::before { content: '✦'; color: var(--gold); font-size: 0.7rem; flex-shrink: 0; }
.ticket-features li.excluded { opacity: 0.4; text-decoration: line-through; }
.ticket-features li.excluded::before { content: '—'; color: var(--text-muted); font-size: 0.7rem; flex-shrink: 0; }

.btn-select-ticket {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  width: 100%;
}

.btn-select-ticket:hover,
.ticket-card.selected .btn-select-ticket {
  background: var(--gold);
  color: #0a0808;
  transform: none;
}

.ticket-card.popular .btn-select-ticket {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #0a0808;
}

.tickets-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 20px;
  background: rgba(212,175,55,0.04);
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: var(--radius);
}

.tickets-note strong { color: var(--gold); }

/* ===== ORDER FORM SECTION ===== */
#order {
  padding: 100px 0;
  background: var(--bg-section);
  display: none;
}

#order.active { display: block; }

.order-header {
  text-align: center;
  margin-bottom: 52px;
}

.order-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}

.order-header p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.order-container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.order-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--text-primary);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(212,175,55,0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); opacity: 0.6; }

.form-group select option { background: #1a1010; color: var(--text-primary); }

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

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--gold);
  cursor: pointer;
  margin-top: 2px;
}

.form-check label {
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.form-check label a { color: var(--gold); }

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  border-radius: 8px;
  margin-top: 8px;
}

/* ===== ORDER SUMMARY ===== */
.order-summary {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: 100px;
}

.order-summary h3 {
  font-size: 1.1rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-gold);
  color: var(--gold-pale);
}

.summary-ticket-info {
  margin-bottom: 20px;
}

.summary-ticket-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.summary-ticket-type {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.summary-lines {
  border-top: 1px solid rgba(212,175,55,0.1);
  padding-top: 18px;
  margin-top: 18px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 8px 0;
}

.summary-line.total {
  border-top: 1px solid var(--border-gold);
  margin-top: 8px;
  padding-top: 16px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
}

.summary-line.total .price-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 900;
}

.payment-note {
  margin-top: 20px;
  padding: 14px;
  background: rgba(212,175,55,0.05);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

.payment-note strong { color: var(--gold); display: block; margin-bottom: 4px; }

.security-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ===== ORDER SUCCESS ===== */
#order-success {
  display: none;
  text-align: center;
  padding: 80px 24px;
}

#order-success.active { display: block; }

.success-icon {
  font-size: 4rem;
  margin-bottom: 24px;
  animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
  0%  { transform: scale(0); }
  60% { transform: scale(1.15); }
  100%{ transform: scale(1); }
}

#order-success h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: var(--gold);
}

#order-success p {
  font-size: 1.0rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ===== VENUE SECTION ===== */
#venue {
  padding: 100px 0;
  background: var(--bg-dark);
}

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

.venue-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}

.venue-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.venue-details {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.venue-detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(212,175,55,0.04);
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: var(--radius);
}

.venue-detail-icon { font-size: 1.2rem; }

.venue-detail-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.venue-detail-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.venue-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
}

/* ===== FAQ SECTION ===== */
#faq {
  padding: 90px 0;
  background: var(--bg-dark);
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 14px;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(212,175,55,0.12);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 4px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: color var(--transition);
  gap: 16px;
  list-style: none;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
}

.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--gold); }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  transition: transform var(--transition), background var(--transition);
  line-height: 1;
}

details[open] .faq-icon {
  transform: rotate(45deg);
  background: rgba(212,175,55,0.1);
}

.faq-answer {
  padding: 0 4px 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===== COUNTDOWN MOBILE ===== */
@media (max-width: 480px) {
  #countdown-grid { gap: 12px; }
}

/* ===== FOOTER ADJUST ===== */
footer {
  background: #060404;
  border-top: 1px solid rgba(212,175,55,0.1);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .header-logo {
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 16px;
}

.footer-age-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139,0,0,0.2);
  border: 1px solid rgba(196,30,58,0.4);
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #ff6b6b;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(212,175,55,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-legal-links a:hover { color: var(--gold); }

/* ===== LEGAL PAGES ===== */
.legal-hero {
  padding: 140px 0 60px;
  background: var(--bg-dark);
  text-align: center;
  border-bottom: 1px solid var(--border-gold);
}

.legal-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.legal-hero p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.legal-content {
  max-width: 820px;
  margin: 60px auto;
  padding: 0 24px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 14px;
  color: var(--gold-pale);
}

.legal-content h3 {
  font-size: 1.1rem;
  margin: 24px 0 10px;
  color: var(--text-primary);
}

.legal-content p, .legal-content li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 12px;
}

.legal-content ul, .legal-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content a { color: var(--gold); }
.legal-content strong { color: var(--text-light); }

/* ===== GLOWING GOLD SHIMMER ON CARDS ===== */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

.ticket-card.popular::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
  z-index: 0;
  pointer-events: none;
}

/* ===== ORNAMENTAL SECTION BORDERS ===== */
#highlights::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

#tickets::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ===== FORM FOCUS ANIMATION ===== */
.form-group { position: relative; }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== NOTIFICATION TOAST ===== */
.toast {
  position: fixed;
  bottom: 90px;
  right: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.85rem;
  color: var(--text-primary);
  box-shadow: var(--shadow-deep);
  z-index: 9999;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  max-width: 320px;
}

.toast.show { transform: translateX(0); }

.toast-icon { margin-right: 8px; }

/* ===== MOBILE MENU ===== */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  nav.main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(8,6,6,0.98);
    border-left: 1px solid var(--border-gold);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 80px 40px;
    transition: right var(--transition);
    backdrop-filter: blur(20px);
    z-index: 999;
  }

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

  nav.main-nav a { font-size: 1rem; }

  .btn-nav-tickets { width: 100%; text-align: center; justify-content: center; }

  .hero-stats { flex-wrap: wrap; gap: 24px; }

  .about-grid,
  .venue-grid { grid-template-columns: 1fr; gap: 40px; }

  .about-image-wrap img { height: 320px; }

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

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

  .order-container { grid-template-columns: 1fr; }

  .order-summary { position: static; }

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

  .footer-brand { grid-column: span 2; }

  .age-gate-card { padding: 36px 24px; }
  .age-gate-btns { flex-direction: column; }

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

  #cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-btns { width: 100%; }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
