/* ==========================================================================
   DJ DREWTHER - OFFICIAL WEBSITE STYLES
   Aesthetics: 100% Full-Coverage Papyrus Parchment Containers
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700;900&family=Cinzel:wght@700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-dark: #080604;
  --bg-card-papyrus: #ede2cd;
  --border-glow: rgba(240, 192, 64, 0.65);
  --border-subtle: rgba(184, 134, 11, 0.45);
  
  --color-gold-bright: #fff3a0;
  --color-gold: #f0c040;
  --color-gold-deep: #b8860b;
  --color-amber: #ff8c00;
  --color-bronze: #8b5a2b;
  
  --text-main: #f7f1eb;
  --text-dark-ink: #1a120b;
  --text-body-ink: #261b10;
  --text-muted-ink: #4a3407;
  
  --font-heading: 'Cinzel Decorative', 'Cinzel', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
  width: 100%;
}

/* GLOBAL FIXED BACKGROUND */
body {
  background-color: var(--bg-dark);
  background-image: url('assets/page_bg.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #b8860b, #4a3407);
  border-radius: 5px;
  border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

/* Typography Utilities */
h1, h2, h3, h4, .brand-text {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Texto Dorado en Fondo Oscuro */
.gradient-text-gold {
  background: linear-gradient(135deg, #fff7d0 0%, #ffd700 40%, #e6b422 80%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(240, 192, 64, 0.25);
}

/* Títulos Generales de Sección */
.section-title {
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  font-family: var(--font-heading);
  color: #ffffff;
  text-shadow: 0 0 20px rgba(240, 192, 64, 0.3);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold-bright);
  background: rgba(240, 192, 64, 0.15);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(240, 192, 64, 0.4);
  margin-bottom: 1.2rem;
  box-shadow: 0 0 15px rgba(240, 192, 64, 0.2);
  max-width: 100%;
}

/* Encabezados fuera de tarjetas */
.section-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 3.5rem;
  position: relative;
  width: 100%;
}

/* ==========================================================================
   CONTENEDORES DE PAPIRO EGIPCIO QUE CUBREN EL 100% DEL ÁREA DE BORDE A BORDE
   ========================================================================== */
.bio-text-content,
.booking-info,
.booking-form-card,
.player-card,
.show-item {
  background-color: #ede2cd !important;
  background-image: url('assets/papyrus_texture.png') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: repeat !important;
  border: none !important;
  border-radius: 24px !important;
  padding: 2.8rem 2.5rem !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.85) !important;
  color: #1a120b !important;
  position: relative !important;
  overflow: hidden !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Sin Bordes ni Contornos Adicionales */
.bio-text-content::before,
.booking-info::before,
.booking-form-card::before,
.player-card::before,
.show-item::before {
  display: none !important;
}

/* Títulos DENTRO de los Contenedores de Papiro (Entintado Faraónico Oscuro) */
.bio-text-content .section-title,
.booking-info .section-title,
.booking-form-card h3,
.player-track-info h4,
.show-details h4 {
  color: #1a120b !important;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6) !important;
}

.bio-text-content .section-title .gradient-text-gold,
.booking-info .section-title .gradient-text-gold {
  background: linear-gradient(135deg, #1a120b 0%, #4a3407 50%, #2b1d10 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.bio-text-content .section-tag,
.booking-info .section-tag {
  color: #2b1d10 !important;
  background: rgba(139, 90, 20, 0.18) !important;
  border: 1.5px solid rgba(139, 90, 20, 0.45) !important;
}

.bio-paragraph {
  font-size: 1.05rem;
  color: var(--text-body-ink) !important;
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 1.75;
}

/* Buttons (Botones Metálicos Dorados) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.4rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #1a120b 0%, #3a2612 50%, #0d0903 100%) !important;
  color: #fff3a0 !important;
  border: 1.5px solid #e6b422 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), 0 0 15px rgba(240, 192, 64, 0.4) !important;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8), 0 0 25px rgba(240, 192, 64, 0.7) !important;
  background: linear-gradient(135deg, #2c1e10 0%, #4e3419 50%, #1a120b 100%) !important;
  color: #ffffff !important;
}

.btn-secondary {
  background: rgba(139, 90, 20, 0.16) !important;
  color: #1a120b !important;
  border: 1.5px solid #8b5a2b !important;
  font-weight: 800 !important;
}

.btn-secondary:hover {
  background: rgba(139, 90, 20, 0.3) !important;
  border-color: #1a120b !important;
  color: #000 !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition-smooth);
  width: 100%;
}

.navbar.scrolled {
  background: rgba(8, 6, 4, 0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.8rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(240, 192, 64, 0.5));
  transition: transform var(--transition-fast);
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.06);
}

/* Botón Hamburguesa Móvil */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(240, 192, 64, 0.15);
  border: 1px solid rgba(240, 192, 64, 0.4);
  border-radius: 12px;
  color: var(--color-gold);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.nav-toggle:hover {
  background: rgba(240, 192, 64, 0.3);
  color: #fff;
}

/* LOGO CENTRAL EN HERO & EFECTO DE CINTA DE LUZ DIAGONAL */
.hero-header-title {
  position: absolute;
  top: 33%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  z-index: 10;
  margin: 0;
}

.logo-shimmer-box {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  animation: floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo {
  0% {
    transform: translateY(0px);
    filter: drop-shadow(0 0 30px rgba(240, 192, 64, 0.95)) drop-shadow(0 0 50px rgba(0, 0, 0, 0.98));
  }
  50% {
    transform: translateY(-14px);
    filter: drop-shadow(0 0 45px rgba(240, 192, 64, 1)) drop-shadow(0 15px 65px rgba(0, 0, 0, 0.98));
  }
  100% {
    transform: translateY(0px);
    filter: drop-shadow(0 0 30px rgba(240, 192, 64, 0.95)) drop-shadow(0 0 50px rgba(0, 0, 0, 0.98));
  }
}

.hero-logo-img {
  max-height: 195px;
  max-width: 90vw;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 30px rgba(240, 192, 64, 0.95)) drop-shadow(0 0 50px rgba(0, 0, 0, 0.98));
}

.footer-logo-img {
  height: 36px;
  width: auto;
  vertical-align: middle;
  display: inline-block;
  margin: 0 0.5rem;
  filter: drop-shadow(0 0 10px rgba(240, 192, 64, 0.6));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-gold);
  text-shadow: 0 0 8px rgba(240, 192, 64, 0.4);
}

/* 1. HERO SECTION (FULLSCREEN EN WEB) */
.hero-section {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  display: block;
  padding: 0;
  background-image: url('assets/hero_bg.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  width: 100%;
}

/* CINTURÓN COMPACTO DE KPIS DEBAJO DEL HERO CON LA IMAGEN DE ADORNO DE ORO FARAÓNICO */
.kpi-belt-section {
  padding: 2.2rem 0;
  background-color: #080604 !important;
  background-image: url('assets/fondoskpis.png') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  border-top: 3px solid #f0c040 !important;
  border-bottom: 3px solid #f0c040 !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.95), 0 0 30px rgba(240, 192, 64, 0.4) !important;
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.4rem;
  background: rgba(240, 192, 64, 0.15);
  border: 1px solid rgba(240, 192, 64, 0.4);
  border-radius: 50px;
  color: var(--color-gold-bright);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(240, 192, 64, 0.2);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-muted);
  font-weight: 500;
  max-width: 750px;
  margin: 0 auto 2.2rem;
  line-height: 1.6;
}

.hero-subtitle strong {
  color: var(--color-gold-bright);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

/* Counters Grid con Papel Papiro */
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.counter-card {
  background-color: transparent !important;
  background-image: url('assets/papyrus_canvas.png') !important;
  background-size: 100% 100% !important;
  background-repeat: no-repeat !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.75)) !important;
  padding: 2.2rem 1.2rem !important;
  text-align: center;
  position: relative;
}

.counter-card::before {
  display: none !important;
}

.counter-card:hover {
  transform: translateY(-4px) scale(1.03);
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.9)) !important;
}

