/* ══════════════════════════════════════════
   KC-04 XV FLORAL INFERNO — TIMELINE
   Runway "Pasarela" Program & Vals Santuario
   Khal Calloway Studio © 2026
   ══════════════════════════════════════════ */

#itinerario-section {
  position: relative;
  background-color: var(--bg-obsidian);
  padding: 6rem 0;
}

/* Timeline vertical axis: The Flame Line */
.itinerario-timeline {
  position: relative;
  max-width: 500px;
  margin: 3rem auto 0;
  padding: 20px 0;
}

.itinerario-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 2px;
  background: linear-gradient(to bottom, 
    var(--rose-celestial) 0%, 
    var(--gold-kc) 40%, 
    var(--rose-inferno) 70%, 
    transparent 100%
  );
  box-shadow: 0 0 10px rgba(161, 29, 42, 0.6);
}

.itinerario-item {
  position: relative;
  padding-left: 55px;
  margin-bottom: 45px;
  opacity: 0;
  transform: translateX(-15px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.itinerario-item.appeared {
  opacity: 1;
  transform: translateX(0);
}

/* Bullet checkpoints */
.itinerario-item::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg-obsidian-warm);
  border: 2px solid var(--gold-kc);
  z-index: 2;
  box-shadow: 0 0 8px var(--gold-kc);
  transition: transform 0.3s ease, background 0.3s ease;
}

.itinerario-item:hover::before {
  transform: scale(1.3);
  background: var(--rose-celestial);
  border-color: var(--color-champagne);
  box-shadow: 0 0 12px var(--rose-celestial);
}

.itinerario-hora {
  display: block;
  font-family: var(--ff-label);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--rose-blush);
  margin-bottom: 4px;
}

.itinerario-titulo {
  font-family: var(--ff-hero);
  font-size: 1.1rem;
  color: var(--color-champagne);
  margin-bottom: 6px;
}

.itinerario-desc {
  font-family: var(--ff-body);
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}


/* ── THE VALS SANTUARIO ── */
.vals-santuario-card {
  margin-top: 5rem;
  background-color: #0c0606;
  border-radius: 12px;
  border: 1px solid rgba(161, 29, 42, 0.4);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  position: relative;
  padding: 60px 40px;
  text-align: center;
}

/* Background overlay simulating cinematic video look */
.vals-card-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: url('../fotos/gallery_photo_03.png');
  background-size: cover;
  background-position: center;
  filter: blur(1px) brightness(0.25) contrast(1.1);
  opacity: 0.45;
  z-index: 1;
}

.vals-card-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 30%, rgba(5,3,3,0.95) 90%, #050303 100%);
  z-index: 2;
  pointer-events: none;
}

.vals-card-content {
  position: relative;
  z-index: 10;
}

.vals-pre {
  font-family: var(--ff-accent);
  font-size: 2.2rem;
  color: var(--rose-blush);
  text-shadow: 0 0 10px rgba(232, 164, 184, 0.3);
}

.vals-title {
  font-family: var(--ff-hero);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-kc);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 10px 0 20px;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.vals-quote {
  font-family: var(--ff-body);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-champagne);
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
}

/* Mini Countdown to Vals inside card */
.vals-mini-countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 2.5rem;
}

.vals-cd-unit {
  text-align: center;
}

.vals-cd-num {
  font-family: var(--ff-hero);
  font-size: 1.35rem;
  color: var(--color-champagne);
  display: block;
}

.vals-cd-label {
  font-family: var(--ff-label);
  font-size: 0.52rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

/* Music Control Widget inside Vals Santuario */
.vals-music-widget {
  max-width: 320px;
  margin: 0 auto;
  background: rgba(11, 5, 5, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 30px;
  padding: 12px 20px 12px 14px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.vals-play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-kc);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 10px var(--gold-kc);
  transition: transform 0.3s var(--transition-smooth), background-color 0.3s ease;
  flex-shrink: 0;
}

.vals-play-btn:hover {
  transform: scale(1.08);
  background: var(--color-ivory);
  box-shadow: 0 0 15px var(--color-ivory);
}

.vals-play-btn svg {
  width: 18px;
  height: 18px;
  color: var(--bg-obsidian);
}

.vals-music-meta {
  flex-grow: 1;
  text-align: left;
  overflow: hidden;
}

.vals-music-title {
  font-family: var(--ff-label);
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-kc);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vals-music-desc {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-style: italic;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

/* Audio Seek Progress Bar */
.vals-progress-container {
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1.5px;
  position: relative;
  cursor: pointer;
  margin-top: 6px;
}

.vals-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(to right, var(--gold-kc), var(--rose-blush));
  border-radius: 1.5px;
  width: 0%;
  transition: width 0.1s linear;
}

@media (max-width: 480px) {
  .vals-santuario-card { padding: 40px 20px; }
  .vals-title { font-size: 1.88rem; }
  .vals-quote { font-size: 0.98rem; }
}
