/* ============ The Texas Theatre — Historic Daylight ============ */
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-700.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-600italic.woff2") format("woff2");
  font-weight: 600; font-style: italic; font-display: swap;
}

:root {
  --ivory: #faf6ee;
  --cream: #f3ecdd;
  --ink: #3a2a20;
  --muted: #7a6a58;
  --brick: #8c2f24;
  --brick-dark: #6e241b;
  --gold: #f3d9a4;
  --card: #ffffff;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
}
img { max-width: 100%; display: block; }
a { color: var(--brick); }
h1, h2, h3 { font-family: var(--serif); line-height: 1.15; margin: 0 0 .5em; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--ivory);
  border-bottom: 2px solid var(--brick);
}
.header-inner {
  max-width: 1150px; margin: 0 auto; padding: .7rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand {
  font-family: var(--serif); font-weight: 700; font-size: 1.25rem;
  color: var(--ink); text-decoration: none; text-transform: uppercase;
  letter-spacing: .06em; white-space: nowrap;
}
.site-nav { display: flex; flex-wrap: wrap; gap: 1.1rem; }
.site-nav a {
  color: var(--muted); text-decoration: none; font-size: .78rem;
  text-transform: uppercase; letter-spacing: .12em; font-weight: 600;
}
.site-nav a:hover, .site-nav a:focus { color: var(--brick); }
.nav-toggle { display: none; }

/* ---------- hero ---------- */
.hero {
  min-height: 92vh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  background:
    linear-gradient(rgba(20, 14, 8, .45), rgba(20, 14, 8, .72)),
    url("../images/theater/texas-neon-night.jpg") center / cover no-repeat;
  padding: 5rem 1.5rem;
}
.hero-content { max-width: 780px; }
.eyebrow {
  color: var(--gold); text-transform: uppercase; letter-spacing: .35em;
  font-size: .8rem; font-weight: 600; margin: 0 0 1.2rem;
}
.hero h1 { color: #fffdf5; font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 700; }
.hero-sub { color: #efe6d4; font-size: 1.15rem; max-width: 34em; margin: 1rem auto 2rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; background: var(--brick); color: #fffdf5;
  text-decoration: none; font-weight: 700; font-size: .85rem;
  text-transform: uppercase; letter-spacing: .1em;
  padding: .85rem 1.9rem; border-radius: 4px;
  transition: background .15s;
}
.btn:hover, .btn:focus { background: var(--brick-dark); }
.btn-ghost { background: transparent; box-shadow: inset 0 0 0 2px currentColor; }
.btn-ghost:hover, .btn-ghost:focus { background: rgba(255, 255, 255, .12); }
footer .btn-ghost, .hero .btn-ghost { color: #fffdf5; }

/* ---------- sections ---------- */
.section { padding: 4.5rem 1.5rem; scroll-margin-top: 4rem; }
.section-alt { background: var(--cream); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section h2 {
  text-align: center; font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 700;
}
.section h2::after {
  content: ""; display: block; width: 64px; height: 3px;
  background: var(--brick); margin: .55rem auto 0;
}
.section-lede { text-align: center; max-width: 46em; margin: 0 auto 2.5rem; color: var(--muted); }
.section-cta { text-align: center; margin-top: 2.5rem; }
.empty-note { text-align: center; color: var(--muted); font-style: italic; }
.fine-print { font-size: .85rem; color: var(--muted); }

.card {
  background: var(--card); border-radius: 10px; padding: 1.6rem 1.8rem;
  box-shadow: 0 2px 14px rgba(58, 42, 32, .08);
}
.card h3 { color: var(--brick); font-size: 1.25rem; }
.card ul { margin: 0; padding-left: 1.2em; }
.card li { margin-bottom: .6em; }

/* ---------- shows ---------- */
.poster-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.poster-grid figure {
  margin: 0; background: var(--card); border-radius: 10px; overflow: hidden;
  box-shadow: 0 3px 16px rgba(58, 42, 32, .14);
  transition: transform .15s;
}
.poster-grid figure:hover { transform: translateY(-4px); }
.poster-grid img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }

/* ---------- tickets ---------- */
.ticket-cards {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr 1fr 2fr;
  align-items: start;
}
.price-card { text-align: center; }
.price {
  font-family: var(--serif); font-size: 3.2rem; font-weight: 700;
  color: var(--brick); margin: .1em 0;
}
.price-card p:last-child { margin: 0; color: var(--muted); }
.where-card .btn { margin-top: 1rem; }

/* ---------- story ---------- */
.story-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 2.5rem; align-items: start; }
.story-invite { font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 1.15rem; color: var(--brick); }
.story-photos { margin: 0; display: grid; gap: 1.25rem; }
.story-photos img { border-radius: 10px; box-shadow: 0 3px 16px rgba(58, 42, 32, .18); }

.neon-band {
  background:
    linear-gradient(rgba(10, 8, 6, .55), rgba(10, 8, 6, .55)),
    url("../images/theater/texas-neon-night.jpg") center 30% / cover no-repeat;
  padding: 7rem 1.5rem; text-align: center;
}
.neon-band p {
  margin: 0; color: var(--gold); font-family: var(--serif); font-style: italic;
  font-weight: 600; font-size: clamp(1.4rem, 3.5vw, 2.1rem);
}

/* ---------- auditions ---------- */
.audition-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

/* ---------- scholarship ---------- */
.scholarship-card { max-width: 760px; margin: 0 auto; }
.scholarship-card p { margin-bottom: 0; }

/* ---------- gallery ---------- */
.photo-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.photo-grid figure { margin: 0; border-radius: 8px; overflow: hidden; }
.photo-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* ---------- board ---------- */
.board-list {
  list-style: none; padding: 0; max-width: 800px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem 2rem;
  text-align: center;
}
.board-list li { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; }

/* ---------- sponsors ---------- */
.sponsor-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  align-items: stretch;
}
.sponsor-grid figure {
  margin: 0; background: var(--card); border-radius: 10px; padding: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(58, 42, 32, .08);
}
.sponsor-grid img { max-height: 90px; width: auto; max-width: 100%; object-fit: contain; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--brick-dark); color: #f3ecdd;
  padding: 4.5rem 1.5rem 3rem; text-align: center;
}
.site-footer h2 { color: #fffdf5; font-size: clamp(1.9rem, 4vw, 2.6rem); }
.site-footer h2::after {
  content: ""; display: block; width: 64px; height: 3px;
  background: var(--gold); margin: .55rem auto 0;
}
.site-footer a { color: var(--gold); }
.site-footer .btn { background: var(--gold); color: var(--brick-dark); }
.site-footer .btn:hover, .site-footer .btn:focus { background: #eccb85; }
.address { font-size: 1.1rem; }
.footer-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin: 1.8rem 0; }
.social { margin-bottom: 1.5rem; letter-spacing: .05em; }
.site-footer .fine-print { color: #cbb9a4; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .ticket-cards { grid-template-columns: 1fr 1fr; }
  .where-card { grid-column: 1 / -1; }
  .story-grid { grid-template-columns: 1fr; }
  .story-photos { grid-template-columns: 1fr 1fr; align-items: start; }
}
@media (max-width: 720px) {
  .audition-cols { grid-template-columns: 1fr; }
  .board-list { grid-template-columns: repeat(2, 1fr); }
  .nav-toggle {
    display: block; background: none; border: 0; cursor: pointer; padding: .4rem;
  }
  .nav-toggle span {
    display: block; width: 24px; height: 2.5px; background: var(--ink);
    margin: 5px 0; border-radius: 2px; transition: transform .2s, opacity .2s;
  }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .site-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; gap: 0; background: var(--ivory);
    border-bottom: 2px solid var(--brick); padding: .5rem 0 1rem;
  }
  .nav-open .site-nav { display: flex; }
  .site-nav a { padding: .65rem 1.5rem; font-size: .9rem; }
}
@media (max-width: 480px) {
  .ticket-cards { grid-template-columns: 1fr; }
  .board-list { grid-template-columns: 1fr; }
}
