/* ============================
   RESET BÁSICO
============================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #fff;
  background: #000;
}

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

/* ============================
   FONDO HELIOS
============================ */
body.homepage {
  background: radial-gradient(circle at center, #2a2a2a 0%, #000 70%);
  background-attachment: fixed;
}

/* ============================
   HEADER HELIOS
============================ */
#header {
  padding: 6rem 2rem 2rem;
  text-align: center;
  min-height: auto !important;
  height: auto !important;
}

#header .inner {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  min-height: auto !important;
  height: auto !important;
  display: block !important;
}

#header .inner header {
  min-height: auto !important;
  height: auto !important;
}

#header .inner header h1 {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

#header .inner header p {
  opacity: 0.75;
  margin-top: 0.5rem;
  font-size: 1.1rem;
}

#header .inner hr {
  width: 140px;
  margin: 1.5rem auto;
  border: 0;
  border-top: 2px solid #f5c542;
}

/* NAV */
#nav ul {
  margin-top: 2.5rem;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}

#nav a {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.85;
  transition: 0.2s;
}

#nav a:hover {
  opacity: 1;
  color: #f5c542;
}

/* ============================
   HERO CIRCULAR HELIOS
============================ */
#hero {
  padding: 5rem 1rem 4rem;
  display: flex;
  justify-content: center;
}

#hero .circle {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 3px solid #f5c542;
  box-shadow: 0 0 35px rgba(245, 197, 66, 0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  text-align: center;
  padding: 2rem;
}

#hero .circle h2 {
  font-size: 1.8rem;
}

#hero .circle p {
  opacity: 0.85;
  font-size: 1rem;
}

/* BOTÓN HELIOS */
.button.circled {
  border-radius: 999px;
  padding: 0.8rem 1.8rem;
  border: 2px solid #f5c542;
  color: #f5c542;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: 0.2s;
}

.button.circled:hover {
  background: #f5c542;
  color: #000;
}

/* ============================
   UPCOMING EVENTS GRID
============================ */
.events-section {
  width: 100%;
  padding: 0 48px;
  margin-top: 120px !important;
  box-sizing: border-box;
}

.events-header h2 {
  font-size: 3rem !important;
  margin-bottom: 0.5rem;
}

.events-header p {
  font-size: 1.2rem !important;
  opacity: 0.9;
  margin-bottom: 2rem;
}

/* GRID DE 2 COLUMNAS — DINÁMICO Y RESPONSIVE */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  width: 100%;
  max-width: 1400px;
  margin: 48px auto 0;
  padding: 0 32px;
  box-sizing: border-box;
}


.event-card {
  background: rgba(15, 17, 30, 0.9);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
  padding: 24px;
  height: 620px; /* MÁS GRANDE */
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}


.event-card:hover {
  transform: translateY(-6px);
  border-color: #f5c542;
  box-shadow: 0 0 20px rgba(245, 197, 66, 0.25);
}

.event-image {
  width: 100%;
  height: 340px; /* MÁS GRANDE */
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  flex-shrink: 0;
  direction: rtl;
  pointer-events: auto;
}


.event-image img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: top;
  direction: ltr;
  position: relative;
  z-index: 10;
  pointer-events: auto;
  cursor: default !important;
}

.event-image::-webkit-scrollbar {
  width: 6px;
}

.event-image::-webkit-scrollbar-thumb {
  background: #f5c542;
  border-radius: 4px;
}

.promo-link {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.event-content {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  padding: 1.2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.event-content::-webkit-scrollbar {
  width: 6px;
}

.event-content::-webkit-scrollbar-thumb {
  background: #f5c542;
  border-radius: 4px;
}

.event-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
  font-weight: 600;
}

.event-description {
  opacity: 0.8;
  font-size: 1.15rem;
  line-height: 1.6;
}

.buy-button {
  width: 100%;
  padding: 0.7rem;
  background: #f5c542;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
  position: relative;
  z-index: 30;
}

.buy-button:hover {
  background: #ffdd66;
}

/* ============================
   HERO CON VIDEO DE FONDO
============================ */
.hero-video {
  position: relative;
  width: 100%;
  padding: 5rem 1rem 4rem;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.hero-video .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.35);
}