.counter-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #1a120b;
  line-height: 1;
  margin-bottom: 0.4rem;
  text-shadow: 0 1px 2px rgba(240, 192, 64, 0.4);
}

.counter-label {
  font-size: 0.85rem;
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #4a3407;
}

/* 2. SECCIÓN BIOGRAFÍA */
.bio-section {
  padding: 6rem 0;
  position: relative;
  width: 100%;
}

.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.bio-image-wrapper {
  position: relative;
  width: 100%;
}

.bio-image-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(240, 192, 64, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(240, 192, 64, 0.2);
  width: 100%;
}

.bio-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-smooth);
}

.bio-image-card:hover .bio-img {
  transform: scale(1.03);
}

.bio-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  padding: 1rem 1.2rem;
  background: rgba(18, 14, 9, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(240, 192, 64, 0.4);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bio-image-badge-text {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-gold);
  letter-spacing: 0.08em;
}

.bio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.bio-tag-chip {
  padding: 0.5rem 1.2rem;
  background: rgba(139, 90, 20, 0.16);
  border: 1.5px solid rgba(139, 90, 20, 0.45);
  border-radius: 50px;
  font-size: 0.85rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: #1a120b;
  transition: all var(--transition-fast);
}

.bio-tag-chip:hover {
  background: rgba(139, 90, 20, 0.3);
  border-color: #1a120b;
}

