/* ============================================================
   AQUELLOS AÑOS LOCOS — Premium Dark Festival Theme
   Pop & Remember Dance from the 2000s
   ============================================================ */

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

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand Colors — Twilight Sky 2026 */
  --color-navy: #1B3D50;          /* deep slate-teal base */
  --color-navy-dark: #122D3D;     /* darker slate */
  --color-navy-darker: #0A1E2B;   /* near-black teal */
  --color-teal: #2B5870;          /* mid teal from image top */
  --color-teal-mid: #3D7A8A;      /* lighter teal sky */
  --color-sage: #5A9090;          /* muted sage transition */
  --color-cream: #C8C4A0;         /* warm dusty cream */
  --color-peach: #E8A870;         /* warm peach horizon */
  --color-gold: #F2C94C;          /* golden accent (kept) */
  --color-gold-light: #F7DC6F;
  --color-gold-dark: #D4A017;
  --color-sunset: #F09060;        /* soft sunset orange from image */
  --color-sunset-deep: #E07040;   /* deeper orange bottom */
  --color-sand: #C8B99A;          /* muted sand */
  --color-sand-light: #DDD0B0;
  --color-white: #FFFFFF;
  --color-white-soft: rgba(255, 255, 255, 0.9);
  --color-white-muted: rgba(255, 255, 255, 0.65);
  --color-white-faint: rgba(255, 255, 255, 0.28);
  --color-sky-blue: #4A8EA6;      /* teal-blue accent */
  --color-overlay: rgba(10, 30, 43, 0.85);
  --color-overlay-heavy: rgba(10, 30, 43, 0.95);
  --color-glass-bg: rgba(255, 255, 255, 0.055);
  --color-glass-border: rgba(255, 255, 255, 0.11);
  --color-glass-border-hover: rgba(240, 144, 96, 0.4);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --fw-black: 900;

  /* Font Sizes — fluid */
  --fs-xs: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  --fs-sm: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
  --fs-base: clamp(0.95rem, 0.9rem + 0.3vw, 1.05rem);
  --fs-md: clamp(1.05rem, 1rem + 0.4vw, 1.2rem);
  --fs-lg: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  --fs-xl: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  --fs-2xl: clamp(1.8rem, 1.4rem + 1.5vw, 2.5rem);
  --fs-3xl: clamp(2.2rem, 1.6rem + 2vw, 3.2rem);
  --fs-4xl: clamp(2.8rem, 2rem + 3vw, 4.5rem);
  --fs-display: clamp(3.2rem, 2.2rem + 4vw, 6rem);

  /* Spacing */
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 900px;
  --nav-height: 80px;
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --border-radius-pill: 100px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.18);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.28);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.38);
  --shadow-gold: 0 0 30px rgba(240, 144, 96, 0.35);
  --shadow-gold-lg: 0 0 60px rgba(242, 201, 76, 0.22), 0 0 120px rgba(240, 144, 96, 0.12);

  /* Z-index layers */
  --z-particles: 1;
  --z-content: 10;
  --z-nav: 1000;
  --z-overlay: 900;
  --z-modal: 1100;
}


/* ============================================================
   2. RESET & BASE

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scrollbar-width: thin;
  scrollbar-color: var(--color-sand) var(--color-navy-darker);
}

html::-webkit-scrollbar {
  width: 8px;
}

html::-webkit-scrollbar-track {
  background: var(--color-navy-darker);
}

html::-webkit-scrollbar-thumb {
  background: var(--color-gold-dark);
  border-radius: 4px;
}

html::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

body {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--color-white-soft);
  background-color: #0A1E2B;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

::-moz-selection {
  background-color: var(--color-gold);
  color: var(--color-navy-darker);
}

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

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

a:hover {
  color: var(--color-gold-light);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

ul, ol {
  list-style: none;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-extrabold);
  line-height: 1.15;
  color: var(--color-white);
}

h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }

p {
  margin-bottom: var(--space-md);
  color: var(--color-white-muted);
}

p:last-child {
  margin-bottom: 0;
}


/* ============================================================
   3. UTILITY CLASSES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-block: var(--space-4xl);
  position: relative;
  z-index: 4;   /* los iconos alternan entre z-index 2 (detrás) y 8 (delante) */
}

/* El hero y el footer también necesitan su capa */
.hero-content,
.hero-particles,
.scroll-indicator {
  position: relative;
  z-index: 4;
}

.footer {
  position: relative;
  z-index: 4;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}


/* ============================================================
   4. SECTION TITLE (reusable, with decorative lines)
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-extrabold);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
}

.section-title::before,
.section-title::after {
  content: '';
  flex: 0 1 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.section-title::before {
  background: linear-gradient(90deg, transparent, var(--color-gold));
}

.section-title::after {
  background: linear-gradient(90deg, var(--color-gold), transparent);
}

.section-subtitle {
  font-size: var(--fs-md);
  color: var(--color-white-muted);
  margin-top: var(--space-sm);
  font-weight: var(--fw-regular);
}


/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-xl);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-base);
  border-radius: var(--border-radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition:
    transform var(--transition-smooth),
    box-shadow var(--transition-smooth),
    background-color var(--transition-base),
    color var(--transition-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-navy-darker);
  box-shadow: var(--shadow-gold);
  animation: pulse-glow 3s ease-in-out infinite;
}

.btn--primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow-gold-lg);
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
}

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

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

.btn--outline:hover {
  background: var(--color-gold);
  color: var(--color-navy-darker);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn--large {
  padding: var(--space-md) var(--space-2xl);
  font-size: var(--fs-md);
}

.btn--small {
  padding: var(--space-xs) var(--space-lg);
  font-size: var(--fs-sm);
}

.btn--shimmer::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: shimmer 3s ease-in-out infinite;
}


/* ============================================================
   6. NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-nav);
  padding: var(--space-md) 0;
  transition:
    background-color var(--transition-smooth),
    padding var(--transition-smooth),
    backdrop-filter var(--transition-smooth);
  background: transparent;
}

.navbar.nav-scrolled {
  background: rgba(15, 28, 51, 0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  padding: var(--space-xs) 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  z-index: calc(var(--z-nav) + 1);
}

.nav-logo img {
  height: 52px;
  width: auto;
  border-radius: 6px;
  transition: transform var(--transition-smooth);
}

.nav-logo:hover img {
  transform: scale(1.05);
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: var(--fw-extrabold);
  font-size: var(--fs-lg);
  color: var(--color-white);
  letter-spacing: -0.01em;
}

.nav-logo-text span {
  color: var(--color-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: var(--fw-medium);
  font-size: var(--fs-sm);
  color: var(--color-white-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--transition-base);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition-smooth);
  border-radius: 1px;
}

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

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

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

.nav-cta {
  margin-left: var(--space-sm);
}

/* --- Hamburger --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: calc(var(--z-nav) + 2);
  position: relative;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition:
    transform var(--transition-base),
    opacity var(--transition-base);
}

.hamburger span:nth-child(1) {
  margin-bottom: 7px;
}

.hamburger span:nth-child(3) {
  margin-top: 7px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* --- Mobile Nav Overlay --- */
