/* gira2026.css */

:root {
  --primary-color: #dc3545;
  --secondary-color: #343a40;
  --tm-color: #024cdf;
  --text-color: #333;
  --light-gray: #f8f9fa;
}

body {
  background-color: var(--light-gray);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text-color);
}

.header-container {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 0 auto 1em;
}

.header-image {
  max-width: 70%;
  max-height: 400px;
}

.header-image-poster .tour-banner {
  background-color: var(--primary-color);
  color: white;
  padding: 15px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 1.5rem;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-title,
.page-title-gray {
  background-color: var(--primary-color);
  color: #fff;
  margin-bottom: 10px;
  font-weight: 700;
  text-align: center;
  font-size: 2.5rem;
}
.page-title-gray {
  background-color: var(--secondary-color);
  color: #999;
}

.page-subtitle {
  color: var(--secondary-color);
  margin-bottom: 30px;
  text-align: center;
  font-size: 1.2rem;
  font-style: italic;
}

.band-container,
.concerts-container,
.poster-container,
.advert-container {
  margin-top: 2em;
  margin-bottom: 50px;
  text-align: center;
}

/* Banda */

#banda {
  color: #fff;
}
/* PRINCIPALES */
.principales {
  display: flex;
  justify-content: center;
  gap: 120px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.miembro {
  position: relative;
  text-align: center;
}
.miembro::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -140px;
  transform: translateX(-50%);
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 220, 0.5),
    rgba(255, 255, 220, 0.15),
    transparent 70%
  );
  filter: blur(35px);
  transition: 0.5s;
  z-index: -1;
}
.miembro:hover::before {
  transform: translateX(-50%) scale(1.15);
}
.foto {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 5px solid #fff;
  transition: 0.4s;
}
.foto:hover {
  box-shadow:
    0 0 15px #fff,
    0 0 35px rgba(255, 255, 200, 0.8),
    0 0 90px rgba(255, 255, 200, 0.4);
}
.foto img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition:
    filter 0.7s ease,
    transform 0.7s ease;
}

.foto:hover img {
  filter: grayscale(0%);
  transform: scale(1.08);
}
.miembro h2 {
  margin-top: 2rem;
  color: #fff;
}
.cargo {
  color: var(--muted);
  margin-top: 6px;
}

/* TITULOS */
.titulo-seccion {
  text-align: center;
  margin-top: 2em;
  margin-bottom: 30px;
}

/* COLABORADORES */
.musicos {
  display: inline-flex;
  gap: 25px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 5px;
  color: #aaa;
}
.musicos::-webkit-scrollbar {
  height: 10px;
}
.musicos::-webkit-scrollbar-thumb {
  background: #666;
  border-radius: 20px;
}
.musico {
  flex: 0 0 210px;
  background: var(--panel);
  border: 1px solid #333;
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  scroll-snap-align: center;
  transition: 0.35s;
}
.musico:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}
.musico-foto {
  width: 100px;
  height: 100px;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
}
.musico-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition:
    filter 0.6s ease,
    transform 0.6s ease;
}
.musico:hover .musico-foto img {
  filter: grayscale(0%);
  transform: scale(1.08);
}
.musico h3 {
  margin: 15px 0 10px;
  font-size: 1.4rem;
}
.musico .info {
  opacity: 0.65;
  transition: 0.3s;
}
.musico:hover .info {
  opacity: 1;
}

.musico .info strong,
.musico .info p {
  font-size: 1rem;
}

.colaboradores {
  color: #aaa;
}

/* CONCLUSIONES */
.conclusiones {
  margin-top: 50px;
  display: none;
}
.texto {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
  min-height: 220px;
  line-height: 1.8;
  color: #ddd;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .principales {
    flex-direction: column;
    align-items: center;
    gap: 70px;
  }
}
@media (max-width: 600px) {
  .foto {
    width: 220px;
    height: 220px;
  }
  .miembro::before {
    width: 260px;
    height: 260px;
  }
}

/* Conciertos */

.concert-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.concert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.concert-date {
  background-color: var(--secondary-color);
  color: white;
  padding: 12px 15px;
  border-radius: 10px 10px 0 0;
  font-weight: bold;
  font-size: 1.1rem;
}

.concert-info {
  padding: 20px;
  background-color: white;
  border-radius: 0 0 10px 10px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.concert-info.disabled {
  background-color: #cccccc;
}

.concert-city {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--secondary-color);
}