/* GALERÍA DE FOTOS (REJILLA ORIGINAL EN ESCRITORIO WEB / COVERFLOW EN MÓVIL) */
.gallery-section {
  padding: 6rem 0;
  position: relative;
  width: 100%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(240, 192, 64, 0.25);
  height: 360px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  background: transparent !important;
  padding: 0 !important;
}

.gallery-item.large {
  grid-column: span 2;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 6, 4, 0.92) 0%, rgba(8, 6, 4, 0.1) 60%, transparent 100%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  transition: opacity var(--transition-fast);
}

.gallery-caption {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-gold-bright);
  transform: translateY(10px);
  transition: transform var(--transition-fast);
  letter-spacing: 0.05em;
}

.gallery-item:hover {
  border-color: var(--color-gold);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 25px rgba(240, 192, 64, 0.3);
  transform: translateY(-5px);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* CARROUSEL COVERFLOW DESLIZABLE POR TACTO (SÓLO MÓVIL) */
.coverflow-gallery-wrapper {
  display: none;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 1.5rem 0;
}

.coverflow-gallery {
  position: relative;
  width: 100%;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: pan-y;
  user-select: none;
  perspective: 1000px;
  overflow: hidden;
}

.coverflow-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coverflow-card {
  position: absolute;
  width: 300px;
  height: 380px;
  border-radius: 22px;
  overflow: hidden;
  border: 2.5px solid #b8860b;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.9), 0 0 25px rgba(240, 192, 64, 0.25);
  cursor: pointer;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease, z-index 0.2s;
  background: #0d0b08;
  will-change: transform, opacity;
}

.coverflow-card.active {
  border-color: #f0c040 !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 45px rgba(240, 192, 64, 0.65) !important;
}

.coverflow-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.coverflow-badge {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  padding: 0.75rem 1rem;
  background: rgba(10, 8, 5, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(240, 192, 64, 0.4);
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-gold-bright);
  letter-spacing: 0.05em;
  text-align: center;
}

/* Botones de Navegación Flechas */
.coverflow-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(10, 8, 5, 0.85);
  border: 1.5px solid #b8860b;
  color: var(--color-gold-bright);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.8);
}

.coverflow-prev { left: 1rem; }
.coverflow-next { right: 1rem; }

.coverflow-nav:hover {
  background: #f0c040;
  color: #000;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 25px rgba(240, 192, 64, 0.8);
}

/* Indicadores Puntos (Dots) */
.coverflow-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1rem;
}

.coverflow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(240, 192, 64, 0.25);
  border: 1px solid rgba(240, 192, 64, 0.5);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.coverflow-dot.active {
  background: #f0c040;
  width: 28px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(240, 192, 64, 0.7);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(5, 4, 3, 0.96);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 16px;
  border: 2px solid var(--color-gold);
  box-shadow: 0 0 50px rgba(240, 192, 64, 0.4);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(240, 192, 64, 0.15);
  border: 1px solid rgba(240, 192, 64, 0.3);
  color: var(--color-gold-bright);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--color-gold);
  color: #000;
  transform: scale(1.1);
}

/* 3. ESCENARIO COMPARTIDO CON */
.stage-section {
  padding: 5rem 0;
  width: 100%;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  width: 100%;
}

.artist-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  padding: 0 !important;
  border: 1px solid rgba(240, 192, 64, 0.3);
  transition: all var(--transition-smooth);
  background: rgba(18, 14, 9, 0.82) !important;
  backdrop-filter: blur(14px);
  width: 100%;
}

.artist-card:hover {
  border-color: var(--color-gold) !important;
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(240, 192, 64, 0.35) !important;
}

.artist-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.artist-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.artist-card:hover .artist-img {
  transform: scale(1.08);
}