.nav-overlay {
  display: none;
}


/* ============================================================
   7. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Dark slate-teal fallback while video loads */
  background: linear-gradient(
    180deg,
    #0A1E2B 0%,
    #122D3D 25%,
    #1B3D50 55%,
    #0A1E2B 100%
  );
}

/* Video background element */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  opacity: 0.8;
}

/* Cinematic dark overlay on top of video */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 30, 43, 0.55) 0%,
    rgba(10, 30, 43, 0.25) 40%,
    rgba(10, 30, 43, 0.35) 75%,
    rgba(10, 30, 43, 0.7) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Subtle star dots for fallback (no video state) */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 55%;
  background-image:
    radial-gradient(1.5px 1.5px at 8% 12%, rgba(255,255,255,0.55) 50%, transparent 50%),
    radial-gradient(1px 1px at 22% 7%, rgba(255,255,255,0.4) 50%, transparent 50%),
    radial-gradient(2px 2px at 38% 18%, rgba(255,255,255,0.65) 50%, transparent 50%),
    radial-gradient(1px 1px at 53% 9%, rgba(255,255,255,0.35) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 67% 22%, rgba(255,255,255,0.5) 50%, transparent 50%),
    radial-gradient(1px 1px at 78% 6%, rgba(255,255,255,0.4) 50%, transparent 50%),
    radial-gradient(2px 2px at 90% 16%, rgba(255,255,255,0.6) 50%, transparent 50%),
    radial-gradient(1px 1px at 14% 32%, rgba(255,255,255,0.3) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 46% 28%, rgba(255,255,255,0.45) 50%, transparent 50%),
    radial-gradient(1px 1px at 82% 35%, rgba(255,255,255,0.35) 50%, transparent 50%),
    radial-gradient(1px 1px at 30% 42%, rgba(255,255,255,0.25) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 60% 38%, rgba(255,255,255,0.4) 50%, transparent 50%);
  pointer-events: none;
  z-index: 2;
}

/* Gradient overlay from top — kept for gradient fallback mode */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 30, 43, 0.5) 0%,
    rgba(10, 30, 43, 0.1) 35%,
    rgba(10, 30, 43, 0.05) 65%,
    rgba(10, 30, 43, 0.45) 100%
  );
  z-index: 2;
  pointer-events: none;
}


/* --- Floating Particles --- */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: var(--z-particles);
  pointer-events: none;
  overflow: hidden;
}

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

.particle:nth-child(1)  { left: 8%;  top: 20%; width: 2px; height: 2px; opacity: 0.3; animation-duration: 8s;  animation-delay: 0s; }
.particle:nth-child(2)  { left: 15%; top: 60%; width: 3px; height: 3px; opacity: 0.5; animation-duration: 12s; animation-delay: 1s; }
.particle:nth-child(3)  { left: 25%; top: 35%; width: 2px; height: 2px; opacity: 0.4; animation-duration: 9s;  animation-delay: 2s; }
.particle:nth-child(4)  { left: 32%; top: 75%; width: 4px; height: 4px; opacity: 0.2; animation-duration: 15s; animation-delay: 0.5s; }
.particle:nth-child(5)  { left: 40%; top: 15%; width: 2px; height: 2px; opacity: 0.6; animation-duration: 10s; animation-delay: 3s; }
.particle:nth-child(6)  { left: 48%; top: 50%; width: 3px; height: 3px; opacity: 0.35; animation-duration: 11s; animation-delay: 1.5s; }
.particle:nth-child(7)  { left: 55%; top: 80%; width: 2px; height: 2px; opacity: 0.45; animation-duration: 8s;  animation-delay: 4s; }
.particle:nth-child(8)  { left: 62%; top: 25%; width: 3px; height: 3px; opacity: 0.3; animation-duration: 14s; animation-delay: 2.5s; }
.particle:nth-child(9)  { left: 70%; top: 55%; width: 2px; height: 2px; opacity: 0.55; animation-duration: 9s;  animation-delay: 0.8s; }
.particle:nth-child(10) { left: 78%; top: 40%; width: 4px; height: 4px; opacity: 0.25; animation-duration: 13s; animation-delay: 3.5s; }
.particle:nth-child(11) { left: 85%; top: 70%; width: 2px; height: 2px; opacity: 0.4; animation-duration: 10s; animation-delay: 1.2s; }
.particle:nth-child(12) { left: 92%; top: 30%; width: 3px; height: 3px; opacity: 0.3; animation-duration: 12s; animation-delay: 4.5s; }
.particle:nth-child(13) { left: 5%;  top: 85%; width: 2px; height: 2px; opacity: 0.5; animation-duration: 7s;  animation-delay: 2s; }
.particle:nth-child(14) { left: 20%; top: 10%; width: 3px; height: 3px; opacity: 0.35; animation-duration: 11s; animation-delay: 0.3s; }
.particle:nth-child(15) { left: 38%; top: 90%; width: 2px; height: 2px; opacity: 0.45; animation-duration: 9s;  animation-delay: 3.2s; }
.particle:nth-child(16) { left: 52%; top: 5%;  width: 2px; height: 2px; opacity: 0.3; animation-duration: 14s; animation-delay: 1.8s; }
.particle:nth-child(17) { left: 68%; top: 92%; width: 3px; height: 3px; opacity: 0.4; animation-duration: 8s;  animation-delay: 4.2s; }
.particle:nth-child(18) { left: 82%; top: 12%; width: 2px; height: 2px; opacity: 0.55; animation-duration: 10s; animation-delay: 0.6s; }
.particle:nth-child(19) { left: 95%; top: 65%; width: 3px; height: 3px; opacity: 0.25; animation-duration: 13s; animation-delay: 2.8s; }
.particle:nth-child(20) { left: 45%; top: 45%; width: 2px; height: 2px; opacity: 0.4; animation-duration: 11s; animation-delay: 1.6s; }