/* ============================
   VIDEO GLOBAL DE FONDO
============================ */
#global-bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -9999;
  pointer-events: none;
  filter: brightness(0.25);
}

/* ============================
   ESPACIADO GLOBAL
============================ */
section {
  margin-top: 80px;
  margin-bottom: 80px;
}

/* ============================
   FOOTER
============================ */
footer {
  font-size: 1.1rem;
  padding: 2rem 0;
  opacity: 0.9;
}

.stardust-banner {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

/* ============================
   LOGO NUEVO + EFECTO
============================ */
.logo-img {
  width: 700px !important;
  height: auto !important;
  display: block;
  margin: 0 auto;


}

/* MENÚ MEJORADO */
#nav a {
  font-size: 1.25rem;          /* más grande */
  font-weight: 600;            /* más grueso */
  letter-spacing: 0.18em;      /* más elegante */
  text-transform: uppercase;
  opacity: 0.9;
  transition: 0.25s ease;
  font-family: "Segoe UI", Arial, sans-serif; /* más estilizado */
}

#nav a:hover {
  opacity: 1;
  color: #f5c542;
  text-shadow: 0 0 12px rgba(245, 197, 66, 0.55); /* brillo elegante */
}

#nav ul {
  gap: 3.2rem; /* más separación entre items */
}



/* LEFT COLUMN — BIG EDITORIAL TEXT */


.stardust-banner .left-col {
  font-size: 3.1rem !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  text-align: left !important;
  opacity: 0.95 !important;
  max-width: 90% !important;
  word-break: break-word !important;
}

.stardust-banner .left-col,
#nav a {
  font-family: "Playfair Display", serif !important;
}


/* TITULARES EDITORIALES */
.banner-title,
.weworkwith-title,
.stardust-banner .left-col,
#nav a {
  font-family: "Josefin Sans", sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
}



.banner-title,
.weworkwith-title {
  text-shadow: 0 0 12px rgba(245, 197, 66, 0.45);
}

/* ANIMACIÓN: ENTRA DESDE LA IZQUIERDA */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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