/* Overlay en Escritorio */
.artist-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 6, 4, 0.95) 0%, rgba(8, 6, 4, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.artist-card:hover .artist-overlay {
  opacity: 1;
}

.artist-overlay .artist-name {
  font-size: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 900;
  color: var(--color-gold-bright) !important;
  margin-bottom: 0.2rem;
  transform: translateY(10px);
  transition: transform var(--transition-fast);
}

.artist-overlay .artist-sub {
  font-size: 0.8rem;
  color: #fff !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  transform: translateY(10px);
  transition: transform var(--transition-fast);
}

.artist-card:hover .artist-overlay .artist-name,
.artist-card:hover .artist-overlay .artist-sub {
  transform: translateY(0);
}

/* Info Móvil */
.artist-mobile-info {
  display: none;
  padding: 1.1rem 1rem;
  text-align: center;
  background: rgba(14, 11, 7, 0.95);
  border-top: 1px solid rgba(240, 192, 64, 0.2);
}

.artist-mobile-info .artist-name {
  font-size: 1.15rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-gold-bright) !important;
  margin-bottom: 0.2rem;
}

.artist-mobile-info .artist-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* 4. COLABORACIONES DESTACADAS */
.collabs-section {
  padding: 5rem 0;
  width: 100%;
}

.collabs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  width: 100%;
}

/* 5. EN VIVO (SHOWS & PRESENTACIONES EN PAPEL PAPIRO 100%) */
.shows-section {
  padding: 6rem 0;
  position: relative;
  width: 100%;
}

.shows-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.shows-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

.show-item {
  padding: 1.8rem 2rem !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.show-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.show-badge {
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.badge-upcoming {
  background: #1a120b;
  color: #fff3a0;
  border: 1.5px solid #e6b422;
  animation: pulse-glow 2s infinite alternate;
}

.badge-recent {
  background: rgba(139, 90, 20, 0.2);
  color: #3d2b1a;
  border: 1px solid rgba(139, 90, 20, 0.4);
}

.show-details h4 {
  font-size: 1.2rem;
  font-family: var(--font-heading);
  font-weight: 900;
  color: #1a120b !important;
  margin-bottom: 0.25rem;
}

.show-location {
  font-size: 0.9rem;
  color: #4a3407;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.show-action-btn {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  100% { box-shadow: 0 0 15px rgba(240, 192, 64, 0.7); }
}

/* 6. MÚSICA & PLAYER */
.music-section {
  padding: 6rem 0;
  width: 100%;
}

.spotify-embed-wrapper {
  max-width: 880px;
  margin: 0 auto 3rem;
  width: 100%;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.spotify-embed-wrapper iframe {
  width: 100% !important;
  height: 352px !important;
  border-radius: 12px !important;
  border: none !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.85) !important;
  display: block !important;
}

/* GALERÍA DE VIDEOS OFICIALES EN YOUTUBE (REPRODUCCIÓN DIRECTA 2X2) */
.youtube-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
}

.youtube-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #b8860b;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.85), 0 0 25px rgba(240, 192, 64, 0.2);
  transition: all var(--transition-smooth);
}

.youtube-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-gold);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.95), 0 0 35px rgba(240, 192, 64, 0.5);
}

.youtube-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Player Grid */
.players-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  width: 100%;
}

.player-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.player-cover {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1a120b 0%, #3a2612 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff3a0;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border: 1.5px solid #b8860b;
}

.player-track-info h4 {
  font-size: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 900;
  color: #1a120b !important;
  margin-bottom: 0.2rem;
}

.player-track-info p {
  font-size: 0.85rem;
  color: #4a3407;
  font-weight: 600;
}

/* Equalizer Animated Bars */
.eq-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 32px;
  margin-bottom: 1.5rem;
  padding: 0 0.5rem;
}

