/* ============================================
   LANDING PAGE DARK 2026 - DRAMATIC STYLE
   ============================================ */

/* ============================================
   DESIGN SYSTEM
   ============================================ */
:root {
  /* Dark Palette */
  --dark-bg: #0a0a0f;
  --dark-surface: #141419;
  --dark-surface-light: #1e1e28;
  --dark-border: rgba(255, 255, 255, 0.1);

  /* Accent Colors */
  --gold: #d4af37;
  --gold-light: #f0d068;
  --gold-dark: #b8941f;
  --purple: #8b5cf6;
  --purple-light: #a78bfa;

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.5);

  /* Shadows & Effects */
  --glow-gold: 0 0 20px rgba(212, 175, 55, 0.3);
  --glow-purple: 0 0 30px rgba(139, 92, 246, 0.4);
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================
   HERO SECTION - DRAMATIC DARK
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-bg);
  overflow: hidden;
  /* Clean poster display - NO overlays or effects */
  background-image: var(--hero-bg-desktop);
  background-size: auto 90vh;
  background-position: center;
  background-repeat: no-repeat;
  max-width: 100vw;
}

/* Hero Overlay Container - No actual overlay, just positioning */
.hero-overlay-dark {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1000px;
  padding: 2rem;
  animation: heroFadeIn 1s ease-out;
  /* Subtle background for text readability - minimal poster coverage */
  background: radial-gradient(
    ellipse at center,
    rgba(10, 10, 15, 0.85) 0%,
    rgba(10, 10, 15, 0.6) 50%,
    transparent 100%
  );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 32px;
}

/* Hero Poster Clean Mode - Fullscreen poster only */
.hero-poster-clean {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-fullscreen {
  min-height: 100vh;
}

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

/* ICNT Logo */
.icnt-header {
  margin-bottom: 2.5rem;
}

.icnt-logo {
  display: block;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: 0.3em;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: var(--glow-gold);
  animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.2); }
}

.icnt-subtitle {
  display: block;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 0.75rem;
}

/* Event Badge - Glowing */
.event-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--glow-purple);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: var(--glow-purple); }
  50% { box-shadow: 0 0 40px rgba(139, 92, 246, 0.6); }
}

/* Hero Title - Dramatic */
.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    var(--gold-light) 50%,
    var(--purple-light) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleShine 4s ease-in-out infinite;
}

@keyframes titleShine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--text-secondary);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

/* Event Details - Elegant */
.event-details {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.detail-item i {
  color: var(--gold);
  font-size: 1.3rem;
}

/* CTA Button - IMPOSSIBLE TO MISS */
.btn-cta,
.btn-cta-floating {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 3.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dark-bg);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow:
    0 10px 40px rgba(212, 175, 55, 0.4),
    0 0 60px rgba(212, 175, 55, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all var(--transition-base);
  overflow: hidden;
  animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 10px 40px rgba(212, 175, 55, 0.4),
      0 0 60px rgba(212, 175, 55, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow:
      0 15px 50px rgba(212, 175, 55, 0.6),
      0 0 80px rgba(212, 175, 55, 0.5);
  }
}

.btn-cta::before,
.btn-cta-floating::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-cta:hover,
.btn-cta-floating:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow:
    0 20px 60px rgba(212, 175, 55, 0.6),
    0 0 100px rgba(212, 175, 55, 0.5);
}

.btn-cta:hover::before,
.btn-cta-floating:hover::before {
  width: 400px;
  height: 400px;
}

/* Sticky CTA - Always Visible */
.sticky-cta {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  animation: stickySlideIn 0.6s ease-out 1s both;
}

@keyframes stickySlideIn {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Countdown */
.countdown {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 3rem 0;
}

.countdown-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  min-width: 120px;
}

.countdown-value {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.countdown-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

/* ============================================
   SECTIONS - DARK THEME
   ============================================ */
.section {
  padding: 6rem 0;
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--dark-border), transparent);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 4rem;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: var(--glow-gold);
}

