/* =============================================
   SHOWTIME THE DJ — SHARED STYLESHEET
   Covers: faq.html, wedding-dj-raleigh-nc.html,
           corporate-dj-raleigh-durham.html
============================================= */

/* =============================================
   CUSTOM PROPERTIES
============================================= */
:root {
  --black:        #111111;
  --black-lift:   #191919;
  --black-card:   #1E1E1E;
  --black-border: #2C2C2C;
  --red:          #CC0000;
  --red-dark:     #A80000;
  --white:        #FFFFFF;
  --white-body:   #EDECEA;
  --white-muted:  rgba(255,255,255,0.62);
  --white-faint:  rgba(255,255,255,0.18);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Raleway', sans-serif;
  --pad-section:  100px 0;
  --max-w:        1180px;
  --pad-x:        clamp(20px, 4vw, 48px);
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white-body);
  font-family: var(--font-body);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* =============================================
   EYEBROW + SECTION HEADINGS
============================================= */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.eyebrow-dash {
  width: 30px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.eyebrow-text {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}

.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.03em;
}
.section-h2 .accent { color: var(--red); }

/* =============================================
   BUTTONS
============================================= */
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: 2px;
  border: none;
  transition: background 0.22s ease;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--red-dark); }

.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.32);
  color: rgba(255,255,255,0.82);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: 2px;
  background: transparent;
  transition: border-color 0.22s ease, color 0.22s ease;
  white-space: nowrap;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.68); color: var(--white); }

/* =============================================
   NAVIGATION
============================================= */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 24px 0;
  transition: background 0.38s ease, padding 0.38s ease, border-color 0.38s ease;
  border-bottom: 1px solid transparent;
  background: rgba(15,15,15,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: var(--black-border);
}
#nav.scrolled {
  padding: 14px 0;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 1;
}
.nav-logo img {
  height: 60px;
  width: auto;
  display: block;
  transition: height 0.38s ease, opacity 0.2s ease;
}
.nav-logo img:hover { opacity: 0.85; }
#nav.scrolled .nav-logo img { height: 48px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--white-muted);
  transition: color 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-book {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 2px;
  transition: background 0.2s ease !important;
}
.nav-book:hover { background: var(--red-dark) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px 4px;
  z-index: 910;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile nav */
body.nav-open .nav-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: var(--black);
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 905;
}
body.nav-open .nav-links a {
  font-size: 18px;
  letter-spacing: 0.12em;
}

/* =============================================
   PAGE HERO (interior pages)
============================================= */
.page-hero {
  padding: 160px 0 80px;
  background: var(--black-lift);
  border-bottom: 1px solid var(--black-border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(204,0,0,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 90px);
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
}
.page-hero h1 .accent { color: var(--red); }
.page-hero-sub {
  font-size: 16px;
  color: var(--white-muted);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =============================================
   CONTENT SECTIONS
============================================= */
.section-pad {
  padding: var(--pad-section);
}
.section-pad-alt {
  padding: var(--pad-section);
  background: var(--black-lift);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
}
.section-intro {
  max-width: 640px;
  margin-bottom: 52px;
}
.section-intro p {
  font-size: 15px;
  color: var(--white-muted);
  line-height: 1.75;
  margin-top: 16px;
}

/* =============================================
   SERVICE LIST
============================================= */
.service-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 3px;
  padding: 20px 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white-body);
  line-height: 1.55;
}
.service-list li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--red);
  border-radius: 50%;
  margin-top: 5px;
}

/* =============================================
   PROOF BLOCKS (3-UP)
============================================= */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.proof-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-top: 3px solid var(--red);
  border-radius: 3px;
  padding: 32px 28px;
}
.proof-card-num {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--red);
  line-height: 1;
  margin-bottom: 10px;
}
.proof-card h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.proof-card p {
  font-size: 14px;
  color: var(--white-muted);
  line-height: 1.7;
}

/* =============================================
   VENUE GRID
============================================= */
.venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.venue-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 3px;
  padding: 24px 22px;
}
.venue-card-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 6px;
}
.venue-card-loc {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* =============================================
   COVERAGE / AREA LIST
============================================= */
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.area-tag {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 2px;
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-muted);
}

/* =============================================
   FAQ ACCORDION
============================================= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.faq-item {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 3px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 26px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.faq-question:hover { background: rgba(255,255,255,0.03); }
.faq-question h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.45;
}
.faq-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}
.faq-icon svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2.5;
  stroke-linecap: round;
  transition: transform 0.25s ease;
}
.faq-item.open .faq-icon { background: var(--red-dark); }
.faq-item.open .faq-icon svg { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}
.faq-item.open .faq-answer {
  max-height: 400px;
}
.faq-answer-inner {
  padding: 0 28px 26px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.68);
  line-height: 1.8;
}

/* =============================================
   CTA BAND
============================================= */
.cta-band {
  padding: 80px 0;
  background: var(--red);
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 16px;
}
.cta-band p {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.65;
}
.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--red);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 2px;
  transition: background 0.22s ease, color 0.22s ease;
}
.btn-white:hover { background: var(--white-body); }

/* =============================================
   EVENT TYPE GRID (Corporate)
============================================= */
.event-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.event-type-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-left: 3px solid var(--red);
  border-radius: 3px;
  padding: 22px 20px;
}
.event-type-card h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.event-type-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* =============================================
   FOOTER
============================================= */
#footer {
  background: #0A0A0A;
  padding: 64px 0 32px;
  border-top: 1px solid var(--black-border);
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 52px;
}
.footer-brand-name {
  display: block;
  margin-bottom: 14px;
}
.footer-brand-name img {
  height: 72px;
  width: auto;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.38);
  line-height: 1.75;
}
.footer-col-head {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 20px;
  display: block;
}
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s ease;
}
.footer-nav a:hover { color: var(--white); }
.footer-phone {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 10px;
  transition: color 0.22s ease;
}
.footer-phone:hover { color: var(--red); }
.footer-contact-note {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  line-height: 1.75;
}
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px var(--pad-x) 0;
  border-top: 1px solid var(--black-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy,
.footer-loc {
  font-size: 11.5px;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.04em;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 960px) {
  .proof-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --pad-section: 64px 0; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .proof-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .page-hero { padding: 130px 0 60px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .venue-grid { grid-template-columns: 1fr 1fr; }
  .event-type-grid { grid-template-columns: 1fr; }
}

/* =============================================
   CITY GRID (Wedding page — Cities We Serve)
============================================= */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.city-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-top: 3px solid var(--red);
  border-radius: 3px;
  padding: 26px 24px;
}
.city-card-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.city-card-copy {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.72;
}

@media (max-width: 640px) {
  .city-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .city-grid { grid-template-columns: 1fr; }
}
