/**
 * Program page — day sections, venue badge, timeline grid (info-program-v2)
 */

.day-section {
  margin-bottom: 3.5rem;
}

.day-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: var(--color-darker, #050812);
  border-left: 4px solid var(--color-primary, #FF4500);
  margin-bottom: 0;
  flex-wrap: wrap;
  border-radius: 0 2px 2px 0;
}

.day-header-left {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.day-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1;
}

.day-label span {
  color: var(--color-primary, #FF4500);
}

.day-date-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  padding-bottom: 0.1rem;
}

.venue-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1rem 0.45rem 0.7rem;
  border: 1px solid rgba(255, 69, 0, 0.4);
  border-radius: 2px;
  background: rgba(255, 69, 0, 0.08);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}

.venue-badge:hover {
  border-color: rgba(255, 69, 0, 0.8);
  background: rgba(255, 69, 0, 0.15);
}

.venue-badge__pin {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--color-primary, #FF4500);
}

.venue-badge__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.venue-badge__name {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}

.venue-badge__sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1;
}

.day-section .timeline {
  padding-left: 0;
  margin-top: 0;
  padding-top: 1.75rem;
  position: relative;
}

.day-section .timeline::before {
  left: 125px;
  width: 2px;
  background: var(--color-gray-light, #E8EAEF);
}

.day-section .timeline-item {
  display: grid;
  grid-template-columns: 110px 30px 1fr;
  align-items: start;
  margin-bottom: 1.75rem;
}

.day-section .timeline-item::before {
  grid-column: 2;
  grid-row: 1;
  position: static;
  left: auto;
  top: auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-light, #fff);
  border: 3px solid var(--color-gray-light, #E8EAEF);
  justify-self: center;
  align-self: start;
  margin-top: 5px;
}

.day-section .timeline-item--highlight::before {
  background: var(--color-primary, #FF4500);
  border-color: var(--color-primary, #FF4500);
  width: 16px;
  height: 16px;
  margin-top: 3px;
}

.day-section .timeline-time {
  grid-column: 1;
  grid-row: 1;
  position: static;
  left: auto;
  top: auto;
  width: auto;
  text-align: right;
  padding-right: 4px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  padding-top: 2px;
  color: var(--color-primary, #FF4500);
}

.day-section .timeline-content {
  grid-column: 3;
  grid-row: 1;
  padding-left: 14px;
}

.day-section .timeline-content h3 {
  margin-top: 0;
}

.day-section .timeline-item--start .timeline-content h3 {
  color: var(--color-primary, #FF4500);
}

/* ── Navigation picker popup ─────────────────────────────────── */

.nav-picker-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
}

.nav-picker-backdrop.is-open {
  display: block;
}

.nav-picker {
  position: absolute;
  z-index: 1000;
  background: var(--color-darker, #050812);
  border: 1px solid rgba(255, 69, 0, 0.35);
  border-radius: 4px;
  padding: 0.75rem;
  min-width: 220px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.65);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  pointer-events: none;
}

.nav-picker.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-picker__title {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.6rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-picker__options {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.nav-picker__btn {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.75rem;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 3px;
  text-decoration: none;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  width: 100%;
  text-align: left;
}

.nav-picker__btn:hover {
  background: rgba(255, 69, 0, 0.12);
  border-color: rgba(255, 69, 0, 0.4);
  color: #fff;
}

.nav-picker__btn-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-picker__btn-icon img {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  display: block;
}

@media (max-width: 480px) {
  .nav-picker {
    position: fixed;
    inset: auto 1rem 1.5rem;
    width: calc(100% - 2rem);
    min-width: unset;
    transform: translateY(8px);
  }

  .nav-picker.is-open {
    transform: translateY(0);
  }
}

/*.day-section .timeline-item--start .timeline-content h3::before {
  content: "▶ ";
  font-size: 0.6em;
  vertical-align: middle;
}*/

.day-section .timeline-item--start .timeline-content h3::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 8px solid #ff4d00;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  margin-right: 6px;
  vertical-align: middle;
}