/* Golden-tinted star particles */
.particle:nth-child(odd) {
  background: var(--color-gold);
  box-shadow: 0 0 6px rgba(242, 201, 76, 0.5);
}

.particle:nth-child(even) {
  background: var(--color-white);
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
}

/* --- Hero Content --- */
.hero-content {
  position: relative;
  z-index: var(--z-content);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  padding: var(--space-3xl) var(--space-lg);
}

.hero-logo {
  max-width: 480px;
  width: 85%;
  height: auto;
  border-radius: 12px;
  animation: fade-in-up 1s ease-out 0.2s both;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.4));
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  letter-spacing: 0.04em;
  animation: fade-in-up 1s ease-out 0.5s both;
}

/* El salto de línea solo activo en móvil */
.mobile-break { display: none; }

.hero-tagline span {
  color: var(--color-gold);
  font-weight: var(--fw-extrabold);
}

.hero-sub {
  font-size: var(--fs-md);
  color: var(--color-white-muted);
  max-width: 500px;
  animation: fade-in-up 1s ease-out 0.7s both;
}

.hero-cta {
  animation: fade-in-up 1s ease-out 0.9s both;
}

.hero-date-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-lg);
  background: rgba(242, 201, 76, 0.1);
  border: 1px solid rgba(242, 201, 76, 0.3);
  border-radius: var(--border-radius-pill);
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  color: var(--color-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: fade-in-up 1s ease-out 0.3s both;
}

/* --- Scroll Indicator --- */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-content);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  animation: fade-in-up 1s ease-out 1.2s both;
}

.scroll-indicator-text {
  font-size: var(--fs-xs);
  color: var(--color-white-faint);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: var(--fw-medium);
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
  transform: rotate(45deg);
  animation: bounce-arrow 2s ease-in-out infinite;
  opacity: 0.7;
}


/* ============================================================
   8. EVENTS SECTION
   ============================================================ */
.events {
  background: linear-gradient(
    180deg,
    #0A1E2B 0%,
    #122D3D 50%,
    #1B3D50 100%
  );
}


.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  max-width: 1000px;
  margin-inline: auto;
}

/* --- Event Card (Glassmorphism) --- */
.event-card {
  background: var(--color-glass-bg);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--border-radius-lg);
  padding: 0;                   /* la imagen va a sangre */
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--transition-smooth),
    border-color var(--transition-smooth),
    box-shadow var(--transition-smooth);
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-sky-blue), var(--color-gold));
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.event-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-glass-border-hover);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(242, 201, 76, 0.08);
}

.event-card:hover::before {
  opacity: 1;
}

.event-card-city {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-extrabold);
  color: var(--color-white);
  letter-spacing: -0.01em;
}

.event-card-date {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-lg);
  color: var(--color-gold);
}

.event-card-date svg,
.event-card-date .icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.event-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  padding: var(--space-2xs) var(--space-sm);
  background: rgba(242, 201, 76, 0.12);
  border: 1px solid rgba(242, 201, 76, 0.25);
  border-radius: var(--border-radius-pill);
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-xs);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: fit-content;
}

.event-card-location {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  font-size: var(--fs-sm);
  color: var(--color-white-muted);
  line-height: 1.5;
}

.event-card-location svg,
.event-card-location .icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-white-faint);
}

/* --- Countdown --- */
.countdown {
  display: flex;
  gap: var(--space-sm);
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2xs);
  min-width: 52px;
}

.countdown-value {
  font-family: var(--font-heading);
  font-weight: var(--fw-extrabold);
  font-size: var(--fs-xl);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius-sm);
  padding: var(--space-xs) var(--space-sm);
  min-width: 52px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.countdown-label {
  font-size: var(--fs-xs);
  color: var(--color-white-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: var(--fw-medium);
}

/* --- Event Card Poster Wrapper + Body --- */
.event-card-poster-wrap {
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
  background: #0a1520; /* fondo por si hay espacio lateral */
}

.event-card-poster {
  width: 100%;
  height: auto;       /* muestra el cartel completo a su proporción */
  display: block;
  transition: transform 0.5s ease;
}

.event-card:hover .event-card-poster {
  transform: scale(1.02);
}

.event-card-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding: var(--space-xl) var(--space-2xl) var(--space-2xl);
  flex: 1;
}

/* event-card-cta sigue al fondo */
.event-card-cta {
  margin-top: auto;
}

/* ============================================================
   9. MADRID CLUB SECTION
   ============================================================ */
.madrid-club {
  position: relative;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(74, 142, 165, 0.12) 0%, transparent 60%),
    #0A1E2B;
  overflow: hidden;
}


.madrid-club::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.madrid-club-content {
  position: relative;
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
}

.madrid-club-title {
  font-size: var(--fs-2xl);
  color: var(--color-white);
}

.madrid-club-text {
  font-size: var(--fs-md);
  color: var(--color-white-muted);
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-lg);
  border: 2px solid var(--color-gold);
  border-radius: var(--border-radius-pill);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(242, 201, 76, 0.08);
  animation: pulse-glow 3s ease-in-out infinite;
}

/* --- Newsletter Form --- */
.newsletter-form {
  display: flex;
  gap: var(--space-sm);
  width: 100%;
  max-width: 460px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: var(--space-sm) var(--space-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--border-radius-pill);
  color: var(--color-white);
  font-size: var(--fs-sm);
  transition:
    border-color var(--transition-base),
    background-color var(--transition-base);
}