/* ============================================
   PERFORMERS - GLASSMORPHISM CARDS
   ============================================ */
.performers-section {
  background: linear-gradient(
    180deg,
    var(--dark-bg) 0%,
    var(--dark-surface) 50%,
    var(--dark-bg) 100%
  );
}

.performers-grid,
.performers-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

/* Performer Link Wrapper */
.performer-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform var(--transition-base);
}

.performer-link:hover {
  transform: scale(1.02);
}

.performer-card,
.performer-card-expanded {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all var(--transition-base);
  overflow: hidden;
}

.performer-card::before,
.performer-card-expanded::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.performer-card:hover,
.performer-card-expanded:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(212, 175, 55, 0.2);
}

.performer-card:hover::before,
.performer-card-expanded:hover::before {
  opacity: 1;
}

/* Performer Photos - Glowing Border */
.performer-photo-round,
.performer-photo-circle,
.performer-icon {
  margin: 0 auto 2rem;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.performer-photo-round,
.performer-photo-circle {
  width: 200px;
  height: 200px;
  border: 4px solid transparent;
  background:
    linear-gradient(var(--dark-surface), var(--dark-surface)) padding-box,
    linear-gradient(135deg, var(--gold), var(--purple)) border-box;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(212, 175, 55, 0.3);
  transition: all var(--transition-base);
}

.performer-card:hover .performer-photo-round,
.performer-card-expanded:hover .performer-photo-circle {
  transform: scale(1.1);
  box-shadow:
    0 15px 50px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(212, 175, 55, 0.5);
}

.performer-photo-round img,
.performer-photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.performer-card:hover .performer-photo-round img,
.performer-card-expanded:hover .performer-photo-circle img {
  transform: scale(1.15);
}

.performer-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--gold), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--dark-bg);
  box-shadow: var(--glow-gold);
}

.performer-role {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.performer-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.performer-instrument {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-style: italic;
}

.performer-link-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.2rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.performer-link:hover .performer-link-icon {
  opacity: 1;
}

/* Card Expanded Mode */
.performer-card-header {
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.2) 0%,
    rgba(212, 175, 55, 0.2) 100%
  );
  padding: 3rem 2rem;
  margin: -3rem -2rem 2rem;
  border-radius: 24px 24px 0 0;
  position: relative;
  overflow: hidden;
}

.performer-card-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.05) 50%,
    transparent 70%
  );
  animation: headerShine 6s linear infinite;
}

@keyframes headerShine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* ============================================
   PROGRAM - TIMELINE DESIGN
   ============================================ */
.program-section {
  position: relative;
}

.program-list {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-left: 3rem;
}

.program-list::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--gold),
    transparent
  );
}

.program-item {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  margin-left: 2rem;
  transition: all var(--transition-base);
}

.program-item::before {
  content: '';
  position: absolute;
  left: -3rem;
  top: 2rem;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow:
    0 0 0 4px var(--dark-bg),
    0 0 0 6px var(--gold),
    var(--glow-gold);
}

