:root{
  --bg-image: url('../assets/background.jpg');
  --gold: #f3c31b;
  --gold-deep: #d4a000;
  --text: #fff7e6;
  --muted: #c8b99c;
  --font-headline: 'Bebas Neue', 'Oswald', Impact, system-ui, -apple-system, Arial, sans-serif;
  --font-body: 'Montserrat', system-ui, -apple-system, Segoe UI, Arial, sans-serif;
}
*{box-sizing:border-box}
html,body{height:100%}
body{ margin:0; color:var(--text); font-family:var(--font-body); background:#000; overflow-x:hidden; }

/* Background */
.bg{ position:fixed; inset:0; z-index:-2; }
.bg::before{ content:""; position:absolute; inset:0;
  background-image: var(--bg-image);
  background-size: cover; background-position: center top; }
.bg::after{ content:""; position:absolute; inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 70%, rgba(0,0,0,.9) 92%, #000 100%); }

/* Header */
.site-header{ position:fixed; inset:0 0 auto 0; height:48px; display:flex; align-items:center; padding:6px 12px; z-index:10; }
.menu-button{ display:flex; align-items:center; gap:8px; background:transparent; border:0; color:var(--text); font-family:var(--font-headline); font-size:16px; letter-spacing:.08em; cursor:pointer; text-shadow:0 2px 6px rgba(0,0,0,.6); }
.menu-button img{ width:18px; height:18px; filter:drop-shadow(0 2px 6px rgba(0,0,0,.7)); }

/* Layout */
#main{ min-height:100svh; display:flex; flex-direction:column; align-items:center; text-align:center; padding:72px 16px 120px; }
.strapline{ font-family:var(--font-headline); font-size: clamp(20px, 2.2vw + 12px, 42px); font-weight:700; letter-spacing:.06em; line-height:1.05; margin: 4px 0 20px; text-shadow: 0 3px 10px rgba(0,0,0,.75); }
.strapline span{ display:block; }

.two-col{ width:min(1200px, 92vw); display:grid; grid-template-columns: 1.1fr .9fr; align-items:center; gap:min(4vw, 40px); }
.hero-left{ display:grid; place-items:center; }
.hero-right{ display:grid; justify-items:center; row-gap:12px; }

.hero-art{ width:min(90vw, 600px); height:auto; filter: drop-shadow(0 18px 60px rgba(0,0,0,.75)); }
.logo-rect{ width:min(56vw, 420px); height:auto; box-shadow: 0 10px 30px rgba(0,0,0,.6); border:6px solid #000; }

.pretitle{ font-family: 'Oswald', var(--font-headline); color:#e7dcb9; letter-spacing:.08em; margin:0; text-shadow:0 2px 8px rgba(0,0,0,.75); }
.pretitle.cameron{ font-size:28px; }
.pretitle.presents{ font-size:12px; letter-spacing:.2em; opacity:.9; }
.pretitle.composers{ font-size:22px; }

.cta-row{ display:flex; gap:14px; margin-top:8px; flex-wrap:wrap; justify-content:center; }
.btn{ display:inline-flex; align-items:center; justify-content:center; min-width:150px; height:38px; padding:0 14px; text-decoration:none; font-family:var(--font-headline); letter-spacing:.08em; }
.btn-dark{ background:#000; color:var(--gold); border:2px solid var(--gold); box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 8px 18px rgba(0,0,0,.5); }
.btn-dark:hover{ filter:brightness(1.05); transform: translateY(-1px); }
.btn-dark:active{ transform: translateY(1px); }

/* Quote */
.quote{ margin: 28px auto 0; max-width: 980px; font-family:var(--font-headline); text-transform:uppercase; letter-spacing:.06em; }
.quote blockquote{ margin:0 0 6px 0; font-size: clamp(14px, 1.1vw + 10px, 22px); text-shadow: 0 2px 8px rgba(0,0,0,.8); }
.quote figcaption{ font-family:var(--font-body); font-size:12px; color:var(--muted); }

/* Footer */
.site-footer{ position:fixed; left:0; right:0; bottom:0; display:flex; align-items:center; justify-content:space-between; gap:16px; padding:8px 12px; color:#cfc5a6; background: linear-gradient(to top, rgba(0,0,0,.8), rgba(0,0,0,0)); z-index:5; }
.site-footer .social a img{ width:14px; height:14px; opacity:.9; }
.site-footer .social a{ margin-right:8px; }
.site-footer .theatre{ display:flex; align-items:center; gap:8px; font-size:10px; white-space:nowrap; }
.site-footer .theatre .sep{ opacity:.5; }
.site-footer .theatre .link{ color:#e2d7b0; text-decoration:none; border-bottom:1px dotted rgba(226,215,176,.45); }
.site-footer .newsletter{ display:flex; align-items:center; gap:6px; color:#e2d7b0; text-decoration:none; font-size:10px; }
.site-footer .newsletter img{ width:16px; height:16px; opacity:.9; }

/* Responsive */
@media (max-width: 900px){
  .two-col{ grid-template-columns: 1fr; gap:8px; }
  .hero-right{ margin-top:-6px; }
  .logo-rect{ width:min(80vw, 420px); }
}
@media (max-width: 520px){
  .menu-button span{ display:none; }
  .site-footer{ flex-wrap:wrap; justify-content:center; row-gap:6px; }
  .theatre{ display:none; }
}


/* ===== Overlay Menu ===== */
.overlay{ position: fixed; inset:0; z-index: 100; display:none; }
.overlay.is-open{ display:block; }
.overlay-backdrop{ position:absolute; inset:0; background: rgba(0,0,0,.8); backdrop-filter: blur(1px); }
.overlay-panel{
  position: absolute; inset:0;
  display: grid; place-items: center;
  padding: 24px;
}
.overlay-menu{ list-style:none; margin:0; padding:0; text-align:center; }
.overlay-menu a{
  display:block;
  font-family: var(--font-headline);
  font-size: clamp(18px, 2.2vw + 10px, 40px);
  color:#fff; text-decoration:none;
  letter-spacing:.06em;
  margin: 10px 0;
  text-shadow: 0 2px 6px rgba(0,0,0,.8);
  transition: transform .08s ease, color .2s ease;
}
.overlay-menu a:hover{ transform: translateY(-1px); color: var(--gold); }
.overlay-menu a.is-active{ color: var(--gold); }
/* small divider glow */
.overlay-menu a::after{
  content:""; display:block; width:0; height:2px; margin:6px auto 0;
  background: var(--gold); transition: width .2s ease;
}
.overlay-menu a:hover::after, .overlay-menu a.is-active::after{ width:48px; }

/* prevent background scroll when overlay is open */
html.noscroll, body.noscroll{ overflow:hidden; }

/* ===== Overlay Menu v2 ===== */
.overlay{ position: fixed; inset:0; z-index: 100; display:none; }
.overlay.is-open{ display:block; }
.overlay-backdrop{ position:absolute; inset:0; background: rgba(0,0,0,.85); backdrop-filter: blur(2px); }
.overlay-close{
  position: fixed; top:12px; left:14px; z-index:101;
  background:none; border:0; color: var(--gold); font-size:36px; line-height:1;
  cursor:pointer; text-shadow: 0 2px 8px rgba(0,0,0,.9);
}
.overlay-panel{ position: absolute; inset:0; display:grid; place-items:center; padding:24px; }
.overlay-menu{ list-style:none; margin:0; padding:0; text-align:center; }
.overlay-menu a{
  display:block;
  font-family: var(--font-headline);
  font-size: clamp(28px, 3.2vw + 12px, 58px);
  color:#fff; text-decoration:none;
  letter-spacing:.06em;
  margin: 12px 0;
  text-shadow: 0 3px 10px rgba(0,0,0,.9);
  transition: transform .08s ease, color .2s ease;
}
.overlay-menu a:hover{ transform: translateY(-1px); color: var(--gold); }
.overlay-menu a.is-active{ color: var(--gold); }
.overlay-menu a::after{
  content:""; display:block; width:0; height:3px; margin:8px auto 0;
  background: var(--gold); transition: width .2s ease;
}
.overlay-menu a:hover::after, .overlay-menu a.is-active::after{ width:64px; }

/* ===== Footer to match reference ===== */
.site-footer{ position:fixed; left:0; right:0; bottom:0; background:#0d0706; color:#e9dfc4; padding:10px 14px; z-index:5; }
.footer-inner{ display:flex; align-items:center; justify-content:space-between; gap:14px; }
.footer-left a img{ width:18px; height:18px; margin-right:10px; opacity:.95; }
.footer-center{ text-align:center; flex:1; }
.theatre-line{ font-family:'Oswald', var(--font-headline); font-size:12px; letter-spacing:.06em; color:#e9dfc4; }
.theatre-line .theatre-name{ font-weight:700; }
.legal-line{ margin-top:6px; font-size:11px; color:#b8ac91; }
.legal-line .link{ color:#f1d36a; text-decoration:none; border-bottom:1px dotted rgba(241,211,106,.45); }
.legal-line .muted{ color:#b8ac91; text-decoration:none; }
.footer-right{ color:#e9dfc4; text-decoration:none; font-size:12px; display:flex; align-items:center; gap:6px; }
.footer-right img{ width:18px; height:18px; }

/* ===== Quote Ticker ===== */
.quote{ margin: 34px auto 0; }
#quoteTicker blockquote{
  color:#f3c31b; /* gold text */
  font-weight:700;
}
#quoteTicker figcaption{
  color:#eae6db;
  opacity:.85;
}
#quoteTicker.fade-out{ opacity:0; transition: opacity .35s ease; }
#quoteTicker.fade-in{ opacity:1; transition: opacity .35s ease; }

@media (max-width: 520px){
  .footer-center{ display:none; }
}

/* ===== Overlay Close: yellow thin "X" ===== */
.overlay-close{ 
  width:28px; height:28px; position: fixed; top:14px; left:16px; z-index:101;
  background:none; border:0; padding:0; cursor:pointer;
}
.overlay-close::before,
.overlay-close::after{
  content:""; position:absolute; inset:0; margin:auto; width:26px; height:2px; 
  background: var(--gold); box-shadow: 0 0 6px rgba(0,0,0,.8);
  transform-origin: 50% 50%;
}
.overlay-close::before{ transform: rotate(45deg); }
.overlay-close::after{ transform: rotate(-45deg); }

/* Overlay menu sizing/spacing tweak */
.overlay-menu a{
  font-size: clamp(34px, 6vw, 72px);
  letter-spacing:.04em;
  margin: 10px 0;
}
.overlay-menu a::after{ height:4px; width:0; }
.overlay-menu a:hover::after, .overlay-menu a.is-active::after{ width:80px; }

/* Footer palette tuned to reference */
.site-footer{ background:#0a0605; color:#e9dfc4; padding:12px 18px; }
.theatre-line{ color:#e9dfc4; font-weight:600; }
.legal-line{ color:#bdb195; }
.legal-line .link{ color:#ffd42a; border-bottom:1px dotted rgba(255,212,42,.5); }
.footer-right{ color:#f2e7cb; }
.footer-left a img{ opacity:.9; }