.newsletter-form input[type="email"]::placeholder {
  color: var(--color-white-faint);
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-form .btn {
  flex-shrink: 0;
}

.newsletter-note {
  font-size: var(--fs-xs);
  color: var(--color-white-faint);
  margin-top: calc(-1 * var(--space-sm));
}


/* ============================================================
   10. ABOUT SECTION
   ============================================================ */
.about {
  background: linear-gradient(
    180deg,
    #122D3D 0%,
    #1B3D50 50%,
    #122D3D 100%
  );
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.about-text h2 {
  font-size: var(--fs-3xl);
}

.about-text h2 span {
  color: var(--color-gold);
}

.about-text p {
  font-size: var(--fs-base);
  color: var(--color-white-muted);
  line-height: 1.8;
}

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

.about-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  transition: transform var(--transition-smooth);
  object-fit: cover;
}

.about-image-wrapper:hover img {
  transform: scale(1.03) rotate(1deg);
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(242, 201, 76, 0.15);
  pointer-events: none;
  transition: border-color var(--transition-smooth);
}

.about-image-wrapper:hover::after {
  border-color: rgba(242, 201, 76, 0.35);
}

/* --- Stats Row --- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xl) var(--space-md);
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--border-radius-md);
  transition:
    border-color var(--transition-smooth),
    transform var(--transition-smooth);
}

.stat-item:hover {
  border-color: rgba(242, 201, 76, 0.25);
  transform: translateY(-4px);
}

.stat-number {
  font-family: var(--font-heading);
  font-weight: var(--fw-black);
  font-size: var(--fs-4xl);
  color: var(--color-gold);
  line-height: 1;
}

.stat-label {
  font-size: var(--fs-sm);
  color: var(--color-white-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: var(--fw-medium);
}

.stat-number--text {
  font-size: var(--fs-2xl);
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, var(--color-sunset), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulse-glow 2.5s ease-in-out infinite;
}


/* ============================================================
   9b. CONCEPT SECTION
   ============================================================ */
.concept {
  /* Twilight sky gradient — replicates the uploaded reference image */
  background: linear-gradient(
    180deg,
    #162E3C 0%,         /* deep slate top transition from hero */
    #2B5870 8%,         /* teal sky — image top */
    #3D7A8A 22%,        /* mid teal */
    #5A9090 38%,        /* sage-teal horizon */
    #8BA898 50%,        /* muted sage into cream */
    #C0B898 62%,        /* warm dusty cream */
    #D8C098 72%,        /* peach-cream */
    #E8A870 83%,        /* warm peach */
    #F09060 92%,        /* soft sunset orange */
    #E87040 100%        /* deep warm orange — image bottom */
  );
  overflow: hidden;
  position: relative;
}

/* Subtle dark overlay to keep text readable over the light lower section */
.concept::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 30, 43, 0.15) 0%,
    rgba(10, 30, 43, 0.08) 40%,
    rgba(10, 30, 43, 0.18) 70%,
    rgba(10, 30, 43, 0.45) 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* Star dots overlay on the top (dark part) of the section */
.concept::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background-image:
    radial-gradient(1.5px 1.5px at 5% 10%, rgba(255,255,255,0.6) 50%, transparent 50%),
    radial-gradient(1px 1px at 18% 6%, rgba(255,255,255,0.45) 50%, transparent 50%),
    radial-gradient(2px 2px at 32% 15%, rgba(255,255,255,0.5) 50%, transparent 50%),
    radial-gradient(1px 1px at 47% 8%, rgba(255,255,255,0.55) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 61% 18%, rgba(255,255,255,0.4) 50%, transparent 50%),
    radial-gradient(1px 1px at 74% 5%, rgba(255,255,255,0.5) 50%, transparent 50%),
    radial-gradient(2px 2px at 88% 12%, rgba(255,255,255,0.45) 50%, transparent 50%),
    radial-gradient(1px 1px at 12% 28%, rgba(255,255,255,0.3) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 40% 32%, rgba(255,255,255,0.35) 50%, transparent 50%),
    radial-gradient(1px 1px at 70% 25%, rgba(255,255,255,0.4) 50%, transparent 50%),
    radial-gradient(1px 1px at 92% 30%, rgba(255,255,255,0.3) 50%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* All direct children sit above the pseudo-element overlays */
.concept > * {
  position: relative;
  z-index: 1;
}

.concept-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.concept-title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-extrabold);
  line-height: 1.15;
  color: var(--color-white);
  text-shadow: 0 2px 20px rgba(10, 30, 43, 0.5);
}

.concept-title span {
  background: linear-gradient(135deg, #F2C94C, #F09060, #E87040);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.concept-intro {
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.92);
  max-width: 680px;
  line-height: 1.85;
  text-align: center;
  margin: 0;
  text-shadow: 0 1px 12px rgba(10, 30, 43, 0.45);
}

.concept-intro strong {
  color: #F2C94C;
  font-weight: var(--fw-semibold);
}

/* --- Timeline --- */
.timeline {
  background: rgba(10, 25, 38, 0.72);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

/* Bar */
.timeline-bar {
  position: relative;
  height: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-pill);
  overflow: visible;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}

.timeline-bar:hover {
  background: rgba(255, 255, 255, 0.13);
}

.timeline-bar--dragging {
  cursor: grabbing !important;
}

.timeline-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 50%;
  background: linear-gradient(90deg, var(--color-gold), var(--color-sunset));
  border-radius: var(--border-radius-pill);
  transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 20px rgba(242, 201, 76, 0.4);
}

.timeline-divider {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 3px;
  height: 24px;
  background: var(--color-white-faint);
  border-radius: 2px;
  transition: left 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-sun,
.timeline-moon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  line-height: 1;
  transition: left 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  pointer-events: none;
  filter: drop-shadow(0 0 6px rgba(242, 201, 76, 0.6));
}

/* When dragging, disable transitions so it follows cursor in real-time */
.timeline-bar--dragging .timeline-sun,
.timeline-bar--dragging .timeline-moon,
.timeline-bar--dragging .timeline-progress,
.timeline-bar--dragging .timeline-divider {
  transition: none !important;
}

.timeline-sun {
  left: 1%;
  cursor: grab;
  pointer-events: auto;
  font-size: 1.6rem;
  z-index: 2;
  /* larger hit area via padding only — no negative margin to avoid offset bugs */
  padding: 10px;
  filter: drop-shadow(0 0 8px rgba(242, 201, 76, 0.8));
}

