/* ==============================================
   RESET & VARIABLES
============================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:   #C8102E;
  --navy:  #0C2340;
  --gold:  #F5A623;
  --white: #FFFFFF;
  --light: #F4F4F4;
  --dark:  #111111;
  --gray:  #666666;
  --max:   1300px;
  --sp:    72px 56px;
  --fd:    'Bebas Neue', 'Impact', sans-serif;
  --fb:    'Open Sans', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--fb);
  color: var(--dark);
  overflow-x: hidden;
  background-color: car(--navy);
  background-image: url('/public/uploads/Detroit-Tigers-Stadium-Wallpaper.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  background: rgba(8, 20, 40, 0.5);
  z-index: 0;
  pointer-events: none;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
h1, h2, h3, h4 { font-family: var(--fd); letter-spacing: 0.04em; line-height: 1.1; }

/* ==============================================
   PAGE WRAP
============================================== */
#page-wrap {
  position: relative; z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  background: var(--white);
  box-shadow: 0 8px 60px rgba(0,0,0,0.45);
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}

/* ==============================================
   HEADER
============================================== */
#site-header {
  position: fixed; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: var(--max); z-index: 1000;
  background: rgba(12, 35, 64, 0.97); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 32px;
  border-bottom: 3px solid var(--red);
  transition: box-shadow 0.3s;
}
#site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.45); }
#site-header .logo img { height: 82px; width: auto; }

#site-nav ul { display: flex; gap: 22px; align-items: center; }
#site-nav a  { font-family: var(--fd); font-size: 1.2rem; letter-spacing: 0.08em; color: var(--white); transition: color 0.2s; font-weight:500; }
#site-nav a:hover { color: var(--gold); }
#site-nav .btn-tickets { background: var(--red); color: var(--white); padding: 8px 20px; border-radius: 4px; }
#site-nav .btn-tickets:hover { background: #a50d25; }

#nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
#nav-toggle span { width: 26px; height: 3px; background: var(--white); border-radius: 2px; display: block; transition: 0.3s; }

/* ==============================================
   HERO SLIDER
============================================== */
#hero {
  position: relative; width: 100%;
  height: 700px; max-height: 700px;
  overflow: hidden; background: var(--navy);
  margin-top: 98px;
}
.slides-container { position: relative; width: 100%; height: 100%; }

.slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 0.9s ease;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
}
.slide.active { opacity: 1; }
.slide::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(12,35,64,0.3) 0%, rgba(12,35,64,0.72) 100%);
}

.slide-content { position: relative; z-index: 2; text-align: center; padding: 0 48px; max-width: 820px; }
.slide-content h2 { font-size: clamp(2.2rem, 5vw, 5rem); color: var(--white); text-shadow: 0 3px 16px rgba(0,0,0,0.5); margin-bottom: 12px; }
.slide-content p  { font-size: clamp(0.95rem, 2vw, 1.3rem); color: rgba(255,255,255,0.88); margin-bottom: 28px; font-family: var(--fd); letter-spacing: 0.1em; }

.slide-btn { display: inline-block; font-family: var(--fd); font-size: 1.05rem; letter-spacing: 0.1em; padding: 13px 40px; border-radius: 6px; transition: transform 0.2s, background 0.2s; }
.slide-btn.btn-red     { background: var(--red); color: var(--white); }
.slide-btn.btn-red:hover { background: #a50d25; transform: translateY(-2px); }
.slide-btn.btn-outline { background: transparent; border: 2px solid var(--white); color: var(--white); }
.slide-btn.btn-outline:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }

.slider-dots { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
.slider-dot  { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.38); border: 2px solid rgba(255,255,255,0.6); cursor: pointer; transition: background 0.3s, transform 0.3s; padding: 0; }
.slider-dot.active { background: var(--gold); border-color: var(--gold); transform: scale(1.25); }

.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(12,35,64,0.55); border: 2px solid rgba(255,255,255,0.3); color: var(--white); width: 48px; height: 48px; border-radius: 50%; cursor: pointer; font-size: 1.3rem; display: flex; align-items: center; justify-content: center; transition: background 0.2s; line-height: 1; }
.slider-arrow:hover { background: rgba(200,16,46,0.8); }
.slider-arrow.prev { left: 22px; }
.slider-arrow.next { right: 22px; }

/* ==============================================
   SECTIONS — BASE
============================================== */
.dho-section { padding: var(--sp); position: relative; }
.dho-section + .dho-section { border-top: 1px solid rgba(0,0,0,0.07); }