.program-item:hover {
  transform: translateX(10px);
  border-color: var(--gold);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.program-composer {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.program-work {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.program-subtitle {
  display: block;
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 0.5rem;
}

.program-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.program-catalogue,
.program-key,
.program-soloist {
  padding: 0.5rem 1rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--gold-light);
}

.program-soloist {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
  color: var(--purple-light);
}

.program-soloist i {
  margin-right: 0.5rem;
}

/* ============================================
   BOOKING - ULTRA CLEAR
   ============================================ */
.booking-section {
  background: linear-gradient(
    135deg,
    var(--dark-surface) 0%,
    rgba(139, 92, 246, 0.1) 50%,
    var(--dark-surface) 100%
  );
  padding: 6rem 0;
}

.availability-section {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 2px solid var(--gold);
  border-radius: 24px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  box-shadow: var(--glow-gold);
}

.availability-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.availability-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.availability-title i {
  color: var(--gold);
}

.availability-stats {
  text-align: right;
}

.remaining-seats-display {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.remaining-seats-display.seats-high {
  color: #4ade80;
  text-shadow: 0 0 20px rgba(74, 222, 128, 0.5);
}

.remaining-seats-display.seats-medium {
  color: #fbbf24;
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.remaining-seats-display.seats-low {
  color: #f87171;
  text-shadow: 0 0 20px rgba(248, 113, 113, 0.5);
}

.seats-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.capacity-details {
  display: flex;
  justify-content: space-between;
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.capacity-details i {
  margin-right: 0.5rem;
  color: var(--gold);
}

.capacity-details strong {
  color: var(--text-primary);
  font-weight: 700;
}

.remaining-seats {
  font-size: 4rem;
  font-weight: 900;
  color: var(--gold);
  text-shadow: var(--glow-gold);
}

.capacity-bar {
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--dark-border);
}

.capacity-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark-bg);
  box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.3);
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.capacity-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: capacityShine 2s infinite;
}

@keyframes capacityShine {
  to { left: 100%; }
}

.booking-info-box {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.booking-info-box i {
  font-size: 1.5rem;
  color: var(--purple-light);
  margin-top: 0.25rem;
}

.booking-info-box strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.booking-info-box p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.booking-disclaimer {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  color: var(--gold-light);
  font-weight: 500;
}

.booking-disclaimer i {
  font-size: 1.3rem;
}

.booking-form {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 1.1rem;
  transition: all var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  background: rgba(0, 0, 0, 0.5);
}

.btn-submit {
  width: 100%;
  padding: 1.75rem 3rem;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dark-bg);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow:
    0 10px 40px rgba(212, 175, 55, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
  margin-top: 2rem;
}

.btn-submit:hover {
  transform: translateY(-5px);
  box-shadow:
    0 20px 60px rgba(212, 175, 55, 0.6),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

/* ============================================
   GALLERY - MASONRY STYLE
   ============================================ */
.gallery-section {
  background: var(--dark-surface);
}

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

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform var(--transition-base);
}

.gallery-item:hover {
  transform: scale(1.05);
  z-index: 10;
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.gallery-overlay i {
  font-size: 3rem;
  color: var(--gold);
  text-shadow: var(--glow-gold);
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
  background: var(--dark-surface);
}

.map-container {
  max-width: 100%;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.map-container iframe {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark-bg);
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid var(--dark-border);
}

.footer p {
  color: var(--text-muted);
  margin: 0.5rem 0;
}

.footer a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer a:hover {
  color: var(--gold-light);
  text-shadow: var(--glow-gold);
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    /* Clean mobile poster - NO overlays */
    background-image: var(--hero-bg-mobile);
    background-size: auto 80vh;
  }

  .hero-content {
    padding: 1.5rem;
  }

  /* Availability Section Mobile */
  .availability-section {
    padding: 1.5rem;
  }

  .availability-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .availability-title {
    font-size: 1.2rem;
  }

  .availability-stats {
    text-align: left;
    width: 100%;
  }

  .remaining-seats-display {
    font-size: 2rem;
    margin-bottom: 0.25rem;
  }

  .seats-label {
    font-size: 0.8rem;
  }

  .capacity-details {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
  }

  .booking-info-box {
    padding: 1rem;
    gap: 1rem;
  }

  .booking-info-box i {
    font-size: 1.2rem;
  }

  .booking-info-box strong {
    font-size: 1rem;
  }

  .booking-disclaimer {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  .booking-form {
    padding: 1.5rem;
  }

  .icnt-logo {
    font-size: 2.5rem;
    letter-spacing: 0.2em;
  }

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

  .event-details {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-cta,
  .btn-cta-floating {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
  }

  .sticky-cta {
    top: auto;
    bottom: 20px;
    right: 20px;
    left: 20px;
  }

  .sticky-cta .btn-cta-floating {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }

  .performers-grid,
  .performers-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .performer-photo-round,
  .performer-photo-circle {
    width: 160px;
    height: 160px;
  }

  .program-list {
    padding-left: 2rem;
  }

  .program-item {
    margin-left: 1rem;
    padding: 1.5rem;
  }

  .program-item::before {
    left: -2rem;
  }

  .booking-form {
    padding: 2rem 1.5rem;
  }

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

/* ============================================
   ANIMATIONS & SCROLL EFFECTS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out both;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

*:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ============================================
   EVENT DESCRIPTION (Note di Sala) - Premium 2026
   ============================================ */
.description-section {
  background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.description-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.description-section .section-title {
  color: var(--gold);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.description-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.event-description {
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  line-height: 2;
  color: var(--text-secondary);
  text-align: justify;
  padding: 2.5rem;
  background: var(--glass-bg);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 16px;
  position: relative;
}

.event-description::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 30px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 6rem;
  color: rgba(212, 175, 55, 0.12);
  line-height: 1;
  pointer-events: none;
}

.event-description p {
  margin-bottom: 1.5rem;
}

.event-description p:last-child {
  margin-bottom: 0;
}

.event-description h3 {
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  color: var(--gold);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.event-description strong {
  color: var(--gold);
  font-weight: 600;
}

.event-description em {
  font-style: italic;
  color: var(--text-muted);
}

/* ============================================
   FAQ SECTION - Premium 2026
   ============================================ */
.faq-section {
  background: linear-gradient(180deg, var(--dark-surface) 0%, var(--dark-bg) 100%);
  padding: 5rem 0;
  position: relative;
}

.faq-section .section-title {
  color: var(--gold);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
  text-align: center;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.faq-item.active {
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.08);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 1.75rem;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  text-align: left;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question span {
  flex: 1;
  padding-right: 1rem;
}

.faq-question i {
  font-size: 0.85rem;
  color: var(--gold);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.7;
}

.faq-item:hover .faq-question i {
  opacity: 1;
}

.faq-item.active .faq-question {
  color: var(--gold);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  opacity: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.75rem 1.75rem;
}

.faq-answer p {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

/* ============================================
   SHARE SECTION - Premium 2026
   ============================================ */
.share-section {
  text-align: center;
  padding: 4rem 0;
  background: var(--dark-bg);
  position: relative;
}

.share-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
}

.tags-container {
  margin-bottom: 3rem;
}

.tags-container h3 {
  color: var(--text-muted);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 4px;
  color: var(--text-secondary);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  text-decoration: none;
}

.tag:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.5);
  color: var(--gold);
}

.share-container {
  margin-top: 2.5rem;
}

.share-container h3 {
  color: var(--text-muted);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.share-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  background: var(--glass-bg);
  color: var(--text-secondary);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.share-btn span {
  display: none;
}

.share-btn:hover {
  transform: translateY(-4px);
  border-color: transparent;
}

.share-btn.facebook:hover {
  background: #1877f2;
  color: white;
  box-shadow: 0 8px 24px rgba(24, 119, 242, 0.35);
}

.share-btn.twitter:hover {
  background: #1da1f2;
  color: white;
  box-shadow: 0 8px 24px rgba(29, 161, 242, 0.35);
}

.share-btn.whatsapp:hover {
  background: #25d366;
  color: white;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.share-btn.email:hover {
  background: var(--gold);
  color: var(--dark-bg);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
}

.share-btn.copy:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

/* ============================================
   RESPONSIVE - Premium Sections
   ============================================ */
@media (max-width: 768px) {
  .description-section,
  .faq-section,
  .share-section {
    padding: 3rem 1rem;
  }

  .description-section .section-title,
  .faq-section .section-title {
    font-size: 2rem;
  }

  .event-description {
    padding: 1.75rem;
    font-size: 1.1rem;
    line-height: 1.9;
    text-align: left;
  }

  .event-description::before {
    font-size: 4rem;
    top: -10px;
    left: 15px;
  }

  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
  }

  .faq-answer p {
    font-size: 1rem;
  }

  .share-btn {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
}