.timeline-sun:hover {
  filter: drop-shadow(0 0 14px rgba(242, 201, 76, 1)) drop-shadow(0 0 4px #fff);
  transform: translateY(-50%) scale(1.15);
}

.timeline-bar--dragging .timeline-sun {
  cursor: grabbing;
  filter: drop-shadow(0 0 18px rgba(242, 201, 76, 1)) drop-shadow(0 0 6px #fff);
  transform: translateY(-50%) scale(1.2);
}

.timeline-moon {
  right: 2%;
  opacity: 0.4;
}

/* Labels */
.timeline-labels {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: var(--color-white-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: var(--fw-medium);
  padding: 0 var(--space-2xs);
  margin-top: calc(-1 * var(--space-sm));
}

/* Phases container */
.timeline-phases {
  position: relative;
  min-height: 220px;
}

.timeline-phase {
  display: none;
  flex-direction: row;
  gap: var(--space-xl);
  align-items: flex-start;
  animation: phase-fade-in 0.45s ease-out both;
}

.timeline-phase.active {
  display: flex;
}

@keyframes phase-fade-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.phase-icon {
  font-size: 3rem;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(242, 201, 76, 0.4));
}

.phase-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.phase-tag {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.timeline-phase--dance .phase-tag {
  color: var(--color-sky-blue);
}

.phase-title {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-extrabold);
  color: var(--color-white);
  margin: 0;
}

.phase-desc {
  font-size: var(--fs-sm);
  color: var(--color-white-muted);
  line-height: 1.7;
  margin: 0;
  max-width: 460px;
}

/* Artist chips */
.artist-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-xs);
}

.artist-chip {
  display: inline-block;
  padding: var(--space-2xs) var(--space-sm);
  background: rgba(242, 201, 76, 0.1);
  border: 1px solid rgba(242, 201, 76, 0.22);
  border-radius: var(--border-radius-pill);
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-gold);
  letter-spacing: 0.04em;
  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
  cursor: default;
}

.artist-chip:hover {
  background: rgba(242, 201, 76, 0.2);
  border-color: rgba(242, 201, 76, 0.5);
  transform: translateY(-2px);
}

.timeline-phase--dance .artist-chip {
  background: rgba(58, 142, 165, 0.1);
  border-color: rgba(58, 142, 165, 0.25);
  color: var(--color-sky-blue);
}

.timeline-phase--dance .artist-chip:hover {
  background: rgba(58, 142, 165, 0.2);
  border-color: rgba(58, 142, 165, 0.5);
}

/* Toggle buttons */
.timeline-toggle {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-glass-border);
}

.timeline-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-xl);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--border-radius-pill);
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-white-muted);
  cursor: pointer;
  transition:
    background-color var(--transition-smooth),
    border-color var(--transition-smooth),
    color var(--transition-smooth),
    transform var(--transition-smooth),
    box-shadow var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.timeline-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
}

.timeline-btn.active {
  background: linear-gradient(135deg, rgba(242, 201, 76, 0.18), rgba(232, 131, 74, 0.12));
  border-color: var(--color-gold);
  color: var(--color-gold);
  box-shadow: 0 0 20px rgba(242, 201, 76, 0.15);
}

.timeline-btn[data-target="dance"].active {
  background: linear-gradient(135deg, rgba(58, 142, 165, 0.18), rgba(58, 142, 165, 0.08));
  border-color: var(--color-sky-blue);
  color: var(--color-sky-blue);
  box-shadow: 0 0 20px rgba(58, 142, 165, 0.15);
}

/* Responsive */
@media (max-width: 640px) {
  .timeline-phase {
    flex-direction: column;
    gap: var(--space-md);
  }

  .timeline {
    padding: var(--space-lg);
  }

  .timeline-toggle {
    flex-direction: column;
    align-items: stretch;
  }

  .timeline-btn {
    justify-content: center;
  }
}


/* ============================================================
   10b. GALLERY CAROUSEL

   ============================================================ */
.gallery-section {
  background: linear-gradient(
    180deg,
    #122D3D 0%,
    #1B3D50 50%,
    #0A1E2B 100%
  );
}

/* --- Wide gallery carousel (shows 3 images across) --- */
/* --- Wide gallery carousel — CSS scroll-snap (native swipe) --- */
.carousel-wide {
  position: relative;
}

.carousel-wide-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;          /* Firefox */
  -ms-overflow-style: none;       /* IE/Edge */
  cursor: grab;
  padding-bottom: 4px;            /* avoid clipping box-shadow */
}

.carousel-wide-track::-webkit-scrollbar {
  display: none;
}

.carousel-wide-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;         /* disable snap while dragging for smoothness */
}

.carousel-wide-slide {
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 2 * 12px) / 3); /* 3 visible on desktop */
  aspect-ratio: 6 / 5;   /* ~50% taller than 16/9 */
  overflow: hidden;
  border-radius: var(--border-radius-md);
  position: relative;
}

.carousel-wide-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  pointer-events: none;           /* prevent image drag interfering */
}

.carousel-wide-slide:hover img {
  transform: scale(1.04);
}

@media (max-width: 900px) {
  .carousel-wide-slide {
    flex: 0 0 calc((100% - 12px) / 2); /* 2 visible on tablet */
  }
}

@media (max-width: 520px) {
  .carousel-wide-slide {
    flex: 0 0 82%;  /* 1 + peek on mobile */
  }
}


/* --- Concept CTA --- */
.concept-cta {
  display: flex;
  justify-content: center;
  padding-top: var(--space-xl);
}

/* --- Events more CTA --- */
.events-more-cta {
  display: flex;
  justify-content: center;
  margin-top: var(--space-2xl);
}

/* Old narrow carousel kept for reference */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  max-width: 400px;
  margin-inline: auto;
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

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


/* Navigation Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(10, 18, 36, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition:
    background-color var(--transition-base),
    border-color var(--transition-base),
    transform var(--transition-smooth);
}

.carousel-btn:hover {
  background: rgba(242, 201, 76, 0.2);
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn--prev {
  left: var(--space-md);
}

.carousel-btn--next {
  right: var(--space-md);
}

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-xs);
  z-index: 10;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition:
    background-color var(--transition-base),
    transform var(--transition-base),
    border-color var(--transition-base);
  padding: 0;
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.carousel-dot.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  transform: scale(1.3);
}

/* Gradient overlay on bottom for dots readability */
.carousel::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(10, 18, 36, 0.6), transparent);
  pointer-events: none;
  z-index: 5;
  border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
}