/* ANIMACIÓN: ENTRA DESDE ABAJO */
.reveal-bottom {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

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



/* TABLET — sigue siendo 2 columnas */
@media (max-width: 1024px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .event-card {
    height: 560px;
  }

  .event-image {
    height: 300px;
  }
}

/* MÓVIL — 1 columna */
@media (max-width: 680px) {
  .events-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .event-card {
    height: auto;
    min-height: 520px;
  }

  .event-image {
    height: 260px;
  }
}


/* TÍTULO DE UPCOMING EVENTS — MISMO ESTILO QUE WHO WE ARE */
.events-title {
  font-family: "Josefin Sans", sans-serif !important;
  font-weight: 600 !important;
  font-size: 2.6rem;
  color: #f5c542;
  letter-spacing: 0.06em !important;
  text-align: left;
  margin-bottom: 1rem;
  text-shadow: 0 0 12px rgba(245, 197, 66, 0.45);
}

/* SUBTÍTULO — MISMO ESTILO QUE EL TEXTO EDITORIAL DEL BANNER */
.events-subtitle {
  font-family: "Josefin Sans", sans-serif !important;
  font-size: 1.45rem;          /* MÁS GRANDE, LEGIBLE, ELEGANTE */
  line-height: 1.75;           /* MISMA VIBRA EDITORIAL */
  opacity: 0.92;
  text-align: left;
  max-width: 900px;            /* UN POCO MÁS ANCHO */
  margin-top: 0.5rem;
}

.events-section .events-header p.events-subtitle {
  font-size: 1.9rem !important;
  line-height: 1.6 !important;
  opacity: 0.95 !important;
  max-width: 900px !important;
}



/* ============================
   MEDIA CARD (GALERÍA)
   ============================ */
.media-card {
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  background: radial-gradient(circle at top, rgba(255,215,0,0.18), rgba(0,0,0,0.9));
  backdrop-filter: blur(4px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.media-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.35);
}

/* IMAGEN / VIDEO */
.media-thumb {
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: cover;
  border-radius: 10px;
}

/* TEXTO DEL ARCHIVO */
.media-label {
  margin-top: 10px;
  text-align: center;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.3rem;
  color: #ffd977;
  letter-spacing: 1px;
  font-weight: 400;
}


/* ============================
   MODAL FULLSCREEN
   ============================ */
.media-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.media-modal.hidden {
  display: none !important;
}

.modal-content {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
}

.hidden {
  display: none !important;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: white;
  cursor: pointer;
  font-weight: bold;
  z-index: 1000000;
}


/* ============================
   TEXTO DEL EVENTO (SLUG PAGE)
   ============================ */
.event-content p {
  margin-bottom: 20px !important;
  font-size: 1.2rem;
  line-height: 1.4;
  color: #ddd;
  letter-spacing: 0.5px;
  font-weight: 300;
}

.event-content h3 {
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
}


/* EVITA QUE EL GRID ESTIRE LAS CARDS */
.events-grid {
  align-items: start !important;
  grid-auto-rows: auto !important;
}

/* ASEGURA QUE LA CARD SOLO MIDA LO QUE SU CONTENIDO */
.media-card {
  height: auto !important;
}


.event-buttons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.trailer-button {
  padding: 10px 18px;
  border-radius: 6px;
  background: #ffd977;
  color: #000;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.trailer-button:hover {
  background: #ffebad;
  transform: scale(1.05);
}

/* CONTENEDOR DE BOTONES */
.event-buttons {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}

/* ESTILO UNIFICADO PARA AMBOS BOTONES */
.buy-button,
.trailer-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  padding: 12px 22px;
  border-radius: 8px;

  background: #f5c542; /* amarillo Stardust */
  color: #030009;

  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.5rem; /* LETRA MÁS GRANDE */
  font-weight: 800;
  letter-spacing: 0.6px;

  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

/* HOVER UNIFICADO */
.buy-button:hover,
.trailer-button:hover {
  background: #c7cbf7;
  transform: scale(1.06);
  box-shadow: 0 0 12px rgba(152, 201, 230, 0.45);
}


/* CARD CON DEGRADADO PANTONE */
.event-card {
  background: linear-gradient(135deg, #0a0a0a 0%, #868689 100%);
  border-radius: 14px;
  padding: 18px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.event-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 22px rgba(71, 27, 80, 0.45);
}

.social-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.social-card {
  padding: 14px 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.social-card:hover {
  background: rgba(255,255,255,0.2);
}

.about-article {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.7;
  color: white;
}

.about-inline-image {
  width: 100%;
  border-radius: 10px;
  margin: 30px 0;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field label {
  color: white;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 1rem;
}

.submit-button {
  padding: 14px 24px;
  background: #ffd700;
  color: black;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.submit-button:hover {
  background: #ffea4d;
}

.about-row {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin: 40px 0;
}

.about-side-image {
  width: 40%;
  border-radius: 10px;
  object-fit: cover;
}

.about-side-text {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}


/* FOOTER BASE */
#footer {
  background: transparent; /* FONDO TRANSPARENTE */
  padding: 80px 20px 40px;
  color: white;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
}

/* CONTENEDOR CENTRAL */
.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

/* CADA COLUMNA */
.footer-column {
  width: 100%;
  max-width: 600px;
  text-align: center;
}

/* TITULOS */
.footer-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #ffd700;
  letter-spacing: 0.5px;
}

/* TEXTO GENERAL */
.footer-column p {
  font-size: 1.15rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 10px;
}

/* LOGO */
.footer-logo {
  width: 180px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.25));
}

/* REDES SOCIALES */
.footer-social-grid {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.footer-social img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  opacity: 0.85;
  transition: 0.3s ease;
}

.footer-social img:hover {
  opacity: 1;
  transform: scale(1.15);
}

/* FOOTER BOTTOM */
.footer-bottom {
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 1rem;
  opacity: 0.75;
  letter-spacing: 0.3px;
}

.circle {
  background: rgba(0, 0, 0, 0.15); /* OSCURECE EL FONDO */
  padding: 40px 50px;
  border-radius: 50%;
  backdrop-filter: blur(6px); /* EFECTO GLASS PREMIUM */
  border: 2px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.button.circled {
  display: inline-block;
  padding: 12px 26px;
  border: 2px solid #ffd700;
  border-radius: 6px;
  color: #ffd700;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: 0.3s ease;
  text-align: center;
  background: rgba(0, 9, 9, 0.25);
  backdrop-filter: blur(4px);
}

.button.circled:hover {
  background: #ffd700;
  color: #000;
  transform: translateY(-2px);
}

.event-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 15px;
}


/* ============================
   FOOTER — TIPOGRAFÍA CON CUERPO
   ============================ */

/* Texto general del footer */
#footer p {
  font-size: 1.25rem !important;   /* MÁS GRANDE */
  font-weight: 500 !important;     /* MÁS CUERPO */
  line-height: 1.8 !important;     /* MÁS AIRE */
  opacity: 1 !important;           /* NADA DE PÁLIDO */
  color: #ffffff !important;       /* BLANCO REAL */
}

