/* ===========================
   CSS Custom Properties
   =========================== */
:root {
  --purple-dark: #4C1D95;
  --purple-primary: #6D28D9;
  --purple-medium: #7C3AED;
  --purple-light: #8B5CF6;
  --sky-light: #BAE6FD;
  --sky-medium: #7DD3FC;
  --sky-blue: #38BDF8;
  --green-dark: #15803D;
  --green-medium: #16A34A;
  --green-light: #22C55E;
  --pink-vibrant: #DB2777;
  --pink-light: #FDF2F8;
  --yellow-bright: #FACC15;
  --yellow-soft: #FEF08A;
  --cream: #FFF7ED;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --dark: #0F172A;
  --dark-secondary: #1E1B4B;
  --font-display: 'Bebas Neue', cursive;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --nav-height: 72px;
  --sticky-cta-height: 64px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple-primary);
  color: white;
  padding: 12px 24px;
  z-index: 10000;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  font-size: 14px;
  transition: top 0.3s;
}
.skip-link:focus {
  top: 0;
}

/* Section container */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ===========================
   Navigation
   =========================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
  transition: opacity 0.3s;
}
.nav-logo:hover {
  opacity: 0.85;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  color: var(--purple-primary);
  letter-spacing: 2px;
}
.site-header.scrolled .logo-text {
  color: var(--purple-primary);
}
.site-header:not(.scrolled) .logo-text {
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.logo-subtext {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1;
  color: var(--purple-light);
  letter-spacing: 1px;
}
.site-header:not(.scrolled) .logo-subtext {
  color: rgba(255,255,255,0.85);
}

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

.nav-link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  transition: color 0.3s;
  position: relative;
  padding: 4px 0;
}

.site-header:not(.scrolled) .nav-link {
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.site-header.scrolled .nav-link {
  color: var(--dark);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.3s;
  border-radius: 2px;
}
.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--pink-vibrant), var(--purple-primary));
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(219,39,119,0.3);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(219,39,119,0.45);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 4px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.site-header.scrolled .nav-toggle span {
  background: var(--dark);
}
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===========================
   Hero Section
   =========================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    180deg,
    #38BDF8 0%,
    #7DD3FC 25%,
    #BAE6FD 45%,
    #86EFAC 65%,
    #4ADE80 80%,
    #22C55E 100%
  );
  overflow: hidden;
  padding: var(--nav-height) 24px 0;
}

/* Clouds */
.cloud {
  position: absolute;
  background: rgba(255,255,255,0.85);
  border-radius: 1000px;
  pointer-events: none;
  z-index: 1;
}
.cloud::before,
.cloud::after {
  content: '';
  position: absolute;
  background: inherit;
  border-radius: 50%;
}
.cloud-1 {
  width: 260px;
  height: 60px;
  top: 12%;
  left: 5%;
  animation: drift 25s linear infinite;
}
.cloud-1::before {
  width: 80px;
  height: 80px;
  top: -40px;
  left: 40px;
}
.cloud-1::after {
  width: 100px;
  height: 100px;
  top: -50px;
  left: 80px;
}

.cloud-2 {
  width: 300px;
  height: 70px;
  top: 20%;
  right: 8%;
  animation: drift 30s linear infinite reverse;
}
.cloud-2::before {
  width: 90px;
  height: 90px;
  top: -45px;
  left: 50px;
}
.cloud-2::after {
  width: 120px;
  height: 120px;
  top: -60px;
  left: 100px;
}

.cloud-3 {
  width: 200px;
  height: 50px;
  top: 8%;
  left: 40%;
  animation: drift 20s linear infinite;
}
.cloud-3::before {
  width: 70px;
  height: 70px;
  top: -35px;
  left: 30px;
}
.cloud-3::after {
  width: 80px;
  height: 80px;
  top: -40px;
  left: 65px;
}

.cloud-4 {
  width: 240px;
  height: 55px;
  top: 32%;
  left: 70%;
  animation: drift 28s linear infinite reverse;
}
.cloud-4::before {
  width: 75px;
  height: 75px;
  top: -38px;
  left: 35px;
}
.cloud-4::after {
  width: 95px;
  height: 95px;
  top: -48px;
  left: 85px;
}

@keyframes drift {
  0% { transform: translateX(0); }
  50% { transform: translateX(80px); }
  100% { transform: translateX(0); }
}

/* Sun glow */
.sun-glow {
  position: absolute;
  top: 5%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,200,50,0.5) 0%, rgba(255,200,50,0.1) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: sunPulse 4s ease-in-out infinite;
  z-index: 1;
}

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

/* Floating flowers */
.floating-flower {
  position: absolute;
  font-size: 32px;
  pointer-events: none;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}
