/* ============================================================
   MUSIC SCHEDULE PAGE ONLY.
   Nav / ticker / footer base styling lives in shared.css —
   this page points --footer-bg at the dark olive and uses the
   pale-yellow logo variants in the HTML.
   ============================================================ */

:root {
  --footer-bg: var(--icon-olive); /* #3E3906 dark olive, same as this page's hero/body-frame */
  --pale-yellow: #FFF7AA;
}

body { background: var(--icon-olive); }

/* ---------- HERO ---------- */

.schedule-hero {
  position: relative;
  width: 100%;
  min-height: 560px;
  background: var(--icon-olive);
  line-height: 0; /* avoid a stray inline-element gap under the iframe */
}

@media (max-width: 700px) {
  .schedule-hero { min-height: 300px; }
}

.schedule-hero-embed {
  display: block;
  width: 100%;
  height: 560px;
  border: 0;
}

@media (max-width: 700px) {
  .schedule-hero-embed { height: 300px; }
}

/* ---------- TABS ---------- */

.schedule-body {
  background: var(--cream);
  color: var(--icon-olive);
  padding: clamp(40px, 6vw, 70px) clamp(20px, 6vw, 90px) clamp(70px, 9vw, 110px);
}

.day-tabs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.day-tab {
  border: 2px solid var(--icon-olive);
  border-radius: 14px;
  padding: 12px 30px;
  font-size: 15px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--icon-olive);
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}

.day-tab:hover { opacity: 0.7; }

.day-tab.is-active {
  background: var(--icon-olive);
  color: var(--pale-yellow);
}

.day-tabs-divider {
  border: none;
  border-top: 2px solid var(--icon-olive);
  margin: 0 0 40px;
}

/* ---------- STAGE / SCHEDULE LIST ---------- */

.day-panel { display: none; }
.day-panel.is-active { display: block; }

.stage-block + .stage-block { margin-top: 48px; }

.stage-heading-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 2px solid var(--icon-olive);
  padding-bottom: 14px;
  margin-bottom: 20px;
}

.stage-name {
  font-size: clamp(24px, 3vw, 36px);
  margin: 0;
}

.stage-hours {
  font-size: 15px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.schedule-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.schedule-row {
  display: flex;
  align-items: center;
  gap: 24px;
  border: 2px solid var(--icon-olive);
  border-radius: 14px;
  padding: 16px 28px;
  min-height: calc(60px * var(--dur, 1));
  color: var(--icon-olive);
  background: transparent;
  transition: background 0.18s ease, color 0.18s ease;
  box-sizing: border-box;
}

.schedule-row:hover,
.schedule-row:focus-visible {
  background: var(--icon-olive);
  color: var(--cream);
  outline: none;
}

.schedule-time {
  font-size: 14px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  width: 118px;
}

.schedule-artist {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 400;
  text-transform: uppercase;
}

@media (max-width: 560px) {
  .schedule-row { padding: 14px 18px; gap: 14px; }
  .schedule-time { width: 92px; font-size: 12px; }

  .day-tabs {
    flex-wrap: nowrap;
    gap: 6px;
  }

  .day-tab {
    flex: 1 1 0;
    padding: 10px 6px;
    font-size: 11px;
    text-align: center;
    white-space: nowrap;
  }
}
