/* =========================
   Lead Singer Wanted Styles
   ========================= */

/* Variables */
:root{
  --bg: #141414;
  --panel: #1f1f1f;
  --panel2: #262626;
  --text: #f2f2f2;
  --muted: #c9c9c9;
  --border: #333;
  --accent: #ff6600;
  --accent2: #990000;
}

/* Base reset */
*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.4;
  overflow-x: hidden;
}
img{ max-width: 100%; height: auto; display: block; }
a{ color: var(--accent); text-decoration: none; }
a:hover{ text-decoration: underline; }
code{
  background: #0f0f0f;
  padding: 2px 6px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

/* Utility */
.sixtyfour-convergence{
  font-family: "Sixtyfour Convergence", serif;
}
.muted{ color: var(--muted); }
.small{ font-size: .9rem; }
.divider{
  height: 1px;
  background: var(--border);
  margin: 18px 0;
}

/* Page container */
.page{
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding-bottom: 120px; /* for mobile nav / back to top */
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1900;
  background: rgba(20,20,20,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  position: relative;
}
.brand{ display: flex; align-items: center; justify-content: center; }
#logo-carousel{
  width: 100vw;
  height: 70px;
  overflow: hidden;
  position: relative;
}
#logo-track{
  display: flex;
  align-items: center;
  height: 100%;
}
#logo-track img{
  width: 300px;
  height: auto;
  max-height: 70px;
  object-fit: contain;
  flex-shrink: 0;
  padding: 0 20px;
}
/* Hamburger */
#hamburger{
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
}
#hamburger .bar{
  width: 100%;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
#hamburger.open .bar:nth-child(1){ transform: translateY(7px) rotate(45deg); }
#hamburger.open .bar:nth-child(2){ opacity: 0; }
#hamburger.open .bar:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
#mobileNav{
  position: fixed;
  top: 64px;
  right: -320px;
  width: 320px;
  height: calc(100vh - 64px);

  /* Dark panel matching site theme */
  background: #1f1f1f !important;
  color: #f2f2f2 !important;

  border-left: 2px solid #ff6600;

  /* DEPTH - glow effect to stand out from overlay */
  box-shadow:
    -16px 0 60px rgba(255,102,0,0.15),
    -2px 0 20px rgba(0,0,0,0.6),
    0 0 1px rgba(255,102,0,0.3);

  transition: right .25s ease;
  overflow-y: auto;
  z-index: 2000;
  padding: 16px 0;
}
#mobileNav.open{ right: 0; }

/* Overlay behind mobile nav (invisible, just for click-to-close) */
#navOverlay{
  position: fixed;
  inset: 0;
  background: transparent;
  visibility: hidden;
  z-index: 1800; /* between header and drawer */
}

#navOverlay.show{
  opacity: 1;
  visibility: visible;
}

.nav-list{
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-list a{
  display: block;
  padding: 14px 20px;
  color: #f2f2f2 !important;
  text-decoration: none;
  border-bottom: 1px solid #333;
  transition: background .15s ease, color .15s ease, padding-left .15s ease;
}
.nav-list a:hover{
  background: linear-gradient(90deg, rgba(255,102,0,.2), transparent);
  color: #ff6600 !important;
  padding-left: 28px;
  text-decoration: none;
}

/* Sections */
.section{
  margin: 28px 0 0;
}
.section-head{
  margin-bottom: 12px;
}
.section h2{
  margin: 0 0 6px;
  font-size: 1.8rem;
}
.section p{ margin: 6px 0; }

/* Cards */
.card{
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,.35);
}

