/* ===== Billy Donato: Vegas Thunder — Shared Styles ===== */

:root {
  --gold: #FFCC00;           /* bright vibrant gold — pops on black */
  --gold-dim: #d4a900;
  --black: #000000;
  --panel: #0a0a0a;
  --white: #ffffff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

.heading-font {
  font-family: 'Abril Fatface', serif;
  color: var(--gold);
}

/* ===== NAV ===== */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.96);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-top {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 12px 14px;
}
nav.site-nav .brand {
  font-family: 'Abril Fatface', serif;
  color: var(--white);
  font-size: 18px;
  text-decoration: none;
  text-align: center;
}
.nav-top .book-btn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}

.book-btn {
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.book-btn:hover { background: #ffd93d; }
.book-btn.nav-btn {
  padding: 10px 16px;
  font-size: 14px;
  gap: 5px;
}

/* Always-visible, centered tab row -- no hidden menu, no extra tap */
.tab-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px 0;
  padding: 8px 10px 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.tab-row a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 15px;
  padding: 7px 10px;
  white-space: nowrap;
}
.tab-row a.current { color: var(--gold); }

main { padding-top: 118px; }

@media (min-width: 480px) {
  .tab-row a { font-size: 16px; padding: 7px 14px; }
}

/* ===== HEADINGS ===== */
.eyebrow {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 10px;
}
.tab-title {
  font-family: 'Abril Fatface', serif;
  color: var(--gold);
  /* sized to guarantee "Officially Honored" (the longest tab title) fits on
     one line on a 375px-wide phone; applied identically to all tab titles
     so size/color/style match exactly across Performances, On The Record,
     Officially Honored, and Book Billy per spec */
  font-size: clamp(24px, calc(7.5vw - 2px), 50px);
  line-height: 1.15;
  margin: 0 0 6px 0;
  white-space: nowrap;
}
.tab-underline {
  width: 70px;
  height: 3px;
  background: var(--gold);
  margin: 14px 0 30px 0;
}
.section-label {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 18px;
}

/* ===== SECTIONS ===== */
section.page-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px;
}
.body-text { color: var(--white); font-size: 18px; }

/* ===== VIDEO BLOCKS (used on Home hero + Performances vignettes) ===== */
.video-block { margin-bottom: 22px; }
.video-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.video-row .vid-left { display: flex; align-items: center; gap: 18px; }
.video-row .vid-num { color: var(--white); font-weight: 700; font-size: 20px; width: 32px; }
.video-row .vid-title { color: var(--white); font-weight: 700; font-size: 20px; }
.video-row .vid-time { color: var(--white); font-size: 18px; margin-left: 8px; }
.video-row .chevron { color: var(--gold); font-size: 22px; transition: transform 0.2s; }
.video-row.active .chevron { transform: rotate(90deg); }

.video-embed {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.video-embed.open { max-height: 700px; }
.video-embed .frame-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #111;
  border: 1px solid rgba(255,204,0,0.15);
  margin: 16px 0;
}
.video-embed iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}

/* ===== MARQUEE PHOTOS ===== */
.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== QUOTES ===== */
.quote-block { border-left: 3px solid var(--gold); padding-left: 20px; margin-bottom: 34px; }
.quote-text { font-style: italic; font-size: 21px; color: var(--white); margin-bottom: 12px; }
.quote-attr { color: var(--gold); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 18px; }

/* ===== AWARDS ===== */
.award-card {
  border: 1px solid var(--gold);
  padding: 34px 24px;
  text-align: center;
  margin-bottom: 24px;
}
.award-star { color: var(--gold); font-size: 26px; margin-bottom: 14px; }
.award-title { color: var(--white); font-weight: 700; font-size: 23px; margin-bottom: 8px; }
.award-sub { color: var(--white); font-size: 17px; text-transform: uppercase; letter-spacing: 0.06em; }
.tap-note { text-align: center; color: var(--white); font-size: 17px; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 20px; }

/* ===== ON THE RECORD ===== */
.record-item { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); color: var(--white); font-size: 18px; }
.record-note { display: block; color: var(--white); font-style: italic; font-size: 16px; margin-top: 4px; }
.resume-links { display: flex; flex-direction: column; gap: 14px; margin-top: 30px; }
.resume-links a {
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 15px;
  text-align: center;
  padding: 16px;
  text-decoration: none;
}
.resume-links a:hover { background: var(--gold); color: #000; }

/* ===== BOOK BILLY ===== */
.contact-row { display: flex; justify-content: space-between; align-items: baseline; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.contact-label { color: var(--gold); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 16px; }
.contact-value { color: var(--white); font-size: 21px; }
.book-intro { color: var(--white); font-size: 18px; margin-bottom: 26px; }

/* ===== FOOTER ===== */
footer.site-footer {
  text-align: center;
  padding: 50px 20px 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 30px;
}
.footer-tagline {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 17px;
  margin-bottom: 16px;
}
.footer-legal {
  color: var(--white);
  font-size: 18px;
}
.footer-legal a { color: var(--white); text-decoration: underline; }

/* ===== BOTTOM BOOK BUTTON ===== */
.bottom-book-wrap { text-align: center; padding: 20px 24px 10px; }

/* ===== MODAL (Officially Honored certificate view) ===== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.9);
  display: none; align-items: center; justify-content: center;
  z-index: 200; padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box { max-width: 500px; width: 100%; text-align: center; }
.modal-close {
  position: absolute; top: 20px; right: 24px;
  color: var(--white); font-size: 34px; background: none; border: none; cursor: pointer;
}
.modal-title { color: var(--white); font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.modal-sub { color: var(--white); font-size: 16px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 24px; }