.eq-bar {
  flex: 1;
  background: linear-gradient(to top, #3d2b1a, #8b5a2b);
  height: 20%;
  border-radius: 3px;
  transition: height 0.15s ease;
}

.playing .eq-bar:nth-child(1) { animation: eq-anim 0.8s infinite alternate 0.1s; }
.playing .eq-bar:nth-child(2) { animation: eq-anim 0.7s infinite alternate 0.3s; }
.playing .eq-bar:nth-child(3) { animation: eq-anim 0.9s infinite alternate 0.2s; }
.playing .eq-bar:nth-child(4) { animation: eq-anim 0.6s infinite alternate 0.4s; }
.playing .eq-bar:nth-child(5) { animation: eq-anim 0.85s infinite alternate 0.15s; }
.playing .eq-bar:nth-child(6) { animation: eq-anim 0.75s infinite alternate 0.25s; }
.playing .eq-bar:nth-child(7) { animation: eq-anim 0.95s infinite alternate 0.35s; }
.playing .eq-bar:nth-child(8) { animation: eq-anim 0.65s infinite alternate 0.05s; }

@keyframes eq-anim {
  0% { height: 15%; }
  100% { height: 95%; }
}

.player-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.play-toggle-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a120b 0%, #3a2612 100%);
  color: #fff3a0;
  border: 1.5px solid #e6b422;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.play-toggle-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.7);
  background: linear-gradient(135deg, #2c1e10 0%, #4e3419 100%);
}

.track-status-text {
  font-size: 0.85rem;
  font-weight: 800;
  color: #3d2b1a;
}

/* 7. CONTRATACIONES & BOOKING EN PAPIRO 100% COVER */
.booking-section {
  padding: 6rem 0;
  position: relative;
  width: 100%;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: stretch;
  width: 100%;
}

.booking-info,
.booking-form-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.whatsapp-box {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.4rem;
  background: #ffffff !important;
  border: 2px solid #b8860b !important;
  border-radius: 16px;
  margin-top: 1.8rem;
  text-decoration: none;
  transition: all var(--transition-smooth);
  width: 100%;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12) !important;
}

.whatsapp-box:hover {
  background: #fffdf5 !important;
  border-color: #1a120b !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(184, 134, 11, 0.35) !important;
}

.whatsapp-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a120b 0%, #3a2612 100%) !important;
  color: #f0c040 !important;
  border: 1.5px solid #e6b422 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-details span {
  display: block;
  font-size: 0.75rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8b5a2b !important;
  font-weight: 800;
}

.whatsapp-number {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  color: #1a120b !important;
}

/* Booking Form Inputs */
.form-group {
  margin-bottom: 1.4rem;
  width: 100%;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1a120b !important;
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 1rem 1.25rem;
  background: #fffef9 !important;
  border: 1.5px solid #b8860b !important;
  border-radius: 12px;
  color: #1a120b !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: #1a120b !important;
  box-shadow: 0 0 15px rgba(184, 134, 11, 0.4);
  background: #ffffff !important;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a120b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 1rem;
}

select.form-control option {
  background-color: #ede2cd;
  color: #1a120b;
}

/* Toast Modal */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 2000;
  padding: 1.2rem 1.8rem;
  background: #ede2cd;
  background-image: url('assets/papyrus_texture.png');
  background-size: cover;
  border: 2px solid #b8860b;
  border-radius: 16px;
  color: #1a120b;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 25px rgba(240, 192, 64, 0.3);
  transform: translateY(150%);
  opacity: 0;
  transition: all var(--transition-smooth);
}

.toast-notification.active {
  transform: translateY(0);
  opacity: 1;
}