/* Hero */
.hero{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  padding: 18px 0 0;
}
.hero-media{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
}
.hero-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-copy .kicker{
  color: var(--muted);
  letter-spacing: 1px;
  font-size: .95rem;
  margin: 0 0 10px;
}
.hero-copy h1{
  margin: 0 0 10px;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.05;
}
.hero-copy .subhead{
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Buttons */
.cta-row{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 0;
}
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #111;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}
.btn:hover{
  text-decoration: none;
  background: #1a1a1a;
}
.btn.primary{
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  border: none;
}
.btn.primary:hover{
  filter: brightness(1.05);
}

/* Trust pills */
.trust-row{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.pill{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding: 8px 10px;
  border-radius: 999px;
  font-size: .9rem;
  color: var(--muted);
}
.pill i{ margin-right: 8px; color: var(--accent); }

/* Two-column layout */
.grid-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Tables */
.table-wrap{ overflow-x: auto; }
table{
  width: 100%;
  border-collapse: collapse;
  background: #141414;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
thead{
  background: linear-gradient(90deg, var(--accent2), var(--accent));
}
th, td{
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-align: left;
}
tbody tr:nth-child(even){
  background: rgba(255,255,255,.03);
}

/* Song background text card */
.text-as-bg{
  position: relative;
  overflow: hidden;
}
.text-as-bg::before{
  content: attr(data-bg-text);
  position: absolute;
  inset: 0;
  padding: 18px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,.10);
  pointer-events: none;
  white-space: normal;
}
.song-teaser-inner{
  position: relative;
  z-index: 1;
}
.song-teaser-inner .big{
  font-size: 1.15rem;
  margin: 0 0 10px;
}

/* Bullets */
.bullets{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.bullets li{ margin: 6px 0; }
.bullets strong{ color: var(--text); }

/* Video embed (responsive + NOT huge) */
.video-card{
  max-width: 980px;      /* keeps it from becoming absurd on wide screens */
  margin: 0 auto;
}
.video-embed{
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;    /* modern way */
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
}
.video-embed iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Booking form layout */
.form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
}

.field{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field--full{
  grid-column: 1 / -1;
}

form label{
  font-weight: 700;
  color: var(--text);
}

form input,
form textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-size: 1rem;
}

form input:focus,
form textarea:focus{
  outline: none;
  border-color: rgba(255,102,0,.65);
  box-shadow: 0 0 0 3px rgba(255,102,0,.15);
}

.btn-submit{
  width: fit-content;
  padding: 12px 16px;
}

.form-feedback{
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
}
.form-feedback--success{
  background: rgba(34,197,94,.12);
  color: #4ade80;
}
.form-feedback--error{
  background: rgba(239,68,68,.12);
  color: #f87171;
}

/* Mobile: stack into 1 column */
@media (max-width: 700px){
  .form-grid{
    grid-template-columns: 1fr;
  }
  .btn-submit{
    width: 100%;
  }
}

/* FAQ details */
details{
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  padding: 10px 12px;
  margin: 10px 0;
  background: rgba(255,255,255,.03);
}
summary{
  cursor: pointer;
  font-weight: 700;
}
details p{ margin: 10px 0 0; color: var(--muted); }

/* Long-form guide article */
.guide-article{ max-width: 760px; margin: 0 auto; padding: 60px 24px 80px; }
.guide-article h1{ font-size: 2.2rem; line-height: 1.2; margin-bottom: 12px; }
.guide-subtitle{ font-size: 1.1rem; margin-bottom: 48px; line-height: 1.6; }
.guide-section{ margin-bottom: 48px; }
.guide-section h2{ font-size: 1.5rem; margin-bottom: 16px; }
.guide-section h3{ font-size: 1.15rem; margin-top: 28px; margin-bottom: 8px; }
.guide-section p{ color: var(--muted); line-height: 1.75; margin-bottom: 16px; }
.guide-section p:last-child{ margin-bottom: 0; }
.guide-section a{ color: var(--accent); text-decoration: underline; }
.guide-section strong{ color: var(--text); }

/* "More FAQ" parent toggle */
.faq-more{
  border: none;
  background: none;
  padding: 0;
  margin-top: 8px;
}
.faq-more > summary{
  font-size: .95rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .5px;
  list-style: none;
}
.faq-more > summary::-webkit-details-marker{ display: none; }
.faq-more > summary::before{
  content: '+ ';
}
.faq-more[open] > summary::before{
  content: '- ';
}
.faq-more-inner{
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-more-inner details{
  margin-bottom: 12px;
}

/* Songlist controls */
.songlist-controls{
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 12px;
}
.songlist-controls #q{
  flex: 0 1 auto;
  width: 40%;
  min-width: 0;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-size: 1.25rem;
}
.songlist-controls #q:focus{
  outline: none;
  border-color: rgba(255,102,0,.65);
  box-shadow: 0 0 0 3px rgba(255,102,0,.15);
}

/* Back link for subpages */
.back-link{
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 1.2rem;
  padding: 8px;
  transition: color .15s ease;
}
.back-link:hover{
  color: var(--accent);
  text-decoration: none;
}

/* Song request toggle button */
.songlist-controls .btn{
  flex: 0 0 auto;
}
.songlist-controls .download-btn{
  padding-left: 28px;
  padding-right: 28px;
}
.request-toggle-btn{
  flex: 0 0 auto;
  padding: 14px 22px;
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.request-toggle-btn span{
  font-weight: 400;
  font-size: .85rem;
}

/* Song request form */
.request-form{
  border: 1px solid rgba(255,102,0,.25);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  background: rgba(255,102,0,.04);
}
.request-form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
}
.request-form-actions{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.request-form-actions .btn,
.request-form-actions .btn-submit{
  width: auto;
  min-width: 180px;
  text-align: center;
}

/* Sort buttons in table header */
.sort-btn{
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sort-btn:hover{ color: var(--accent); }
.sort-icon{
  font-size: .75rem;
  opacity: .5;
  min-width: 1em;
  display: inline-block;
}
.sort-btn.active .sort-icon{ opacity: 1; }

@media (max-width: 700px){
  .songlist-controls{
    flex-direction: column;
  }
  .songlist-controls #q{
    width: 100%;
  }
  .songlist-controls .btn{
    width: 100%;
  }
  .request-form-grid{
    grid-template-columns: 1fr;
  }
}

/* Social strip */
.social-strip{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  margin-top: 28px;
}
.social-strip span{
  font-size: .95rem;
}
.social-strip a{
  color: var(--muted);
  font-size: 1.4rem;
  transition: color .15s ease;
}
.social-strip a:hover{
  color: var(--accent);
  text-decoration: none;
}

/* Credentials strip */
.credentials{
  text-align: center;
  padding: 18px 0 6px;
  border-bottom: 1px solid var(--border);
}
.credentials-label{
  font-size: .7rem;
  letter-spacing: 3px;
  color: var(--muted);
  opacity: .6;
  margin: 0 0 10px;
  font-weight: 700;
}
.credentials-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 16px;
  padding: 0 10px;
}
.credential{
  font-size: .85rem;
  color: var(--text);
  white-space: nowrap;
}
.credential i{
  color: var(--accent);
  margin-right: 5px;
  font-size: .75rem;
}

/* Venue highlights */
.venue-highlights{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}
.venue-card{
  padding: 14px 16px;
}
.venue-card h3{
  margin: 0 0 4px;
  font-size: 1.1rem;
}
.venue-card p{
  margin: 0;
}
.venue-card-label{
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 4px;
}
.venue-card--featured{
  border-color: rgba(255,102,0,.3);
  background: linear-gradient(135deg, var(--panel), rgba(255,102,0,.06));
}

/* Venue stats row */
.venue-range{
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 16px 0;
}
.venue-stat{
  text-align: center;
}
.venue-stat-number{
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
}
.venue-stat-label{
  font-size: .8rem;
  color: var(--muted);
}

/* Testimonials */
.testimonials-grid{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}
.testimonial-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px 28px;
}
.testimonial-logo{
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}
.testimonial-logo-placeholder{
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 2rem;
  color: var(--accent);
  opacity: .6;
}
.testimonial-quote{
  margin: 0 0 18px;
  font-style: italic;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
}
.testimonial-attribution{
  margin: auto 0 0;
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.4;
}
.testimonial-attribution strong{
  color: var(--text);
  font-size: .85rem;
}