/* Títulos del footer */
.footer-title {
  font-size: 1.6rem !important;
  font-weight: 700 !important;
  color: #ffd700 !important;       /* DORADO FUERTE */
  margin-bottom: 18px !important;
  letter-spacing: 0.5px;
}

/* Texto de dirección / brand */
.footer-brand-text {
  font-size: 1.25rem !important;
  font-weight: 500 !important;
  line-height: 1.8 !important;
}

/* Corrección de los teléfonos */
.footer-phone {
  font-size: 1.25rem !important;
  font-weight: 500 !important;
  line-height: 1.8 !important;
}

/* Nombres dentro del bloque de teléfonos */
.footer-phone strong {
  color: #ffd700 !important;
  font-weight: 700 !important;
  font-size: 1.3rem !important;
}

/* ============================
   BANNER — TIPOGRAFÍA CON CUERPO
   ============================ */

/* Título principal */
.banner-title {
  font-size: 3rem !important;       /* MÁS GRANDE */
  font-weight: 800 !important;      /* MÁS PRESENCIA */
  letter-spacing: 1px !important;
  color: #ffd700 !important;        /* DORADO FUERTE */
  margin-bottom: 2.5rem !important;
}

/* Columna izquierda (frase corta) */
.left-col {
  font-size: 2.95rem !important;  /* +15% EXACTO */
  font-weight: 700 !important;
  line-height: 1.6 !important;
  opacity: 1 !important;
  color: #ffffff !important;
}

.stardust-banner .banner-row .left-col {
  font-size: 3rem !important;
  font-weight: 700 !important;
  line-height: 1.6 !important;
  color: #fff !important;
  opacity: 1 !important;
}



/* Texto largo de la derecha */
.right-col p {
  font-size: 1.35rem !important;    /* MÁS GRANDE */
  font-weight: 500 !important;      /* MÁS CUERPO */
  line-height: 1.9 !important;      /* MÁS AIRE */
  opacity: 1 !important;            /* BLANCO REAL */
  color: #ffffff !important;
  margin-bottom: 1.8rem !important; /* MÁS ESPACIADO */
}

/* Negritas dentro del texto */
.right-col strong {
  color: #ffd700 !important;
  font-weight: 700 !important;
}



/* ============================
   PAST EVENTS — YEAR SEPARATORS
============================ */
.year-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0 1rem;
}

.year-divider::before,
.year-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.12);
}

.year-divider::after {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.25),
    rgba(245, 197, 66, 0.65),
    transparent
  );
}

.year-divider span {
  padding: 0 1rem;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
}




/* ==========================================
   TABLET OPTIMIZATION
========================================== */
@media (max-width: 1024px) {

  .logo-img {
    width: 500px !important;
  }

  #nav ul {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  #nav a {
    font-size: 1rem;
  }

  .events-section {
    padding: 0 24px;
  }

  .events-title {
    font-size: 2.2rem !important;
  }

  .events-subtitle,
  .events-section .events-header p.events-subtitle {
    font-size: 1.3rem !important;
  }

  .left-col,
  .stardust-banner .banner-row .left-col {
    font-size: 2.2rem !important;
  }

  .right-col p {
    font-size: 1.15rem !important;
  }

  .event-content h3 {
    font-size: 1.35rem;
  }

  .buy-button,
  .trailer-button {
    font-size: 1.1rem;
  }

  .circle {
    width: 280px;
    height: 280px;
    padding: 30px;
  }

  .about-row {
    flex-direction: column;
  }

  .about-side-image,
  .about-side-text {
    width: 100%;
  }
}