@media (max-width: 768px) {
  .carousel-slide {
    aspect-ratio: 3 / 4;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .carousel-btn--prev {
    left: var(--space-xs);
  }

  .carousel-btn--next {
    right: var(--space-xs);
  }

  .carousel-dot {
    width: 8px;
    height: 8px;
  }
}


/* ============================================================
   11. FOOTER
   ============================================================ */
.footer {
  background: #071520;
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-xl);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(90%, var(--container-max));
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-glass-border), var(--color-gold-dark), var(--color-glass-border), transparent);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  text-align: center;
}

.footer-logo img {
  height: 50px;
  width: auto;
  opacity: 0.8;
  transition: opacity var(--transition-base);
}

.footer-logo:hover img {
  opacity: 1;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-glass-border);
  background: var(--color-glass-bg);
  color: var(--color-white-muted);
  font-size: var(--fs-md);
  transition:
    background-color var(--transition-base),
    border-color var(--transition-base),
    color var(--transition-base),
    transform var(--transition-smooth);
}

.social-link:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-navy-darker);
  transform: translateY(-3px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md) var(--space-xl);
}

.footer-links a {
  font-size: var(--fs-sm);
  color: var(--color-white-muted);
  transition: color var(--transition-base);
}

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

.footer-legal {
  font-size: var(--fs-xs);
  color: var(--color-white-faint);
  max-width: 500px;
  line-height: 1.6;
}

.footer-legal a {
  color: var(--color-white-muted);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.2);
  text-underline-offset: 3px;
}

.footer-legal a:hover {
  color: var(--color-gold);
  text-decoration-color: var(--color-gold);
}


/* ============================================================
   11b. FLOATING RETRO ICONS
   ============================================================ */
/* ============================================================
   RETRO BOUNCING ICONS
   El div.retro-icons es solo un almacén HTML oculto.
   JS mueve cada .retro-icon al <body> con position:fixed
   y z-index propio en el root stacking context,
   así puede pasar de verdad delante/detrás del contenido.
   ============================================================ */
.retro-icons {
  display: none; /* fuente de elementos, oculta */
}

.retro-icon {
  position: fixed;
  pointer-events: none;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.3));
  will-change: transform;
  transition: z-index 0s; /* z-index instantáneo */
}

/* Tamaños y opacidades individuales */
.retro-icon--1 { width: 100px; opacity: 0.20; }
.retro-icon--2 { width:  80px; opacity: 0.18; }
.retro-icon--3 { width:  90px; opacity: 0.20; }
.retro-icon--4 { width:  65px; opacity: 0.16; }
.retro-icon--5 { width:  95px; opacity: 0.19; }
.retro-icon--6 { width:  60px; opacity: 0.15; }
.retro-icon--7 { width:  75px; opacity: 0.17; }
.retro-icon--8 { width:  70px; opacity: 0.16; }

@media (max-width: 768px) {
  .retro-icon { display: none; }
}

.section-deco img {
  display: block;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.3));
}

/* Concepto — boombox esquina inferior derecha */
.concept .section-deco--boombox { right: -10px; bottom: 20px; }
.concept .section-deco--boombox img {
  width: 200px; opacity: 0.18;
  animation: section-float 28s ease-in-out infinite;
  animation-delay: -5s;
}

/* Eventos — VHS lateral izquierdo */
.events .section-deco--vhs { left: -15px; top: 50%; transform: translateY(-50%); }
.events .section-deco--vhs img {
  width: 180px; opacity: 0.15;
  animation: section-float 30s ease-in-out infinite;
  animation-delay: -10s;
}

/* Galería — lollipop esquina superior derecha */
.gallery-section .section-deco--lollipop { right: 5px; top: 10px; }
.gallery-section .section-deco--lollipop img {
  width: 140px; opacity: 0.18;
  animation: section-float 24s ease-in-out infinite;
  animation-delay: -3s;
}

/* Madrid club — cdplayer esquina inferior derecha */
.madrid-club .section-deco--cdplayer { right: 10px; bottom: 10px; }
.madrid-club .section-deco--cdplayer img {
  width: 190px; opacity: 0.16;
  animation: section-float 32s ease-in-out infinite;
  animation-delay: -8s;
}

/* About — boombox superior izquierda */
.about .section-deco--boombox { left: -10px; top: 20px; }
.about .section-deco--boombox img {
  width: 170px; opacity: 0.15;
  animation: section-float 26s ease-in-out infinite;
  animation-delay: -2s;
}

/* About — vhs inferior derecha */
.about .section-deco--vhs { right: -10px; bottom: 10px; }
.about .section-deco--vhs img {
  width: 160px; opacity: 0.15;
  animation: section-float 29s ease-in-out infinite;
  animation-delay: -13s;
}

@keyframes section-float {
  0%, 100% { transform: translateY(0px)   rotate(-8deg); }
  30%       { transform: translateY(-30px) rotate(-4deg); }
  60%       { transform: translateY(-16px) rotate(-10deg); }
  80%       { transform: translateY(-36px) rotate(-6deg); }
}

/* Responsive */
@media (max-width: 768px) {
  .retro-icons  { display: none; }
  .section-deco { display: none; }
}

/* ─────────────────────────────────────────────
   LADO IZQUIERDO — 4 iconos sin solapamiento
   Separados ~22vh entre sí
───────────────────────────────────────────── */

/* Boombox — zona superior izquierda */
.retro-icon--1 {
  width: 160px;
  top: 5vh;
  left: 1.5%;
  opacity: 0.88;
  animation: retro-float-A 22s ease-in-out infinite;
  animation-delay: 0s;
}

/* CD Player — zona media-alta izquierda */
.retro-icon--3 {
  width: 150px;
  top: 28vh;
  left: 1%;
  opacity: 0.82;
  animation: retro-float-B 26s ease-in-out infinite;
  animation-delay: -6s;
}

/* Lollipop — zona media-baja izquierda */
.retro-icon--6 {
  width: 130px;
  top: 54vh;
  left: 2%;
  opacity: 0.86;
  animation: retro-float-A 20s ease-in-out infinite;
  animation-delay: -11s;
}

/* VHS — zona inferior izquierda */
.retro-icon--8 {
  width: 145px;
  top: 76vh;
  left: 1.5%;
  opacity: 0.82;
  animation: retro-float-B 24s ease-in-out infinite;
  animation-delay: -4s;
}