.google-rating{
  text-align: center;
  margin: 18px 0 0;
  font-size: .9rem;
  color: var(--muted);
}
.google-rating i{
  color: #4285F4;
  margin-right: 6px;
}
.google-rating strong{
  color: var(--text);
}

@media (max-width: 900px){
  .testimonials-grid{
    grid-template-columns: 1fr;
  }
}

/* EPK page */
.epk-hero{
  text-align: center;
  padding-top: 24px;
  margin-left: auto;
  margin-right: auto;
}
.epk-hero .kicker{
  color: var(--muted);
  letter-spacing: 3px;
  font-size: .8rem;
  margin: 0 0 12px;
}
.epk-hero h1{
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  margin: 0 0 16px;
}
.epk-subhead{
  font-size: 1.05rem;
  max-width: none;
  margin: 0 auto 8px;
  text-align: center;
}
.epk-tagline{
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--text);
  margin: 28px 0 4px;
}
.epk-hero .cta-row{
  justify-content: center;
  margin-top: 20px;
}
.epk-pricing-card{
  max-width: 680px;
  margin: 0 auto;
}
.epk-pricing-card .cta-row{
  justify-content: flex-start;
}

/* Map */
.map-card{
  padding: 0;
  overflow: hidden;
}
.map-card iframe{
  width: 100%;
  height: 520px;
  border: 0;
  display: block;
}
.venue-map-toggle{
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,.03);
}
.venue-map-toggle summary{
  cursor: pointer;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
}