.flower-1 { top: 15%; left: 85%; animation-delay: 0s; }
.flower-2 { top: 55%; left: 5%; animation-delay: 1.5s; }
.flower-3 { top: 70%; left: 90%; animation-delay: 3s; }
.flower-4 { top: 40%; left: 15%; animation-delay: 2.5s; font-size: 24px; }

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

/* Hero content */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 860px;
  padding: 40px 0;
}

.hero-sup-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.15);
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
}

.hero-title-main {
  font-family: var(--font-display);
  font-size: clamp(6rem, 20vw, 14rem);
  line-height: 0.85;
  color: var(--white);
  text-shadow:
    3px 3px 0 var(--purple-dark),
    -1px -1px 0 var(--purple-dark),
    0 4px 30px rgba(76,29,149,0.3);
  letter-spacing: 6px;
}

.hero-title-sub {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 0.9;
  color: var(--purple-primary);
  text-shadow:
    2px 2px 0 rgba(255,255,255,0.5),
    0 2px 20px rgba(76,29,149,0.15);
  letter-spacing: 4px;
}

.hero-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  font-size: clamp(14px, 2.2vw, 18px);
  font-weight: 600;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.hero-details i {
  margin-right: 6px;
  opacity: 0.8;
}

.hero-separator {
  opacity: 0.5;
  font-weight: 300;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(15px, 2vw, 19px);
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  font-weight: 400;
  text-shadow: 0 1px 6px rgba(0,0,0,0.1);
}

/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--pink-vibrant) 0%, var(--purple-primary) 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(16px, 2.2vw, 20px);
  padding: 16px 40px;
  border-radius: 60px;
  box-shadow: 0 8px 30px rgba(219,39,119,0.35);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  border: none;
  letter-spacing: 0.3px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(219,39,119,0.5);
}

.cta-button:active {
  transform: translateY(-1px);
}

.cta-arrow {
  font-size: 1.3em;
  transition: transform 0.3s;
}
.cta-button:hover .cta-arrow {
  transform: translateX(4px);
}

/* Pulse animation */
.pulse {
  animation: pulseGlow 2.5s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 8px 30px rgba(219,39,119,0.35);
  }
  50% {
    box-shadow: 0 8px 50px rgba(219,39,119,0.6), 0 0 80px rgba(219,39,119,0.15);
  }
}

/* Hero hills / wave */
.hero-hills {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
}
.hill-wave {
  width: 100%;
  height: clamp(80px, 15vw, 180px);
  display: block;
}

/* ===========================
   Banner Section
   =========================== */
.banner-section {
  background: var(--off-white);
  padding: 60px 24px;
  position: relative;
}

.banner-container {
  max-width: 1200px;
  margin: 0 auto;
}

.banner-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 4px 6px -1px rgba(0,0,0,0.05),
    0 10px 30px -3px rgba(0,0,0,0.1),
    0 0 0 1px rgba(0,0,0,0.02);
  background: var(--white);
}

.banner-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 60 / 20;
  object-fit: cover;
}

/* ===========================
   Lineup Section
   =========================== */
.lineup-section {
  position: relative;
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 30%, #FAF5FF 70%, #F5F3FF 100%);
  overflow: hidden;
}

.lineup-bg-decoration {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.section-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--purple-primary);
  background: rgba(109,40,217,0.08);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--purple-dark);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.title-underline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.title-underline-dot {
  display: block;
  width: 40px;
  height: 4px;
  border-radius: 4px;
}

/* Artist Grid */
.artist-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 640px) {
  .artist-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .artist-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* Artist Card */
.artist-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease;
  position: relative;
  border: 1px solid rgba(0,0,0,0.04);
}

.artist-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.artist-card.headliner {
  grid-column: 1 / -1;
}

@media (min-width: 640px) {
  .artist-card.headliner {
    display: grid;
    grid-template-columns: 200px 1fr;
  }
}

@media (min-width: 1024px) {
  .artist-card:not(.headliner) {
    min-height: 260px;
  }
}

.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--yellow-bright), #F59E0B);
  color: #78350F;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(250,204,21,0.4);
  z-index: 2;
}

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

.artist-card:not(.headliner) .card-image {
  height: 120px;
}

.artist-card.headliner .card-image {
  min-height: 180px;
}

@media (min-width: 640px) {
  .artist-card.headliner .card-image {
    min-height: 100%;
  }
}

.card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--purple-primary);
  opacity: 0.5;
  transition: opacity 0.4s, transform 0.4s;
}

.artist-card:hover .card-image-placeholder {
  opacity: 0.7;
  transform: scale(1.05);
}

.card-content {
  padding: 20px;
  position: relative;
}

.card-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  background: var(--accent);
  border-radius: 0 0 4px 4px;
}

.card-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
  font-size: 14px;
}

.card-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  color: var(--dark);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.artist-card.headliner .card-title {
  font-size: clamp(28px, 4vw, 36px);
}