/* ─────────────────────────────────────────────
   LADO DERECHO — 4 iconos sin solapamiento
   Separados ~22vh entre sí, desfasados del lado izq
───────────────────────────────────────────── */

/* Lollipop — zona superior derecha */
.retro-icon--4 {
  width: 120px;
  top: 8vh;
  right: 1.5%;
  opacity: 0.85;
  animation: retro-float-C 23s ease-in-out infinite;
  animation-delay: -3s;
}

/* VHS — zona media-alta derecha */
.retro-icon--2 {
  width: 155px;
  top: 30vh;
  right: 1%;
  opacity: 0.88;
  animation: retro-float-A 25s ease-in-out infinite;
  animation-delay: -9s;
}

/* CD Player — zona media-baja derecha */
.retro-icon--7 {
  width: 140px;
  top: 56vh;
  right: 1.5%;
  opacity: 0.83;
  animation: retro-float-B 21s ease-in-out infinite;
  animation-delay: -14s;
}

/* Boombox — zona inferior derecha */
.retro-icon--5 {
  width: 160px;
  top: 78vh;
  right: 1%;
  opacity: 0.87;
  animation: retro-float-C 27s ease-in-out infinite;
  animation-delay: -7s;
}

/* ─────────────────────────────────────────────
   KEYFRAMES — recorridos amplios y lentos
   Cada variante tiene una trayectoria ligeramente
   distinta para que no sincronicen entre sí
───────────────────────────────────────────── */
@keyframes retro-float-A {
  0%   { transform: translateY(0px)   rotate(-12deg); }
  20%  { transform: translateY(-30px) rotate(-8deg);  }
  45%  { transform: translateY(-52px) rotate(-15deg); }
  65%  { transform: translateY(-28px) rotate(-10deg); }
  85%  { transform: translateY(-44px) rotate(-13deg); }
  100% { transform: translateY(0px)   rotate(-12deg); }
}

@keyframes retro-float-B {
  0%   { transform: translateY(0px)   rotate(10deg);  }
  25%  { transform: translateY(-44px) rotate(14deg);  }
  50%  { transform: translateY(-22px) rotate(8deg);   }
  75%  { transform: translateY(-50px) rotate(12deg);  }
  100% { transform: translateY(0px)   rotate(10deg);  }
}

@keyframes retro-float-C {
  0%   { transform: translateY(0px)   rotate(-20deg); }
  30%  { transform: translateY(-38px) rotate(-16deg); }
  60%  { transform: translateY(-55px) rotate(-22deg); }
  80%  { transform: translateY(-20px) rotate(-18deg); }
  100% { transform: translateY(0px)   rotate(-20deg); }
}

/* ============================================================
   SECTION DECORATIVE ICONS — grandes, opacos, lentos
   ============================================================ */
.section-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.section-deco img {
  display: block;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.3));
}

/* Concepto — boombox esquina inferior derecha */
.concept .section-deco--boombox {
  right: -10px;
  bottom: 20px;
}
.concept .section-deco--boombox img {
  width: 260px;
  opacity: 0.85;
  animation: retro-float-A 28s ease-in-out infinite;
  animation-delay: -5s;
}

/* Eventos — VHS lateral izquierdo centrado */
.events .section-deco--vhs {
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
}
.events .section-deco--vhs img {
  width: 230px;
  opacity: 0.82;
  animation: retro-float-B 30s ease-in-out infinite;
  animation-delay: -10s;
}

/* Galería — lollipop esquina superior derecha */
.gallery-section .section-deco--lollipop {
  right: 5px;
  top: 10px;
}
.gallery-section .section-deco--lollipop img {
  width: 180px;
  opacity: 0.84;
  animation: retro-float-C 24s ease-in-out infinite;
  animation-delay: -3s;
}

/* Madrid club — cdplayer esquina inferior derecha */
.madrid-club .section-deco--cdplayer {
  right: 10px;
  bottom: 10px;
}
.madrid-club .section-deco--cdplayer img {
  width: 240px;
  opacity: 0.80;
  animation: retro-float-A 32s ease-in-out infinite;
  animation-delay: -8s;
}

/* About — boombox superior izquierda */
.about .section-deco--boombox {
  left: -10px;
  top: 20px;
}
.about .section-deco--boombox img {
  width: 220px;
  opacity: 0.82;
  animation: retro-float-B 26s ease-in-out infinite;
  animation-delay: -2s;
}

/* About — vhs inferior derecha */
.about .section-deco--vhs {
  right: -10px;
  bottom: 10px;
}
.about .section-deco--vhs img {
  width: 200px;
  opacity: 0.80;
  animation: retro-float-C 29s ease-in-out infinite;
  animation-delay: -13s;
}

/* ─── Responsive ─── */
@media (max-width: 1200px) {
  .retro-icon--1, .retro-icon--5 { width: 130px; }
  .retro-icon--2, .retro-icon--3 { width: 120px; }
  .retro-icon--4, .retro-icon--6, .retro-icon--7, .retro-icon--8 { width: 110px; }

  .concept .section-deco--boombox img   { width: 180px; }
  .events .section-deco--vhs img        { width: 160px; }
  .gallery-section .section-deco--lollipop img { width: 130px; }
  .madrid-club .section-deco--cdplayer img { width: 170px; }
  .about .section-deco--boombox img     { width: 155px; }
  .about .section-deco--vhs img         { width: 145px; }
}

@media (max-width: 768px) {
  .retro-icons  { display: none; }
  .section-deco { display: none; }
}


/* ============================================================
   12. ANIMATIONS & KEYFRAMES
   ============================================================ */
@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: var(--particle-opacity, 0.4);
  }
  90% {
    opacity: var(--particle-opacity, 0.4);
  }
  100% {
    transform: translateY(-120vh) translateX(30px);
    opacity: 0;
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(242, 201, 76, 0.2);
  }
  50% {
    box-shadow: 0 0 40px rgba(242, 201, 76, 0.4), 0 0 80px rgba(242, 201, 76, 0.15);
  }
}

@keyframes bounce-arrow {
  0%, 20%, 50%, 80%, 100% {
    transform: rotate(45deg) translateY(0);
  }
  40% {
    transform: rotate(45deg) translateY(-12px);
  }
  60% {
    transform: rotate(45deg) translateY(-6px);
  }
}

@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}