/* Footer */
.site-footer{
  border-top: 1px solid var(--border);
  padding: 18px 0;
  color: var(--muted);
  text-align: center;
}

/* Back to top */
#backToTop{
  position: fixed;
  bottom: 18px;
  right: 18px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(20,20,20,.92);
  color: var(--text);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
  z-index: 1000;
}
#backToTop.show{
  opacity: 1;
  visibility: visible;
}
#backToTop .backtxt{
  font-size: .7rem;
  color: var(--muted);
  margin-left: 6px;
}

/* Sticky Book Us button */
.sticky-book{
  position: fixed;
  bottom: 18px;
  left: 18px;
  padding: 10px 22px;
  font-size: .85rem;
  border-radius: 8px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.sticky-book.show{
  opacity: 1;
  visibility: visible;
}
@media(max-width:600px){
  .sticky-book{
    bottom: 14px;
    left: 14px;
    padding: 8px 18px;
    font-size: .8rem;
  }
}

/* Show status badges */
.show-status{
  display: inline-block;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-left: 8px;
}
.show-status--sold-out{
  background: var(--accent2);
  color: var(--text);
}
.show-status--cancelled{
  background: #444;
  color: var(--muted);
  text-decoration: line-through;
}
tr.sold-out td{ opacity: .7; }
tr.cancelled td{
  opacity: .5;
  text-decoration: line-through;
}

/* Responsive */
@media (max-width: 900px){
  .hero{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  #logo-carousel{ width: 100vw; }
  #logo-track img{ width: 200px; padding: 0 10px; }
  .map-card iframe{ height: 420px; }
  .venue-highlights{ grid-template-columns: 1fr; }
  .venue-range{ gap: 18px; }
  .venue-stat-number{ font-size: 1.3rem; }
  .credentials-list{ gap: 4px 12px; }
  .credential{ font-size: .78rem; }
}

/* Accessibility: respect reduced motion preferences */
@media (prefers-reduced-motion: reduce){
  *,
  *::before,
  *::after{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
