/* ============================================================
   Raise the Barre — Global foundation styles
   Color palette driven by Between the Lines artwork:
   deep royal blue / antique gold / warm white
   ============================================================ */

/* --- Reset & Base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  color: #1a1a1a;
  background: #fafaf8;
  line-height: 1.75;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }

/* --- Design Tokens ---------------------------------------- */
:root {
  --blue-deep:   #0d1540;
  --blue-mid:    #1a2878;
  --blue-bg:     #1e2e8a;
  --gold:        #c9a84c;
  --gold-light:  #e0c060;
  --off-white:   #fafaf8;
  --cream:       #f5f0e8;
  --text-on-blue:#d4daf5;
  --text-muted:  #888;
  --max-width:   1100px;
  --section-gap: 6rem;
}

/* --- Typography ------------------------------------------- */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.15;
}

em { font-style: italic; }

strong { font-weight: 700; }

/* --- Layout Utilities ------------------------------------- */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.container-narrow { max-width: 700px; }

.center { text-align: center; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
}

.btn-gold {
  background: var(--gold);
  color: var(--blue-deep);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-outline-white {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,240,232,0.5);
}

.btn-outline-white:hover {
  border-color: var(--cream);
  background: rgba(245,240,232,0.08);
}

.btn-sm { padding: 0.6rem 1.6rem; font-size: 0.78rem; }

/* --- Section Shells --------------------------------------- */
.section { padding: var(--section-gap) 0; }

.section-light  { background: var(--off-white); }
.section-blue   { background: var(--blue-mid);  color: var(--cream); }
.section-dark-blue { background: var(--blue-deep); color: var(--cream); }

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.section-label-gold { color: var(--gold); opacity: 0.85; }

.section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 2.5rem;
  color: var(--cream);
}

.section-heading-dark { color: var(--blue-deep); }
#story, #performances { padding: 4.5rem 0; }
#story .section-heading { margin-bottom: 1.75rem; }
#performances .section-heading { margin-bottom: 1.5rem; }
#performances .performance-month { margin-bottom: 2.25rem; }