.card-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.card-genre {
  font-size: 14px;
  color: #64748B;
}

/* ===========================
   Event Info Section
   =========================== */
.info-section {
  position: relative;
  padding: 80px 0 100px;
  background: linear-gradient(180deg, #F5F3FF 0%, #EDE9FE 50%, #EEF2FF 100%);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 64px;
}

@media (min-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.info-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.03);
}

.info-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 20px;
}

.info-card-title {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 1px;
  color: var(--purple-dark);
  margin-bottom: 12px;
}

.info-venue-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.info-venue-address {
  font-size: 15px;
  color: #64748B;
  margin-bottom: 12px;
}

.info-venue-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 20px;
}

.info-detail-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #475569;
  margin-bottom: 10px;
}

.info-detail-row i {
  width: 20px;
  text-align: center;
  color: var(--purple-primary);
}

/* Map Container */
.map-wrapper {
  position: relative;
}

.map-container {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.03);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 350px;
  background: linear-gradient(135deg, #1E1B4B 0%, #312E81 50%, #3730A3 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(56,189,248,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(219,39,119,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.map-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.8;
}

.map-title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.map-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}

.map-coords {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s, transform 0.3s;
}

.map-link:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* Countdown */
.countdown-wrapper {
  text-align: center;
  background: var(--white);
  border-radius: 24px;
  padding: 48px 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.03);
}

.countdown-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--purple-primary);
  margin-bottom: 24px;
}

.countdown-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.countdown-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1;
  color: var(--purple-dark);
  letter-spacing: 2px;
  min-width: 2ch;
  text-align: center;
}

.countdown-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #94A3B8;
}

.countdown-separator {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--purple-light);
  opacity: 0.4;
  line-height: 1;
  padding-bottom: 20px;
}

.cta-secondary {
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-light));
  box-shadow: 0 8px 30px rgba(109,40,217,0.3);
  font-size: 16px;
  padding: 14px 36px;
}

.cta-secondary:hover {
  box-shadow: 0 12px 40px rgba(109,40,217,0.45);
}

/* ===========================
   CTA Banner
   =========================== */
.cta-banner {
  position: relative;
  padding: 80px 24px;
  text-align: center;
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-primary) 50%, #6B21A8 100%);
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(56,189,248,0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(219,39,119,0.08) 0%, transparent 40%);
  pointer-events: none;
}

.cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.cta-banner-text {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}

/* ===========================
   Footer
   =========================== */
.site-footer {
  position: relative;
  background: var(--dark-secondary);
  color: var(--white);
}

.footer-wave {
  position: relative;
  margin-top: -2px;
  line-height: 0;
}

.footer-wave svg {
  width: 100%;
  height: auto;
  display: block;
}

.footer-content {
  padding: 60px 24px 32px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--purple-light);
  letter-spacing: 1px;
}

.footer-logo-sub {
  font-family: var(--font-display);
  font-size: 14px;
  color: rgba(139,92,246,0.5);
  letter-spacing: 1px;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.social-link:hover {
  background: var(--purple-primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-links-title {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ===========================
   Sticky CTA (Mobile)
   =========================== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  border-top: 1px solid rgba(0,0,0,0.04);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 12px;
}

.sticky-cta-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sticky-cta-date {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--purple-dark);
  letter-spacing: 0.5px;
  line-height: 1;
}

.sticky-cta-venue {
  font-size: 11px;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sticky-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--pink-vibrant), var(--purple-primary));
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(219,39,119,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  white-space: nowrap;
}

.sticky-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(219,39,119,0.45);
}

@media (min-width: 768px) {
  .sticky-cta {
    display: none;
  }
}

/* ===========================
   Responsive: Mobile Nav
   =========================== */
@media (max-width: 767px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15,23,42,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transform: translateY(-100%);
    transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
    z-index: 999;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .nav-link {
    font-size: 20px;
    color: var(--white) !important;
    text-shadow: none !important;
  }

  .nav-cta {
    font-size: 16px;
    padding: 14px 32px;
  }

  .hero-title-main {
    font-size: clamp(4rem, 15vw, 6rem);
  }

  .hero-title-sub {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .cloud-1, .cloud-2, .cloud-3, .cloud-4 {
    display: none;
  }

  .banner-section {
    padding: 32px 16px;
  }

  .lineup-section {
    padding: 60px 0 80px;
  }

  .info-section {
    padding: 60px 0 80px;
  }

  .artist-card.headliner {
    grid-template-columns: 1fr;
  }

  .info-card {
    padding: 24px;
  }

  .countdown-wrapper {
    padding: 32px 20px;
  }
}

/* ===========================
   Responsive: Tablet
   =========================== */
@media (min-width: 768px) and (max-width: 1023px) {
  .cloud-1 { display: none; }
  .cloud-4 { display: none; }
}

/* ===========================
   Loading / fade-in animations
   =========================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}
