/* VARIABLES DE COLORES */
:root {
  --bg-color: #17120f;        /* Fondo oscuro de la web */
  --card-bg: #201915;         /* Fondo de las cajas de contenido */
  --primary-color: #c0aa83;    /* Color dorado/beige de bordes y títulos */
  --accent-color: #8c2e24;     /* Color rojo/marrón para fechas y acentos */
  --text-light: #eae0cf;       /* Texto claro principal */
  --text-muted: #a39582;      /* Texto secundario opaco */
  --nav-bg: #dfceb1;          /* Fondo beige del menú de navegación */
  --nav-text: #2f231a;        /* Texto oscuro dentro del menú */
}

/* RESET GENERAL */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 15px;
}

body {
  background-color: var(--bg-color);
  color: var(--text-light);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #fff;
}

/* CONTENEDOR PRINCIPAL */
.site-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* BARRA SUPERIOR */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 12px;
  border-bottom: 1px solid rgba(192, 170, 131, 0.1);
}

.lang-selector {
  font-style: italic;
}

.top-socials a {
  margin-left: 15px;
  font-size: 14px;
  color: var(--primary-color);
}

/* CABECERA Y LOGO */
.header-logo-area {
  text-align: center;
  padding: 30px 0;
}

/* LOGOTIPO ORIGINAL EN IMAGEN */
.main-logo-img {
  max-width: 100%;
  height: 160px; /* Altura equivalente al texto y tagline anteriores */
  width: auto;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 600px) {
  .main-logo-img {
    height: 110px; /* Reducción proporcional en teléfonos */
  }
}

/* MENÚ DE NAVEGACIÓN */
.nav-bar {
  background-color: var(--nav-bg);
  padding: 12px 0;
  margin-bottom: 10px;
}

.nav-bar ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
}

.nav-bar li {
  color: var(--nav-text);
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
}

.nav-bar a {
  color: var(--nav-text);
  padding: 0 15px;
}

.nav-bar a:hover {
  color: var(--accent-color);
}

/* REPRODUCTOR DE MUESTRA */
.audio-player-bar {
  background-color: #2b1f18;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  font-size: 11px;
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.player-btn {
  background: transparent;
  border: none;
  color: var(--accent-color);
  cursor: pointer;
  margin-left: 15px;
  font-size: 12px;
}

/* PORTADA SLIDESHOW */
.hero-banner {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin-bottom: 40px;
  border: 1px solid var(--primary-color);
}

.hero-banner .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}

.hero-banner .slide.active {
  opacity: 1;
  z-index: 2;
}

/* TÍTULO DE SECCIÓN */
.section-title-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.title-decor {
  font-size: 1.8rem;
  color: var(--accent-color);
  margin: 0 15px;
}

.main-section-title {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  letter-spacing: 4px;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 10px 25px;
}

/* TARJETAS CON DOBLE BORDE */
.card-outer {
  background-color: var(--card-bg);
  border: 1px solid var(--primary-color);
  padding: 10px;
  height: 100%;
}

.card-inner {
  border: 1px solid rgba(192, 170, 131, 0.3);
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.card-title {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--primary-color);
  letter-spacing: 2px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--accent-color);
  padding-bottom: 5px;
}

/* BOTONES OUTLINE */
.btn-outline {
  display: inline-block;
  border: 1px solid var(--accent-color);
  background: transparent;
  color: var(--text-light);
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  padding: 8px 18px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  margin-top: 15px;
  align-self: center;
}

.btn-outline:hover {
  background-color: var(--accent-color);
  color: #fff;
}

/* GRID DE 3 COLUMNAS */
.grid-3-cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 35px;
}

@media (max-width: 900px) {
  .grid-3-cols {
    grid-template-columns: 1fr;
  }
}

/* Instagram mock grid */
.instagram-mock-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 15px;
}

.ig-photo {
  width: 100%;
  padding-bottom: 100%;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(192, 170, 131, 0.2);
}

.ig-link {
  display: block;
  width: 100%;
}

/* Biografía Resumen */
.biografia-box {
  background-size: cover;
  background-position: center;
  min-height: 350px;
  color: #fff;
}

.biografia-box .card-inner {
  justify-content: flex-end;
  align-items: center;
}

.biografia-text-alert {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--accent-color);
  text-align: center;
  margin-bottom: 10px;
}

/* Shows Resumen */
.show-item {
  display: flex;
  margin-bottom: 15px;
  border-bottom: 1px dashed rgba(192, 170, 131, 0.3);
  padding-bottom: 15px;
}

.show-item:last-of-type {
  border-bottom: none;
}

.show-date {
  text-align: center;
  margin-right: 15px;
  border-right: 1px solid var(--primary-color);
  padding-right: 15px;
}

