/* ============================================================
   Raise the Barre — Playbill viewer (standalone page)
   ============================================================ */

.playbill-page {
  background: var(--blue-deep);
  color: var(--cream);
  min-height: 100vh;
}

/* --- Top bar ---------------------------------------------- */
.playbill-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 21, 64, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.playbill-bar-inner {
  width: 92%;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
}

.playbill-logo {
  height: 34px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.playbill-home:hover .playbill-logo { opacity: 1; }

.playbill-back {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  transition: opacity 0.2s;
}

.playbill-back:hover { opacity: 1; }

/* --- Intro ------------------------------------------------ */
.playbill-intro {
  text-align: center;
  padding: 3rem 1.25rem 2rem;
}

.playbill-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
  margin-bottom: 0.85rem;
}

.playbill-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 0.85rem;
}

.playbill-meta {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--text-on-blue);
  opacity: 0.75;
}

/* --- Pages ------------------------------------------------ */
.playbill-pages {
  width: 92%;
  max-width: 680px;
  margin: 0 auto;
  padding-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.playbill-pages img {
  width: 100%;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

/* --- Footer ----------------------------------------------- */
.playbill-footer {
  text-align: center;
  padding: 2.5rem 1.25rem 3.5rem;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.playbill-footer .btn { margin-bottom: 1.5rem; }

.playbill-copy {
  font-size: 0.78rem;
  color: rgba(212, 218, 245, 0.4);
  letter-spacing: 0.04em;
}