.concert-venue {
  color: #6c757d;
  margin-bottom: 15px;
  font-size: 1.1rem;
  flex-grow: 1;
}

.sale-date {
  font-size: 0.95rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 500;
}

.ticketmaster-info {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 15px;
}

.btn-tickets {
  background-color: var(--tm-color);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.btn-tickets:hover {
  background-color: #c82333;
  color: white;
  transform: scale(1.05);
}

.btn-tickets.disabled {
  background-color: #6c757d;
  cursor: not-allowed;
}

.social-links a {
  color: white;
  font-size: 1.5rem;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-title {
    font-size: 2rem;
  }

  .page-subtitle {
    font-size: 1.1rem;
  }

  .tour-banner {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .header-image {
    max-height: 300px;
  }

  .page-title {
    font-size: 1.8rem;
  }

  .concert-city {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .header-image {
    max-height: 250px;
  }

  .page-title {
    font-size: 1.6rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  .tour-banner {
    font-size: 1.1rem;
    padding: 12px;
  }

  .concert-date {
    font-size: 1rem;
  }

  .concert-city {
    font-size: 1.2rem;
  }

  .concert-venue {
    font-size: 1rem;
  }

  .sale-date {
    font-size: 0.9rem;
  }
}

iframe {
  display: block;
  margin: 0 auto;
  /* Centrado horizontal */
  width: 90%;
  /* Ancho adaptable (ajusta según necesidad) */
  max-width: 1000px;
  /* Máximo ancho permitido (opcional) */
  height: 600px;
  /* Altura fija o ajustable (cambia según el caso) */
  border: none;
  /* Elimina bordes no deseados */
  box-sizing: border-box;
  /* Evita desbordamientos por padding/border */
}

/* ============================================================
   PESTAÑAS
   ============================================================ */

.music-section {
  width: 100%;
  margin: 0 auto;
}

/* Contenedor de las pestañas */

/* =====================================================
       PESTAÑAS
    ===================================================== */

.tabs {
  display: flex;

  background: #0d0d0d;

  border-bottom: 1px solid var(--border);
}

.tab-button {
  flex: 1;

  padding: 18px 12px;

  border: none;

  background: transparent;

  color: var(--muted);

  font-size: 0.9rem;

  font-weight: bold;

  cursor: pointer;

  transition:
    color 0.25s ease,
    background 0.25s ease;
}
.tab-button:hover {
  color: white;

  background: rgba(255, 255, 255, 0.04);
}

.tab-button.active {
  color: var(--accent);

  background: rgba(213, 167, 70, 0.06);

  box-shadow: inset 0 -3px 0 var(--accent);
}

.tab-title {
  margin-bottom: 20px;

  font-size: 1.2rem;
}

/* Contenido */

.tab-content {
  display: none;
}

/* Contenido activo */

.tab-content.active {
  display: block;
  padding-top: 4rem;
}

/* ============================================================
   GALERÍA DE VÍDEOS
   ============================================================ */

.video-grid {
  width: 100%;
  max-width: 1200px;
  margin: 2em auto 0;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5em 2em;
}

/* TARJETA */

.video-card {
  text-align: center;
}

/* VÍDEO */

.video-card video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;

  margin: 0 auto;

  border: none;
  border-radius: 4px;

  background: #000;
}

/* TÍTULO */

.video-title {
  margin-top: 0.9em;

  font-family: Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;

  color: var(--primary-color);

  text-align: center;
  text-transform: uppercase;
}

.video-title .date-copyright {
  color: gray;
  font-size: 0.7rem;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
/* EFECTO SUTIL AL PASAR EL RATÓN */

.video-card:hover .video-title {
  color: var(--primary-color);
}

/* EN PANTALLAS PEQUEÑAS */

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 2em;
  }
}

#advert video {
  display: block;
  margin: 2em auto 0;
}

/* ============================================================
   GALERÍA DE IMÁGENES
   ============================================================ */

.image-grid {
  width: 100%;
  max-width: 1200px;
  margin: 2em auto 0;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
}

.image-item {
  text-align: center;
  overflow: hidden;
}

.image-item img {
  display: block;

  width: 100%;
  height: auto;

  cursor: pointer;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.image-item img:hover {
  transform: scale(1.025);
  opacity: 0.9;
}

@media (max-width: 768px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1em;
  }
}

@media (max-width: 480px) {
  .image-grid {
    grid-template-columns: 1fr;
  }
}