.show-month {
  color: var(--accent-color);
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: bold;
}

.show-day {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.show-details h4 {
  font-size: 14px;
  color: #fff;
}

.show-details p {
  font-size: 12px;
  font-style: italic;
  color: var(--text-muted);
}

/* Grid de 2 Columnas */
.grid-2-cols {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
  margin-bottom: 35px;
}

@media (max-width: 900px) {
  .grid-2-cols {
    grid-template-columns: 1fr;
  }
}

.discografia-content {
  display: flex;
  gap: 15px;
  align-items: center;
}

.album-cover {
  width: 120px;
  height: 120px;
  background-color: #333;
  border: 1px solid var(--primary-color);
  background-size: cover;
}

.album-info h3 {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: #fff;
}

.album-info p {
  color: var(--accent-color);
  font-size: 13px;
  letter-spacing: 1px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Grid Completo de Fotos */
.grid-full-width {
  width: 100%;
  margin-bottom: 40px;
}

.photo-gallery-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin-top: 15px;
}

.gallery-thumb {
  width: 100%;
  height: 150px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--primary-color);
  transition: transform 0.2s ease;
}

.gallery-thumb:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .photo-gallery-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* SECCIONES COMPLETAS DETALLADAS */
.detailed-section {
  margin-bottom: 50px;
}

/* BIOGRAFÍA DETALLADA */
.bio-detail-container {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-top: 20px;
}

.bio-image {
  flex: 1;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--primary-color);
}

.bio-text {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.bio-text h4 {
  font-family: 'Cinzel', serif;
  color: var(--primary-color);
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .bio-detail-container {
    flex-direction: column;
  }
  .bio-image {
    width: 100%;
  }
}

/* ========================================== */
/*    ESTILOS NUEVOS: SECCIÓN DE SERVICIOS    */
/* ========================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 40px;
}

.service-card {
  background-color: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(192, 170, 131, 0.2);
  padding: 25px 20px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-color);
}

.service-icon {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.service-card h4 {
  font-family: 'Cinzel', serif;
  color: var(--primary-color);
  font-size: 1rem;
  margin-bottom: 15px;
  min-height: 48px; /* Mantiene la alineación del texto */
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Estilos para el Repertorio */
.repertoire-area {
  border-top: 1px solid rgba(192, 170, 131, 0.2);
  padding-top: 30px;
  margin-top: 20px;
}

.repertoire-title {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 5px;
}

.repertoire-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  margin-bottom: 25px;
}

.repertoire-list {
  column-count: 3;
  column-gap: 30px;
  list-style: none;
  padding: 0 15px;
}

.repertoire-list li {
  padding: 6px 0;
  border-bottom: 1px dotted rgba(192, 170, 131, 0.15);
  font-size: 0.85rem;
  color: var(--text-light);
}

.repertoire-list li.and-much-more {
  font-family: 'Cinzel', serif;
  font-weight: bold;
  color: var(--accent-color);
  border-bottom: none;
  letter-spacing: 1px;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .repertoire-list {
    column-count: 2;
  }
}

@media (max-width: 550px) {
  .repertoire-list {
    column-count: 1;
  }
}

