/* 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 {
  background-color: var(--primary-color);
  color: #fff;
  margin-bottom: 10px;
  font-weight: 700;
  text-align: center;
  font-size: 2.5rem;
}

.page-subtitle {
  color: var(--secondary-color);
  margin-bottom: 30px;
  text-align: center;
  font-size: 1.2rem;
  font-style: italic;
}

.concerts-container {
  margin-top: 2em;
  margin-bottom: 50px;
}

.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 */
}