/* ==========================================
   MOBILE OPTIMIZATION
========================================== */
@media (max-width: 768px) {

  #header {
    padding: 2rem 1rem;
  }

  .logo-img {
    width: min(90vw, 380px) !important;
  }

  #nav ul {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  #nav a {
    font-size: 1rem;
  }

  .events-section {
    padding: 0 12px;
    margin-top: 60px !important;
  }

  .events-title {
    font-size: 1.9rem !important;
    text-align: center;
  }

  .events-subtitle,
  .events-section .events-header p.events-subtitle {
    font-size: 1.1rem !important;
    text-align: center;
  }

  .events-grid {
    grid-template-columns: 1fr !important;
    padding: 0 !important;
    gap: 24px;
  }

  .event-card {
    height: auto !important;
    min-height: unset !important;
  }

  .event-image {
    height: auto !important;
    max-height: none !important;
  }

  .event-content {
    padding: 1rem;
  }

  .event-content h3 {
    font-size: 1.2rem;
    line-height: 1.4;
  }

  .event-content p {
    font-size: 1rem !important;
  }

  .event-buttons {
    flex-direction: column;
  }

  .buy-button,
  .trailer-button,
  .button.circled {
    width: 100%;
    font-size: 1rem !important;
  }

  .circle {
    width: 220px;
    height: 220px;
    padding: 20px;
  }

  .circle h2 {
    font-size: 1.3rem;
  }

  .circle p {
    font-size: 0.9rem;
  }

  .banner-title {
    font-size: 2rem !important;
    text-align: center;
  }

  .left-col,
  .stardust-banner .banner-row .left-col {
    font-size: 1.7rem !important;
    text-align: center !important;
  }

  .right-col p {
    font-size: 1rem !important;
    text-align: center;
  }

  .footer-title {
    font-size: 1.3rem !important;
  }

  #footer p,
  .footer-brand-text,
  .footer-phone {
    font-size: 1rem !important;
  }

  .year-divider span {
    font-size: 1.1rem;
    letter-spacing: 0.12em;
  }

  .close-modal {
    font-size: 2rem;
    right: 15px;
  }
}


/* =====================================================
   MOBILE FIXES - ABOUT US + SOCIAL MEDIA
   ===================================================== */

@media (max-width: 768px) {

  /* WHO WE ARE / ABOUT ROWS */

  .about-row {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .about-side-text {
    width: 100%;
    max-width: 100%;
  }

  .about-side-text h3,
  .about-side-text h4 {
    text-align: center;
  }

  .about-side-image,
  .about-inline-image {
    width: 100%;
    max-width: 500px;
    height: auto;
  }

  /* SOCIAL SECTION */

  .social-grid {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding: 0 1rem 1rem;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
  }

  .social-card {
    flex: 0 0 auto;
    scroll-snap-align: center;
  }

  .social-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
  }

  .social-bar .events-title {
    font-size: 2rem;
    text-align: center;
    line-height: 1.2;
  }

}


/* =====================================================
   DESKTOP SOCIAL FIX
   ===================================================== */

.social-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 0 2rem;
}

.social-card {
  flex-shrink: 0;
}

/* =========================================================
   GALLERY PAGE
   ========================================================= */