/* REPRODUCTOR DE ÁLBUM */
.album-player-container {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

.album-aside {
  flex: 0.8;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.album-cover-large {
  width: 220px;
  height: 220px;
  background-color: #333;
  border: 1px solid var(--primary-color);
  background-size: cover;
  margin-bottom: 15px;
}

.album-aside h4 {
  font-family: 'Cinzel', serif;
  color: #fff;
  font-size: 1.1rem;
}

.album-year {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.player-main {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(192, 170, 131, 0.2);
  padding: 20px;
}

.current-track-display {
  background: #110d0b;
  border-left: 4px solid var(--accent-color);
  padding: 12px;
  font-family: 'Cinzel', serif;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.custom-controls {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.ctrl-btn {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.ctrl-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
}

.seek-slider {
  flex: 1;
  -webkit-appearance: none;
  background: rgba(192, 170, 131, 0.3);
  height: 6px;
  outline: none;
  cursor: pointer;
}

.seek-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: var(--accent-color);
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

#ctrl-time-display {
  font-size: 11px;
  color: var(--text-muted);
  min-width: 80px;
  text-align: right;
}

.interactive-playlist {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 20px;
}

.playlist-item {
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  cursor: pointer;
  display: flex;
  gap: 15px;
  transition: all 0.2s ease;
}

.playlist-item:hover {
  background: rgba(192, 170, 131, 0.05);
  border-color: rgba(192, 170, 131, 0.2);
}

.playlist-item.active {
  background: rgba(140, 46, 36, 0.1);
  border-color: var(--accent-color);
}

.track-number {
  color: var(--accent-color);
  font-weight: bold;
}

.track-name {
  color: #fff;
}

.album-extended-info {
  background: #110d0b;
  border: 1px solid rgba(192, 170, 131, 0.2);
  padding: 20px;
  margin-top: 20px;
  animation: fadeIn 0.4s ease;
}

.album-extended-info h4 {
  font-family: 'Cinzel', serif;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.album-extended-info h5 {
  font-family: 'Cinzel', serif;
  color: #fff;
  margin-top: 15px;
  margin-bottom: 5px;
}

.album-extended-info ul {
  list-style: square;
  padding-left: 20px;
  font-size: 0.9rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .album-player-container {
    flex-direction: column;
  }
  .album-aside {
    width: 100%;
  }
}

/* SECCIÓN VIDEOS */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.video-item-large h4 {
  margin-top: 10px;
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  color: var(--primary-color);
  text-align: center;
}

@media (max-width: 768px) {
  .videos-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================== */
/*   ESTILOS NUEVOS: CONTACTO CON WHATSAPP   */
/* ========================================== */
.contact-pitch-container {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  padding: 20px 0;
}

.contact-speech {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: var(--text-light);
  font-style: italic;
}

/* Botón Dinámico de WhatsApp en Contacto */
.btn-whatsapp-direct {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #25D366; /* Color de marca de WhatsApp */
  color: #fff !important;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 14px 28px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.btn-whatsapp-direct:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
}

.btn-whatsapp-direct i {
  font-size: 18px;
}

/* Bloque inferior de detalles de contacto */
.contact-info-block {
  margin-top: 40px;
  border-top: 1px solid rgba(192, 170, 131, 0.2);
  padding-top: 30px;
}

.contact-info-title {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  color: var(--primary-color);
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.contact-details-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-light);
}

.contact-detail-item i {
  color: var(--accent-color);
  font-size: 15px;
}

@media (max-width: 650px) {
  .contact-details-list {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
}

/* SECCIÓN GALERÍA DE FOTOS */
.gallery-instructions {
  font-size: 11px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 15px;
}

.extended-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.gallery-item {
  width: 100%;
  height: 150px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--primary-color);
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-3px);
  filter: brightness(1.2);
}

/* SECCIÓN SHOWS DETALLADOS */
.shows-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 0.9rem;
}

.shows-table th, .shows-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid rgba(192, 170, 131, 0.2);
}

.shows-table th {
  font-family: 'Cinzel', serif;
  color: var(--primary-color);
  font-weight: 600;
  border-bottom: 2px solid var(--accent-color);
}

.shows-table tr:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

@media (max-width: 768px) {
  .shows-table, .shows-table thead, .shows-table tbody, .shows-table th, .shows-table td, .shows-table tr {
    display: block;
  }
  .shows-table thead {
    display: none;
  }
  .shows-table tr {
    margin-bottom: 15px;
    border: 1px solid var(--primary-color);
    padding: 10px;
  }
  .shows-table td {
    padding: 5px;
    border-bottom: none;
  }
}

/* BOLETÍN */
.newsletter-section {
  text-align: center;
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
}

.newsletter-title {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.newsletter-form input[type="email"] {
  background-color: var(--card-bg);
  border: 1px solid var(--primary-color);
  color: #fff;
  padding: 10px 15px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  width: 60%;
}

.newsletter-form button[type="submit"] {
  background-color: var(--accent-color);
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: background-color 0.3s ease;
}

.newsletter-form button[type="submit"]:hover {
  background-color: #aa3d32;
}

/* PIE DE PÁGINA */
.footer-line {
  border: none;
  border-top: 1px solid var(--accent-color);
  border-bottom: 1px solid var(--accent-color);
  height: 4px;
  margin: 40px 0 20px 0;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
}

@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

.footer-logo {
  font-family: 'Great Vibes', cursive;
  font-size: 2.2rem;
  color: #fff;
}

.footer-socials a {
  margin: 0 10px;
  font-size: 18px;
}

.footer-contact-link {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 1px;
}

.copyright-bar {
  background-color: #110d0b;
  padding: 15px 0;
  font-size: 11px;
  color: var(--text-muted);
  border-top: 1px solid rgba(192, 170, 131, 0.1);
}

.copyright-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .copyright-inner {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

/* LIGHTBOX (VISOR DE FOTOS) */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(23, 18, 15, 0.95);
  justify-content: center;
  align-items: center;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border: 2px solid var(--primary-color);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--primary-color);
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.lightbox-close:hover {
  color: var(--accent-color);
}