.bg-white { background: var(--white); }
.bg-light { background: var(--light); }
.bg-navy  { background: var(--navy); }
.bg-red   { background: var(--red); }
.bg-dark  { background: var(--dark); }

.bg-navy .section-title, .bg-dark .section-title, .bg-red .section-title { color: var(--white); }
.bg-navy p, .bg-dark p, .bg-red p { color: rgba(255,255,255,0.85); }
.bg-navy li, .bg-red li { color: var(--white); }

.section-title    { font-size: clamp(1.9rem, 4vw, 3rem); color: var(--navy); margin-bottom: 8px; }
.section-subtitle { font-family: var(--fd); font-size: 1rem; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 36px; }
.section-body     { font-size: 1rem; line-height: 1.8; color: var(--gray); }
.bg-navy .section-body, .bg-dark .section-body, .bg-red .section-body { color: rgba(255,255,255,0.82); }

.layout-single  { max-width: 820px; margin: 0 auto; text-align: center; }
.layout-two-col { display: flex; gap: 54px; align-items: flex-start; flex-wrap: wrap; }
.layout-two-col .col { flex: 1 1 300px; }
.layout-two-col .col-image img { width: 100%; border-radius: 8px; box-shadow: 0 6px 28px rgba(0,0,0,0.13); }

.btn { display: inline-block; font-family: var(--fd); letter-spacing: 0.1em; font-size: 1.05rem; padding: 13px 38px; border-radius: 6px; transition: transform 0.2s, box-shadow 0.2s, background 0.2s; cursor: pointer; margin-top: 22px; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.22); }
.btn-primary       { background: var(--red); color: var(--white); }
.btn-primary:hover { background: #a50d25; }
.btn-outline-white { background: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); }

.feature-list { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.feature-list li { font-family: var(--fd); font-size: 1.1rem; letter-spacing: 0.04em; padding-left: 22px; position: relative; }
.feature-list li::before { content: '▸'; position: absolute; left: 0; color: var(--red); }

/* ==============================================
   CALL-OUT TEXT
============================================== */
.callout-text { font-family: var(--fd); font-size: 1rem; letter-spacing: 0.05em; color: var(--gray); margin-top: 20px; }
.callout-text a { color: var(--red); }

/* ==============================================
   VIDEOS
============================================== */
.video-grid  { display: flex; justify-content: space-between; gap: 30px; margin-top: 10px; }
.video-card  { flex: 1 1 0; min-width: 0; }
.video-label { font-family: var(--fd); color: var(--gold); font-size: 1.1rem; letter-spacing: 0.08em; margin-bottom: 10px; text-align: center; }
.video-embed-wrap { position: relative; width: 100%; padding-top: 56.25%; background: #000; border-radius: 8px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.45); border: 2px solid rgba(245,166,35,0.25); }
.video-embed-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(12,35,64,0.75); color: rgba(255,255,255,0.45); font-family: var(--fd); font-size: 0.9rem; letter-spacing: 0.08em; text-align: center; padding: 20px; }

/* ==============================================
   PRESS
============================================== */
.press-grid { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 16px; }
.press-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.1); max-width: 300px; flex: 1 1 200px; transition: transform 0.2s, box-shadow 0.2s; }
.press-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.16); }
.press-card img { width: 100%; height: 200px; object-fit: cover; }
.press-outlet { padding: 12px 16px; font-family: var(--fd); color: var(--red); letter-spacing: 0.06em; }

/* ==============================================
   DJ BADGES
============================================== */
.dj-list  { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 18px 0 32px; }
.dj-badge { background: rgba(255,255,255,0.1); border: 1px solid rgba(245,166,35,0.4); color: var(--white); font-family: var(--fd); font-size: 0.92rem; letter-spacing: 0.06em; padding: 8px 18px; border-radius: 40px; }