/* FOOTER CON CRISTAL PULIDO OSCURO & TIPOGRAFÍA DE ALTO CONTRASTE */
footer {
  padding: 2.2rem 0;
  background: rgba(10, 7, 4, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(240, 192, 64, 0.35);
  text-align: center;
  color: #f7f1eb !important;
  font-size: 0.95rem;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  width: 100%;
}

footer p {
  color: #f7f1eb !important;
  font-weight: 600;
}

footer strong {
  color: var(--color-gold-bright) !important;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (CONTENEDORES PERFECTOS Y ADAPTABLES)
   ========================================================================== */

@media (max-width: 992px) {
  /* Navbar transparente flotando en la esquina en móvil */
  .navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: none !important;
    padding: 1rem 0;
    z-index: 1000;
  }

  .navbar.scrolled {
    background: rgba(8, 6, 4, 0.92) !important;
    backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid var(--border-subtle) !important;
  }

  /* Ocultar únicamente el logo de letras del navbar en móvil */
  .nav-logo-img {
    display: none !important;
  }

  .nav-container {
    justify-content: flex-end;
  }

  .nav-toggle {
    display: flex;
    background: rgba(18, 14, 9, 0.65);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(240, 192, 64, 0.4);
    color: var(--color-gold);
    width: 46px;
    height: 46px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 7, 4, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    flex-direction: column;
    align-items: center;
    padding: 2.2rem 1.5rem;
    gap: 1.4rem;
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.95), 0 0 25px rgba(240, 192, 64, 0.2);
    z-index: 999;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    font-size: 1.1rem;
    width: 100%;
    text-align: center;
    padding: 0.6rem 0;
    color: var(--text-main);
  }

  .nav-btn-mobile {
    width: 100%;
    max-width: 260px;
    margin-top: 0.5rem;
  }

  /* Hero Section en móvil */
  .hero-section {
    position: relative;
    width: 100%;
    aspect-ratio: 1080 / 1920;
    min-height: 0;
    padding: 0;
    background-image: url('assets/hero_bg_mobile.jpg');
    background-size: cover;
    background-position: center top;
    display: block;
  }

  .hero-header-title {
    display: block !important;
    position: absolute;
    top: 28.5%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 10;
    margin: 0;
  }

  .hero-logo-img {
    display: block !important;
    max-height: 165px;
    max-width: 95vw;
    width: auto;
    object-fit: contain;
    margin: 0 auto;
    filter: drop-shadow(0 0 30px rgba(240, 192, 64, 0.95)) drop-shadow(0 0 50px rgba(0, 0, 0, 0.98));
  }

  .bio-grid,
  .booking-grid,
  .players-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  /* Alternancia de Galería: Ocultar Rejilla Estática en Móvil y Mostrar Coverflow deslizable por tacto */
  .gallery-grid {
    display: none !important;
  }

  .coverflow-gallery-wrapper {
    display: block !important;
  }

  /* Fondo exclusivo de KPIs para versión móvil con textura de relieve dorado */
  .kpi-belt-section {
    background-image: url('assets/fondoskpis_mobile.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    padding: 3rem 0 !important;
  }

  .counters-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1.4rem !important;
    max-width: 340px !important;
    margin: 0 auto !important;
  }

  .counter-card {
    width: 100% !important;
  }

  .artist-grid,
  .collabs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Videos de YouTube en tira vertical en móvil (uno abajo de otro) */
  .youtube-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.8rem !important;
    width: 100% !important;
  }

  .youtube-card {
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
    border-radius: 16px !important;
  }

  /* Abanico 3D de fotos adaptable en móvil */
  .fan-gallery-container {
    min-height: 380px !important;
    padding: 1.5rem 0 !important;
  }

  .fan-gallery-deck {
    height: 320px !important;
  }

  .fan-card {
    width: 210px !important;
    height: 300px !important;
  }

  .fan-card-1 { transform: translateX(-110px) rotate(-12deg) translateY(10px) !important; }
  .fan-card-2 { transform: translateX(-55px) rotate(-6deg) translateY(0px) !important; }
  .fan-card-3 { transform: translateX(0px) rotate(0deg) translateY(-8px) !important; }
  .fan-card-4 { transform: translateX(55px) rotate(6deg) translateY(0px) !important; }
  .fan-card-5 { transform: translateX(110px) rotate(12deg) translateY(10px) !important; }

  .fan-badge {
    padding: 0.5rem 0.7rem !important;
    font-size: 0.75rem !important;
    bottom: 0.8rem !important;
    left: 0.8rem !important;
    right: 0.8rem !important;
  }

  .container {
    padding: 0 1rem;
  }

  .bio-text-content,
  .booking-info,
  .booking-form-card,
  .player-card {
    padding: 2rem 1.4rem !important;
    border-radius: 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .shows-header-flex {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .section-title {
    font-size: 1.55rem !important;
    line-height: 1.25 !important;
    word-break: break-word !important;
    text-align: center !important;
  }

  .section-tag {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    margin-bottom: 1rem;
  }

  .hero-sub-section {
    padding: 2.5rem 0 3rem;
  }

  .artist-grid,
  .collabs-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .artist-overlay {
    display: none !important;
  }

  .artist-mobile-info {
    display: block !important;
  }

  .show-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.2rem !important;
  }

  .show-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }

  .show-location {
    justify-content: center;
  }

  .service-item {
    text-align: left;
  }

  .whatsapp-box {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 1.2rem 1rem;
  }

  .whatsapp-details {
    text-align: center;
  }

  .bio-img {
    height: 380px;
  }

  .bio-tags {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 0.85rem;
  }

  .bio-text-content,
  .booking-info,
  .booking-form-card,
  .player-card {
    padding: 1.8rem 1.1rem !important;
  }

  .section-title {
    font-size: 1.35rem !important;
  }

  .gallery-grid,
  .counters-grid,
  .artist-grid,
  .collabs-grid {
    grid-template-columns: 1fr !important;
  }
  
  .gallery-item.large {
    grid-column: span 1;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
  }

  .hero-logo-img {
    max-height: 150px;
    max-width: 96vw;
  }
}