@keyframes rotate-slow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes count-up {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glow-border {
  0%, 100% {
    border-color: rgba(242, 201, 76, 0.25);
  }
  50% {
    border-color: rgba(242, 201, 76, 0.55);
  }
}

/* --- Animate on Scroll --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll[data-delay="1"] { transition-delay: 0.1s; }
.animate-on-scroll[data-delay="2"] { transition-delay: 0.2s; }
.animate-on-scroll[data-delay="3"] { transition-delay: 0.3s; }
.animate-on-scroll[data-delay="4"] { transition-delay: 0.4s; }
.animate-on-scroll[data-delay="5"] { transition-delay: 0.5s; }

/* Rotate-slow utility */
.rotate-slow {
  animation: rotate-slow 20s linear infinite;
}


/* ============================================================
   13. DECORATIVE ELEMENTS
   ============================================================ */
.decorative-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(242, 201, 76, 0.08);
  pointer-events: none;
}

.decorative-circle--lg {
  width: 500px;
  height: 500px;
}

.decorative-circle--sm {
  width: 250px;
  height: 250px;
}

.decorative-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 201, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}


/* ============================================================
   14. RESPONSIVE — TABLET (768px – 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --nav-height: 70px;
  }

  .section {
    padding-block: var(--space-3xl);
  }

  .nav-links {
    gap: var(--space-lg);
  }

  /* Events: 2 columnas en tablet */
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .event-card {
    padding: var(--space-xl);
  }


  .about-grid {
    gap: var(--space-2xl);
  }

  .stats-row {
    gap: var(--space-md);
  }

  .stat-item {
    padding: var(--space-lg) var(--space-sm);
  }

  /* Newsletter: 2 columnas en tablet */
  .newsletter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ============================================================
   15. RESPONSIVE — MOBILE (< 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .section {
    padding-block: var(--space-2xl);
  }

  .container {
    padding-inline: var(--space-md);
  }

  /* --- Iconos bouncing: ocultar en móvil --- */
  .retro-icon { display: none !important; }

  /* --- Mobile Nav --- */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    background: var(--color-overlay-heavy);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transform: translateX(100%);
    transition: transform var(--transition-smooth);
    z-index: var(--z-nav);
  }

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

  .nav-links a {
    font-size: var(--fs-lg);
    letter-spacing: 0.12em;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: calc(var(--z-nav) - 1);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
  }

  .nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-cta {
    margin-left: 0;
  }

  .nav-logo img {
    height: 54px;
  }

  /* --- Hero Mobile --- */
  .hero-content {
    padding: var(--space-2xl) var(--space-md);
    gap: var(--space-lg);
  }

  .hero-logo {
    max-width: 250px;
    width: 70%;
  }

  .hero-tagline {
    font-size: var(--fs-lg);
  }

  .mobile-break { display: block; }

  .hero-sub {
    font-size: var(--fs-sm);
  }

  .scroll-indicator {
    bottom: var(--space-lg);
  }

  /* --- Events Mobile: 1 columna --- */
  .events-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .event-card {
    padding: var(--space-xl) var(--space-lg);
  }


  .event-card-city {
    font-size: var(--fs-xl);
  }

  .countdown {
    gap: var(--space-xs);
  }

  .countdown-value {
    font-size: var(--fs-lg);
    min-width: 44px;
    padding: var(--space-xs);
  }

  /* --- Section Titles Mobile --- */
  .section-title {
    font-size: var(--fs-2xl);
    flex-direction: column;
    gap: var(--space-sm);
  }

  .section-title::before {
    display: none;
  }

  .section-title::after {
    display: block;
    flex-basis: auto;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  }

  /* --- Newsletter Mobile: 1 columna --- */
  .newsletter-grid {
    grid-template-columns: 1fr !important;
  }

  .newsletter-field {
    width: 100%;
  }

  .newsletter-field input,
  .newsletter-field select {
    width: 100%;
    box-sizing: border-box;
  }

  .newsletter-gdpr {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .newsletter-submit {
    width: 100%;
    max-width: 100%;
  }

  #newsletter-submit {
    width: 100%;
  }

  /* --- Privacy policy text --- */
  #privacy-policy-text {
    font-size: var(--fs-xs);
  }

  /* --- Madrid Club Mobile --- */
  .madrid-club-content {
    text-align: center;
  }

  /* --- About Mobile --- */
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about-image-wrapper {
    order: -1;
    max-height: 260px;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
  }

  .about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    margin-top: var(--space-2xl);
  }

  .stat-number {
    font-size: var(--fs-2xl);
  }

  .stat-label {
    font-size: var(--fs-xs);
  }

  .stat-item {
    padding: var(--space-md) var(--space-xs);
  }

  /* --- Footer Mobile --- */
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
  }

  /* --- Buttons Mobile --- */
  .btn--large {
    padding: var(--space-sm) var(--space-xl);
    font-size: var(--fs-sm);
    width: 100%;
    max-width: 320px;
  }

  /* --- Concept section Mobile --- */
  .concept-title {
    font-size: var(--fs-3xl);
  }

  .concept-intro {
    font-size: var(--fs-sm);
  }
}


/* ============================================================
   16. RESPONSIVE — SMALL MOBILE (< 400px)
   ============================================================ */
@media (max-width: 400px) {
  .container {
    padding-inline: var(--space-sm);
  }

  .hero-logo {
    max-width: 200px;
  }

  .event-card {
    padding: var(--space-lg) var(--space-md);
  }


  .countdown-value {
    font-size: var(--fs-md);
    min-width: 38px;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .stat-item {
    flex-direction: row;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
  }

  .newsletter-gdpr label {
    font-size: 11px;
  }
}


/* ============================================================
   17. PREFERS REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .particle {
    display: none;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }

  .hero-logo,
  .hero-tagline,
  .hero-sub,
  .hero-cta,
  .hero-date-badge,
  .scroll-indicator {
    animation: none;
    opacity: 1;
    transform: none;
  }
}


/* ============================================================
   18. PRINT STYLES
   ============================================================ */
@media print {
  .navbar,
  .hero-particles,
  .scroll-indicator,
  .decorative-circle,
  .decorative-glow {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .hero {
    min-height: auto;
    background: none;
  }

  .event-card {
    border: 1px solid #ccc;
    backdrop-filter: none;
  }
}
