/* ============================================================
   THE PIPO NIGHT 2026 — Programme Stylesheet
   ============================================================ */

.prog-header {
  padding: 130px 24px 50px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.prog-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.25);
  color: var(--or);
}

.prog-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  color: var(--or);
  font-weight: 700;
  margin-bottom: 18px;
}

.prog-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-top: 18px;
}

/* Timeline */
.prog-timeline {
  max-width: 780px;
  margin: 0 auto;
  padding: 20px 24px 60px;
}

.timeline-track {
  position: relative;
  padding-left: 32px;
  border-left: 2px solid rgba(212,175,55,0.22);
}

.timeline-item {
  position: relative;
  padding-bottom: 42px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -41px;
  top: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--or-vif), var(--or));
  border: 3px solid var(--noir);
  box-shadow: 0 0 0 2px rgba(212,175,55,0.35), 0 0 16px rgba(212,175,55,0.5);
  transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.25);
}

.timeline-time {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--or-vif);
  margin-bottom: 6px;
}

.timeline-content h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blanc);
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

.timeline-content p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  max-width: 520px;
}

/* Note */
.prog-note {
  max-width: 780px;
  margin: 0 auto 50px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(212,175,55,0.05);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.prog-note svg { color: var(--or); flex-shrink: 0; margin-top: 1px; }

.prog-cta {
  text-align: center;
  padding-bottom: 70px;
}

@media (max-width: 600px) {
  .prog-header { padding: 104px 20px 40px; }
  .prog-timeline { padding: 10px 18px 50px; }
  .timeline-track { padding-left: 26px; }
  .timeline-dot { left: -34px; width: 15px; height: 15px; }
}
