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

:root {
  --gold: #C9A24B;           /* rich metallic gold — not yellow, pops on black */
  --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: 'Playfair Display', serif;
  font-weight: 800;
  background: linear-gradient(135deg, #a9822f 0%, #C9A24B 40%, #e6cd8a 68%, #C9A24B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  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: space-between;
  padding: 8px 14px;
}
nav.site-nav .brand {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  font-size: 18px;
  text-decoration: none;
  text-align: center;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav-top .book-btn {
  flex-shrink: 0;
}

.book-btn {
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  gap: 8px;
  white-space: nowrap;
}
.btn-icon {
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.book-btn.nav-btn .btn-icon { font-size: 16px; }
.book-btn:hover { background: #ffd93d; }
.book-btn.nav-btn {
  padding: 8px 14px;
  font-size: 15px;
  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: 1px 0;
  padding: 4px 8px 6px;
  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.02em;
  text-transform: uppercase;
  font-size: 14px;
  padding: 4px 6px;
  white-space: nowrap;
}
.tab-row a.current { background: linear-gradient(135deg, #a9822f 0%, #C9A24B 40%, #e6cd8a 68%, #C9A24B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold); }

main { padding-top: 150px; }

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

/* ===== HEADINGS ===== */
.eyebrow {
  background: linear-gradient(135deg, #a9822f 0%, #C9A24B 40%, #e6cd8a 68%, #C9A24B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 10px;
}
.tab-title {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  background: linear-gradient(135deg, #a9822f 0%, #C9A24B 40%, #e6cd8a 68%, #C9A24B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  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 {
  background: linear-gradient(135deg, #a9822f 0%, #C9A24B 40%, #e6cd8a 68%, #C9A24B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 22px;
  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: 16px; }
.video-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 20px;
  cursor: pointer;
  border: 1px solid var(--gold);
  border-radius: 6px;
  background: rgba(201,162,75,0.06);
}
.video-row .vid-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.video-row .vid-left {
  display: inline-flex;
  align-items: center;
}
.video-row .vid-num { color: var(--white); font-weight: 700; font-size: 18px; letter-spacing: 0.02em; }
.video-row .vid-title { color: var(--white); font-weight: 700; font-size: 18px; }
.video-row .vid-time { color: var(--white); font-size: 18px; }
.video-row.active { border-color: var(--gold); }

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

/* ===== MARQUEE PHOTOS ===== */
.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}
.photo-grid img {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 300;
  padding: 20px;
}
.photo-lightbox.open { display: flex; }
.photo-lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  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(--white); font-style: italic; font-size: 21px; }

/* ===== AWARDS ===== */
.award-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}
.award-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  padding: 10px 20px;
  cursor: pointer;
  border: 1px solid var(--gold);
  border-radius: 6px;
  background: rgba(201,162,75,0.06);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 18px rgba(201,162,75,0.35), 0 0 36px rgba(201,162,75,0.15);
}
.award-row::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 26px 26px 0;
  border-color: transparent var(--gold) transparent transparent;
}
.award-shimmer {
  position: relative;
  overflow: hidden;
}
.award-shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
  animation: shimmerSweep 3s infinite;
  pointer-events: none;
}
@keyframes shimmerSweep {
  0% { left: -150%; }
  15% { left: 150%; }
  100% { left: 150%; }
}
.award-row-title {
  color: var(--white);
  font-family: 'Marcellus', serif;
  font-size: 24px;
  letter-spacing: 0.02em;
}
.award-row-sub {
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 18px;
  opacity: 0.85;
}
.tap-note { text-align: center; color: var(--white); font-size: 18px; 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: 18px; margin-top: 4px; }
/* ===== 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(--white); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 18px; }
.contact-value { color: var(--white); font-size: 21px; }
.book-intro { color: var(--white); font-size: 24px; 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(--white);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  font-style: italic;
  font-size: 18px;
  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; }

/* ===== COPYRIGHT / TERMS NOTICE (identical on every tab) ===== */
.copyright-notice-wrap { text-align: center; margin: 6px 0 30px; }
.copyright-text {
  color: var(--white);
  font-size: 18px;
  line-height: 1.5;
  margin: 0 auto 10px;
  max-width: 600px;
}
.terms-tap-link {
  display: inline-block;
  color: var(--white);
  font-size: 18px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid var(--white);
  padding: 8px 16px;
}
.terms-tap-link:hover,
.terms-tap-link:active { background: rgba(255,255,255,0.08); }

/* ===== LEGAL TEXT OVERLAY (Terms of Use / Privacy Policy — tap to open, tap anywhere to close) ===== */
.legal-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 30px 24px;
  cursor: pointer;
}
.legal-lightbox.open { display: flex; }
.legal-lightbox-inner {
  max-width: 600px;
  max-height: 85vh;
  overflow-y: auto;
  text-align: left;
}
.legal-lightbox-inner h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: var(--white);
  font-size: 28px;
  margin-bottom: 20px;
}
.legal-lightbox-inner p {
  font-family: 'Raleway', Arial, sans-serif;
  color: var(--white);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 18px;
}
.legal-lightbox-hint {
  color: var(--white);
  font-size: 18px;
  opacity: 0.6;
  text-align: center;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