.gallery-filter {
  width: min(1400px, 94%);
  margin: 20px auto 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.gallery-filter-label {
  color: #f4f4f4;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.gallery-select-wrapper {
  position: relative;
  width: min(520px, 100%);
}

.gallery-select {
  width: 100%;
  min-height: 58px;
  padding: 0 58px 0 22px;

  border: 1px solid rgba(228, 184, 73, 0.65);
  border-radius: 12px;

  background:
    linear-gradient(
      135deg,
      rgba(35, 29, 13, 0.98),
      rgba(12, 12, 12, 0.98)
    );

  color: #ffffff;

  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  cursor: pointer;

  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.gallery-select:hover {
  border-color: #f1c84b;

  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.45),
    0 0 14px rgba(228, 184, 73, 0.12);
}

.gallery-select:focus {
  outline: none;
  border-color: #ffd45a;

  box-shadow:
    0 0 0 3px rgba(228, 184, 73, 0.18),
    0 10px 30px rgba(0, 0, 0, 0.45);
}

.gallery-select option {
  background: #171717;
  color: #ffffff;
}

.gallery-select-arrow {
  position: absolute;
  top: 50%;
  right: 22px;

  width: 11px;
  height: 11px;

  border-right: 2px solid #e4b849;
  border-bottom: 2px solid #e4b849;

  transform: translateY(-70%) rotate(45deg);

  pointer-events: none;
}

.gallery-groups {
  width: min(1400px, 94%);
  margin: 0 auto;
  padding: 20px 0 80px;
}

.artist-section {
  margin-bottom: 70px;
  scroll-margin-top: 110px;
}

.artist-section[hidden] {
  display: none;
}

.artist-separator {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.artist-separator span {
  height: 1px;
  flex: 1;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(228, 184, 73, 0.7),
      transparent
    );
}

.artist-separator h2 {
  margin: 0;

  color: #e4b849;

  text-align: center;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

.gallery-item {
  display: block;
  height: 260px;
  overflow: hidden;

  border: 1px solid rgba(228, 184, 73, 0.16);
  border-radius: 10px;

  background: #111;

  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.gallery-item:hover {
  border-color: rgba(228, 184, 73, 0.55);

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.45),
    0 0 14px rgba(228, 184, 73, 0.08);

  transform: translateY(-3px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;

  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
  opacity: 0.94;
}


/* =========================================================
   GALLERY — MOBILE
   ========================================================= */

@media (max-width: 700px) {
  .gallery-filter {
    width: 92%;
    margin: 15px auto 38px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .gallery-filter-label {
    font-size: 0.95rem;
  }

  .gallery-select-wrapper {
    width: 100%;
  }

  .gallery-select {
    min-height: 54px;
    padding-left: 18px;
    padding-right: 52px;
    font-size: 0.95rem;
  }

  .gallery-select-arrow {
    right: 20px;
  }

  .gallery-groups {
    width: 92%;
  }

  .artist-section {
    margin-bottom: 50px;
  }

  .artist-separator {
    gap: 12px;
  }

  .artist-separator h2 {
    font-size: 1.3rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .gallery-item {
    height: 180px;
    border-radius: 7px;
  }
}


/* =========================================================
   GALLERY — VERY SMALL SCREENS
   ========================================================= */

@media (max-width: 390px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 230px;
  }
}


/* =========================================
   PRE-SALE PAGE
========================================= */

.presale-section {
  padding-bottom: 5rem;
}

.presale-section .events-subtitle {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.presale-section .events-subtitle strong {
  color: inherit;
  font-weight: 700;
}

.presale-show {
  width: min(100%, 680px);
  margin: 0 auto 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.presale-show-image {
  width: 180px;
  height: 240px;
  display: block;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
  flex-shrink: 0;
}

.presale-show-info {
  flex: 1;
}

.presale-show-info h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.35;
}

.presale-label {
  margin: 0 0 0.4rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}

.presale-privacy {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* FORCE SMALL PRE-SALE POSTER ON MOBILE */
@media screen and (max-width: 768px) {
  .presale-show {
    width: 100% !important;
    max-width: 680px !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 16px !important;
  }

  .presale-show-image {
    width: 180px !important;
    min-width: 180px !important;
    max-width: 180px !important;

    height: 230px !important;
    min-height: 230px !important;
    max-height: 230px !important;

    object-fit: cover !important;
    object-position: top center !important;

    flex: none !important;
    display: block !important;
    margin: 0 auto !important;
  }
}

/* =========================================
   PRE-SALE OPTIONAL FIELDS
========================================= */

.presale-extra-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.optional-label {
  margin-left: 4px;
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.65;
}

.form-field select {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  font-family: inherit;
}

.form-field select option {
  background: #171717;
  color: white;
}

@media screen and (max-width: 600px) {
  .presale-extra-fields {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}