/* =========================================
   ESTILOS GENERALES
   ========================================= */
body {
  margin: 0;
  font-family: 'Righteous', cursive;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
  position: relative;
  color: white;
  /* IMPORTANTE: Evita el scroll horizontal en toda la web */
  max-width: 100%;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../Images/TELA2025.png') repeat;
  background-size: auto;
  filter: brightness(0.5);
  z-index: -1;
}

/* =========================================
   NAVEGACIÓN (HEADER)
   ========================================= */
nav {
  width: 100%;
  background-color: #3658b3;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0 30px;
  transition: color 0.2s, transform 0.2s;
}

nav a:hover {
  color: #ffcc00;
  transform: scale(1.05);
}

/* =========================================
   TEXTOS Y TÍTULOS
   ========================================= */
.header-title {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 100px; /* Espacio para la barra nav fija */
  margin-bottom: 10px;
  text-transform: uppercase;
}

.header-title .gradient {
  background: linear-gradient(90deg, violet, deeppink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

.header-title .gradient:hover {
  opacity: 0.9;
}

p.description {
  max-width: 600px;
  font-size: 1.2rem;
  margin: 0 auto 20px auto;
  text-align: justify;
  color: white;
  text-transform: uppercase;
  padding: 0 10px; /* Para que no toque bordes en celus */
}

.section-title {
  color: #ffcc00;
  text-align: center;
  margin: 30px 0 15px;
  font-size: 1.5rem;
}

.numbers-highlight {
  text-align: center;
  font-size: 1.3rem;
  color: #ffcc00;
  margin: 20px 0;
}

/* =========================================
   BOTONES
   ========================================= */
.expo-button {
  display: inline-block;
  margin-left: 8px;
  background: linear-gradient(90deg, violet, deeppink);
  color: white;
  font-size: 0.9rem;
  padding: 5px 12px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.expo-button:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

a.button {
  display: inline-block;
  background-color: #ffcc00;
  color: black;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, background 0.2s ease;
  margin: 10px 0;
}

a.button:hover {
  background-color: #ffd633;
  transform: scale(1.05);
}

/* =========================================
   REDES SOCIALES
   ========================================= */
.socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
  max-width: 600px;
}

.socials span {
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  text-align: justify;
}

.socials a.social-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1.2rem;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  transition: transform 0.2s ease, background 0.2s ease;
}

.socials a.social-button img {
  width: 24px;
  height: 24px;
}

.socials a.instagram-button {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.socials a.instagram-button:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.socials a.discord-button {
  background-color: #5865F2;
}

.socials a.discord-button:hover {
  background-color: #4752C4;
  transform: scale(1.05);
}

/* =========================================
   ACORDEÓN (FAQ SECTION)
   ========================================= */
.faq-section {
  background: rgba(0, 0, 0, 0.55);
  border-radius: 20px;
  padding: 20px;
  max-width: 600px;
  width: 90%;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  box-sizing: border-box; /* Asegura que el padding no agrande el ancho */
}

details {
  border-top: 1px solid #6ee2ff;
  border-bottom: 1px solid #6ee2ff;
  padding: 15px 0;
  margin-bottom: 10px;
}

summary {
  list-style: none;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #b8e6ff;
}

summary::after {
  content: "+";
  font-size: 1.5rem;
  color: #6ee2ff;
  transition: transform 0.3s ease;
}

details[open] summary::after {
  content: "–";
  transform: rotate(180deg);
}

details p {
  margin: 10px 0 0 0;
  color: #ccc;
  line-height: 1.5;
  text-align: justify;
}

/* Elementos dentro del acordeón */
.main-image {
  width: 80%;
  max-width: 700px;
  margin: 20px 0;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.youtube-embed {
  max-width: 800px;
  width: 100%;
  margin: 30px auto;
}

/* =========================================
   GALERÍA DE FOTOS
   ========================================= */
.gallery-grid {
  max-width: 1200px;
  width: 100%;
  margin: 50px auto;
  /* Eliminamos padding lateral fijo grande para evitar desborde */
  padding: 0 20px; 
  box-sizing: border-box;
  display: grid;
  gap: 20px;
  /* Responsive automático: columnas mínimo 300px o lo que entre */
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.gallery-image {
  width: 100%;
  height: 300px;          /* Altura fija para uniformidad */
  object-fit: cover;      /* Recorta manteniendo proporción */
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.03);
}

footer {
  font-size: 0.9rem;
  color: white;
  margin-top: 40px;
}

/* =========================================
   MEDIA QUERIES (RESPONSIVE CELULARES)
   ========================================= */

/* Tablets y Celulares grandes */
@media (max-width: 768px) {
  
  /* Ajuste de Navegación: permite que se parta en dos líneas */
  nav {
    flex-wrap: wrap;
    padding: 10px 0;
    height: auto;
  }

  nav a {
    margin: 5px 15px; /* Reduce espacio lateral */
    font-size: 1rem;
    white-space: nowrap;
  }

  /* Ajuste de Título para que baje si el menú ocupa más espacio */
  .header-title {
    margin-top: 130px; 
    font-size: 1.6rem;
    padding: 0 10px;
  }
}

/* Celulares Estándar (menos de 600px) */
@media (max-width: 600px) {
  
  /* Galería: columnas más angostas para que entren en pantallas chicas */
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    padding: 0 10px;
  }

  /* Textos y contenedores */
  p.description {
    font-size: 1rem;
  }

  .faq-section {
    width: 95%;
    padding: 15px;
  }
  
  /* Imágenes dentro del texto */
  .main-image {
    width: 100%; /* Ocupa todo el ancho en celus */
  }

  /* Listas dentro del acordeón */
  ul {
    padding-left: 20px;
  }
  
  /* Nav botones más chicos */
  nav a {
    font-size: 0.9rem;
    margin: 5px 8px;
  }
}


/* =========================================
   ESTILOS PARA PÁGINA ABOUT (¿QUÉ ES SONIC FEST?)
   ========================================= */

/* Contenedor principal tipo "Badniks" - fondo oscuro con blur */
.about-content {
  background: rgba(0, 0, 0, 0.75);
  border-radius: 20px;
  padding: 40px 30px;
  max-width: 900px;
  width: 90%;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 25px rgba(0,0,0,0.7);
  margin: 30px auto 50px auto;
  text-align: justify;
  text-transform: uppercase;
  animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.about-content p {
  line-height: 1.7;
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: white;
}

.about-content strong {
  color: #ffcc00;
}

/* Títulos dentro del about */
.about-content h2 {
  color: #ffcc00;
  text-align: center;
  font-size: 1.8rem;
  margin: 40px 0 20px;
  border-bottom: 2px solid #ffcc00;
  padding-bottom: 10px;
}

.about-content h3 {
  color: #6ee2ff;
  font-size: 1.4rem;
  margin: 30px 0 15px;
  text-shadow: 0 0 8px rgba(110, 226, 255, 0.4);
}

/* Imágenes en about */
.about-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.6);
  border: 2px solid rgba(255,255,255,0.1);
  transition: transform 0.3s ease;
}

.about-image:hover {
  transform: scale(1.02);
}

/* Timeline de evolución */
.timeline {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.timeline li {
  margin-bottom: 20px;
  border-left: 3px solid #ffcc00;
  padding-left: 20px;
  background: rgba(255,255,255,0.05);
  padding: 15px;
  border-radius: 0 10px 10px 0;
}

/* Enlaces con efecto glow (para about) */
.glow-link {
  text-decoration: none;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.glow-web { color: #ffcc00; text-shadow: 0 0 8px #ffcc00; }
.glow-web:hover { color: #000; background: #ffcc00; box-shadow: 0 0 15px #ffcc00; }

.glow-ig { color: #fd5d93; text-shadow: 0 0 8px #ff00cc; }
.glow-ig:hover { color: #fff; background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); box-shadow: 0 0 15px #ff00cc; }

.glow-red { color: #ff4d4d; text-shadow: 0 0 8px red; }
.glow-red:hover { color: #fff; background: #ff0000; box-shadow: 0 0 15px red; }

/* Título grande con glow (opcional, si querés uno más épico) */
.about-title {
  color: #ffcc00;
  font-size: 3rem;
  margin-top: 100px;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(255, 204, 0, 0.8);
  letter-spacing: 2px;
  animation: glowPulse 3s infinite alternate;
}

@keyframes glowPulse {
  from { text-shadow: 0 0 10px rgba(255, 204, 0, 0.5); }
  to { text-shadow: 0 0 25px rgba(255, 204, 0, 1); }
}

/* Responsive para about */
@media (max-width: 768px) {
  .about-title { font-size: 2.4rem; margin-top: 90px; }
  .about-content { padding: 30px 20px; }
  .about-content h2 { font-size: 1.6rem; }
}

@media (max-width: 600px) {
  .about-title { font-size: 2rem; }
  .about-content { padding: 25px 15px; }
}
















/* =========================================
   ESTILOS ESPECÍFICOS PARA PÁGINA THE BADNIKS
   (Modificado para no romper el resto del sitio)
   ========================================= */

/* IMPORTANTE: Para que estos estilos funcionen, 
   se agrega class="page-badniks" al tag <body> 
   en archivos HTML de Badniks.
*/

/* Fondo específico de Badniks - Solo aplica si existe la clase .page-badniks */
body.page-badniks::before {
  background: url('../Images/Badniks/badniks.jpg') repeat !important;
  background-size: 500px 500px !important;
}

/* Barra de navegación negra - Solo en Badniks */
body.page-badniks nav {
  background-color: #000000 !important;
}

/* Título principal con glow amarillo - Solo en Badniks */
body.page-badniks .header-title {
  color: #ffcc00;
  font-size: 3rem;
  margin-top: 100px;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
  letter-spacing: 2px;
}

/* Contenedor principal estilo Badniks */
.content-section {
  background: rgba(0, 0, 0, 0.75);
  border-radius: 20px;
  padding: 40px;
  max-width: 800px;
  width: 90%;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.6);
  margin-bottom: 30px;
  text-align: justify;
  color: white;
  text-transform: uppercase;
  animation: fadeIn 1s ease-out forwards;
}

.content-section h2 {
  color: #ffcc00;
  text-align: center;
  font-size: 2rem;
  margin-top: 40px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 0px #000;
  border-bottom: 2px solid #ffcc00;
  padding-bottom: 10px;
}

.content-section h3 {
  color: #6ee2ff;
  text-align: center;
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 10px;
}

/* Imágenes de la banda */
.band-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 25px auto;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Links con efecto glow específicos */
.glow-yt {
  color: #ff4d4d;
  text-shadow: 0 0 8px red;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  padding: 0 5px;
  display: inline-block;
}

.glow-yt:hover {
  color: #fff;
  background-color: #ff0000;
  box-shadow: 0 0 15px red;
  border-radius: 5px;
}

/* Acordeón de Shows (Cambiamos el nombre para no chocar con el general) */
.shows-container {
  margin-top: 40px;
  border-top: 1px solid #444;
  padding-top: 20px;
}

.shows-container details {
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  transition: background-color 0.3s;
  border: none; /* Quita el borde celeste del FAQ general */
}

.shows-container details:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.shows-container summary {
  list-style: none;
  padding: 15px 20px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #e0e0e0;
}

.shows-container summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffcc00;
  transition: transform 0.3s;
}

.shows-container details[open] summary::after {
  content: '–';
  transform: rotate(180deg);
}

/* Videos incrustados */
.video-list {
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.video-list .youtube-embed iframe {
  width: 100%;
  height: 315px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: block;
}

/* Botón volver */
a.button-back {
  display: inline-block;
  background-color: #ffcc00;
  color: black;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, background 0.2s ease;
  margin-top: 30px;
}

a.button-back:hover {
  background-color: #ffd633;
  transform: scale(1.05);
}

/* Media queries específicas para Badniks */
@media (max-width: 600px) {
  body.page-badniks .header-title { 
    font-size: 2rem; 
    margin-top: 80px; 
  }
  .content-section { 
    padding: 20px; 
  }
  .video-list .youtube-embed iframe {
    height: 250px;
  }
}




/* =========================================
   ESTILOS ESPECÍFICOS PARA SONIC EXPO FEST
   ========================================= */

/* Fondo específico para Expo */
body.page-expo::before {
  background: url('../Images/EXPO.png') repeat !important;
  background-size: auto !important;
}

/* Barra de navegación Roja para Expo */
body.page-expo nav {
  background-color: #ff003c !important;
}

/* Título con animación de brillo */
body.page-expo .header-title {
  font-size: 2.5rem;
  color: #ffcc00;
  text-shadow: 0 0 10px rgba(255,204,0,0.7);
  animation: glowTitle 3s ease-in-out infinite alternate;
}

@keyframes glowTitle {
  from { text-shadow: 0 0 10px rgba(255,204,0,0.5); }
  to { text-shadow: 0 0 25px rgba(255,255,100,1); }
}

/* Logo de la Expo */
.expo-logo {
  width: 250px;
  max-width: 80%;
  margin: 20px 0;
  filter: drop-shadow(0 0 10px rgba(255,204,0,0.6));
}

/* Ajustes del Acordeón para que sea Amarillo (estilo Expo) */
body.page-expo details {
  border-top: 1px solid #ffcc00;
  border-bottom: 1px solid #ffcc00;
}

body.page-expo summary {
  color: #ffcc00;
}

body.page-expo summary::after {
  color: #ffcc00;
}

/* Media Query específica para el título de Expo en celulares */
@media (max-width: 600px) {
  body.page-expo .header-title {
    font-size: 1.8rem;
    margin-top: 80px;
  }
}


/* =========================================
   REFUERZO PARA GALERÍAS Y INFO DE EVENTOS
   ========================================= */

/* Para que las imágenes de la galería no se deformen y midan lo mismo */
.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover; /* Recorta la imagen para llenar el espacio sin estirarse */
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

/* Estilos para el texto dentro del desplegable de INFO */
.info-list p {
    margin-bottom: 12px !important;
    border-bottom: 1px dashed rgba(255, 204, 0, 0.3);
    padding-bottom: 8px;
    color: #ccc;
    line-height: 1.6;
}

.info-list p:last-child {
    border-bottom: none;
}

/* Caja de resaltado para fechas o frases importantes */
.highlight-box {
    background: rgba(255, 204, 0, 0.1);
    padding: 15px;
    border-radius: 12px;
    margin: 15px 0;
    font-style: italic;
    text-align: center;
    color: #ffcc00;
    border: 1px solid rgba(255, 204, 0, 0.2);
}