/* ==============================================
   SPONSORS — white bg, 200px wide
============================================== */
.sponsors-gallery {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 16px; margin-top: 20px;
}
.sponsor-item {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 14px 20px;
  width: 200px;
  height: 100px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.sponsor-item:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.sponsor-item img { max-height: 64px; max-width: 160px; width: auto; height: auto; object-fit: contain; }

/* ==============================================
   CONTACT
============================================== */
.bg-navy input[type="text"],
.bg-navy input[type="email"],
.bg-navy input[type="tel"],
.bg-navy textarea,
.bg-navy select {
  width: 100%; padding: 12px 15px;
  background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.22);
  border-radius: 6px; color: var(--white); font-family: var(--fb); font-size: 1rem;
  margin-bottom: 14px; transition: border-color 0.2s;
  -webkit-appearance: none; appearance: none;
}
.bg-navy input:focus, .bg-navy textarea:focus, .bg-navy select:focus { outline: none; border-color: var(--gold); }
.bg-navy textarea { min-height: 120px; resize: vertical; }
.bg-navy label { color: rgba(255,255,255,0.7); font-size: 0.88rem; display: block; margin-bottom: 5px; }
.bg-navy input[type="submit"] {
  background: var(--red); color: var(--white); font-family: var(--fd); font-size: 1.15rem;
  letter-spacing: 0.1em; padding: 14px 48px; border: none; border-radius: 6px;
  cursor: pointer; transition: background 0.2s, transform 0.2s; width: 100%; margin-top: 6px;
}
.bg-navy input[type="submit"]:hover { background: #a50d25; transform: translateY(-2px); }
.bg-navy select option { background: var(--navy); color: var(--white); }

.check-row { display: flex; gap: 10px; align-items: center; margin-bottom: 14px; }
.check-row input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin: 0; accent-color: var(--red); cursor: pointer; }
.check-row label { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin: 0; }

/* ==============================================
   CHARITY
============================================== */
#charity { text-align: center; background: var(--dark); padding: 52px 56px; }
#charity h2  { color: var(--white); margin-bottom: 20px; }
#charity img { max-width: 260px; margin: 0 auto 20px; }
#charity a   { color: var(--gold); font-family: var(--fd); font-size: 1.05rem; letter-spacing: 0.06em; }

/* ==============================================
   WIN
============================================== */
#win   { text-align: center; background: var(--red); padding: 52px 56px; }
#win h2 { color: var(--white); margin-bottom: 12px; }
#win p  { color: rgba(255,255,255,0.88); margin-bottom: 24px; }

/* ==============================================
   FOOTER
============================================== */
#site-footer { background: #07111f; padding: 34px 56px; text-align: center; border-top: 3px solid var(--red); }
.footer-social { display: flex; justify-content: center; gap: 22px; margin-bottom: 16px; }
.footer-social a { color: rgba(255,255,255,0.55); font-family: var(--fd); letter-spacing: 0.08em; font-size: 0.9rem; transition: color 0.2s; }
.footer-social a:hover { color: var(--gold); }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.8rem; line-height: 1.7; }

/* ==============================================
   SCROLL REVEAL
============================================== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ==============================================
   SECTION TEXT HELPERS (replacing inline styles)
============================================== */
.text-center { text-align: center; }
.subtitle-red { color: var(--red); }
.ent-photo { border-radius: 8px; max-height: 420px; object-fit: cover; width: 100%; }
.bus-photo { margin: 32px auto 0; max-width: 480px; border-radius: 8px; box-shadow: 0 6px 28px rgba(0,0,0,0.25); }
.sponsor-cta { margin-top: 44px; }
.sponsor-cta p { font-family: var(--fd); font-size: 1.1rem; letter-spacing: 0.06em; color: var(--gray); margin-bottom: 16px; }
.vendor-wide { padding: 18px 40px; }
.vendor-wide img { max-height: 44px; max-width: 220px; }
.bus-heading { font-family: var(--fd); font-size: 1.6rem; color: var(--white); margin-bottom: 14px; letter-spacing: 0.05em; }
.bus-text { font-size: 1.05rem; line-height: 1.75; }

/* ==============================================
   RESPONSIVE
============================================== */
@media (max-width: 1340px) {
  #site-header { max-width: 100%; }
  #page-wrap   { max-width: 100%; border-radius: 0; }
}
@media (max-width: 920px) {
  :root { --sp: 52px 28px; }
  #hero { height: 75vw; max-height: 500px; margin-top: 92px; }
  #site-nav { display: none; }
  #site-nav.open {
    display: flex; flex-direction: column;
    position: fixed; top: 92px; left: 0; right: 0;
    background: rgba(12,35,64,0.98); padding: 22px 32px; gap: 16px; z-index: 999;
  }
  #nav-toggle { display: flex; }
  .video-grid, .layout-two-col { flex-direction: column; }
  #charity, #win { padding: 44px 28px; }
  .sponsor-item { width: 160px; }
}
@media (max-width: 600px) {
  :root { --sp: 40px 18px; }
  #hero { height: 70vw; max-height: 380px; margin-top: 86px; }
  #site-header .logo img { height: 58px; }
  .slider-arrow { display: none; }
  #site-footer { padding: 28px 18px; }
  .sponsor-item { width: 140px; height: 80px; }
}
