/* ============================================
   Game Land on Wheels — Dual-Brand Theme System
   One brand, two experiences (game truck + girls party)
   Switching is driven by `body.theme-game` / `body.theme-girl`
   ============================================ */

:root,
body.theme-game {
  --gl-accent: #E8B82C;
  --gl-accent-dk: #c99a16;
  --gl-accent-rgb: 232,184,44;
  --gl-secondary: #2E3192;
  --gl-secondary-lt: #5358d6;
  --gl-ink: #15151c;
  --gl-muted: #6a6a78;
  --gl-page-bg: #ffffff;
  --gl-hero-overlay: linear-gradient(135deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.32) 100%);
  --gl-brand-name: 'Game Truck Experience';
  --gl-shadow: 0 16px 40px rgba(0,0,0,.18);
}

body.theme-girl {
  --gl-accent: #E84393;
  --gl-accent-dk: #b5267a;
  --gl-accent-rgb: 232,67,147;
  --gl-secondary: #a55eea;
  --gl-secondary-lt: #c98bf5;
  --gl-ink: #3a2233;
  --gl-muted: #8a5a72;
  --gl-page-bg: #fff7fb;
  --gl-hero-overlay: linear-gradient(135deg, rgba(180,38,122,.55) 0%, rgba(165,94,234,.30) 100%);
  --gl-brand-name: 'Girls Party Experience';
  --gl-shadow: 0 16px 40px rgba(232,67,147,.18);
}

body { background: var(--gl-page-bg); transition: background .4s ease; }

/* ----- universal helpers ----- */
.gl-btn-primary {
  display: inline-block;
  padding: .95rem 1.8rem;
  background: var(--gl-accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .3px;
  cursor: pointer;
  transition: transform .15s, box-shadow .2s, background .2s;
  box-shadow: 0 8px 22px rgba(var(--gl-accent-rgb), .35);
}
.gl-btn-primary:hover {
  transform: translateY(-2px);
  background: var(--gl-accent-dk);
  color: #fff;
}
.gl-btn-ghost {
  display: inline-block;
  padding: .95rem 1.8rem;
  background: rgba(255,255,255,.18);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 999px;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.gl-section { padding: 60px 0; }
.gl-section-title {
  text-align: center;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 900;
  color: var(--gl-ink);
  margin-bottom: .4em;
}
.gl-section-sub {
  text-align: center;
  color: var(--gl-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* ============================================
   SPLIT LANDING (homepage choose-experience)
   ============================================ */
.choose-experience {
  padding: 40px 22px 70px;
  background: radial-gradient(1200px 600px at 50% -10%, #ffe9b3 0%, #fff 60%);
}
.choose-experience .lead-head {
  text-align: center;
  margin-bottom: 28px;
}
.choose-experience .lead-head h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: #15151c;
  letter-spacing: -.5px;
}
.choose-experience .lead-head h1 .hl { color: var(--gl-accent); }
.choose-experience .lead-head p {
  color: #5a5a68;
  font-size: 1.05rem;
  margin-top: 8px;
}

.exp-split {
  display: flex;
  gap: 18px;
  max-width: 1160px;
  margin: 0 auto;
}
@media (max-width: 820px) { .exp-split { flex-direction: column; } }

.exp-half {
  position: relative;
  flex: 1;
  min-height: 460px;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 16px 40px rgba(0,0,0,.28);
  transition: flex .45s cubic-bezier(.4,0,.2,1), box-shadow .3s;
  text-decoration: none;
}
.exp-half:hover { flex: 1.4; }
@media (max-width: 820px) { .exp-half:hover { flex: 1; } }

.exp-half .bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.exp-half:hover .bg { transform: scale(1.06); }

.exp-half .scrim { position: absolute; inset: 0; }
.exp-half.is-game .scrim { background: linear-gradient(180deg, rgba(10,10,25,.15) 0%, rgba(10,10,25,.55) 55%, rgba(8,8,18,.95) 100%); }
.exp-half.is-girl .scrim { background: linear-gradient(180deg, rgba(180,38,122,.10) 0%, rgba(200,40,120,.55) 55%, rgba(120,20,70,.95) 100%); }

.exp-half .content {
  position: relative;
  z-index: 2;
  padding: 32px;
  color: #fff;
}
.exp-half .ktag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  backdrop-filter: blur(4px);
}
.exp-half.is-game .ktag { background: rgba(232,184,44,.95); color: #15151c; }
.exp-half.is-girl .ktag { background: rgba(255,255,255,.92); color: #b5267a; }
.exp-half h2 {
  font-size: 1.85rem;
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 8px;
  text-shadow: 0 3px 14px rgba(0,0,0,.45);
}
.exp-half p {
  font-size: .95rem;
  color: #eee;
  max-width: 380px;
  margin-bottom: 18px;
  line-height: 1.5;
}
.exp-half .cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: .95rem;
  padding: 14px 26px;
  border-radius: 999px;
  color: #fff;
  transition: transform .15s, box-shadow .2s;
}
.exp-half.is-game .cta { background: #2E3192; box-shadow: 0 8px 24px rgba(46,49,146,.5); }
.exp-half.is-girl .cta { background: #E84393; box-shadow: 0 8px 24px rgba(232,67,147,.5); }
.exp-half .cta:hover { transform: translateY(-3px); }

/* ============================================
   Girls page accents (when body.theme-girl)
   ============================================ */
body.theme-girl .hero-banner-modern .hero-overlay { background: var(--gl-hero-overlay); }
body.theme-girl .btn-next.compact,
body.theme-girl .btn-submit { background: var(--gl-accent); color: #fff; }
body.theme-girl .btn-next.compact:hover,
body.theme-girl .btn-submit:hover { background: var(--gl-accent-dk); }
body.theme-girl .step-indicator.compact .step.active { background: var(--gl-accent); color: #fff; }
body.theme-girl .form-group input:focus,
body.theme-girl .form-group select:focus,
body.theme-girl .form-group textarea:focus { border-color: var(--gl-accent); }
body.theme-girl .feature-item i { color: var(--gl-accent); }

/* ============================================
   Experiences dropdown in main nav
   ============================================ */
.nav-menu .has-sub { position: relative; }
.nav-menu .has-sub > a::after {
  content: ' ▾';
  font-size: .8em;
  opacity: .65;
}
.nav-menu .has-sub .submenu {
  position: absolute;
  top: 100%; left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 12px;
  padding: 8px 0;
  box-shadow: 0 14px 38px rgba(0,0,0,.18);
  list-style: none;
  margin: 8px 0 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s;
  z-index: 50;
}
.nav-menu .has-sub:hover .submenu,
.nav-menu .has-sub:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-menu .submenu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: #15151c;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
}
.nav-menu .submenu a:hover { background: #fff3cd; }
.nav-menu .submenu .game-dot { width: 10px; height: 10px; border-radius: 50%; background: #E8B82C; }
.nav-menu .submenu .girl-dot { width: 10px; height: 10px; border-radius: 50%; background: #E84393; }

/* ============================================
   Theme-aware NAV + FOOTER accents
   ============================================ */
.top-banner.nav-girl,
.main-nav.nav-girl { background-image: linear-gradient(90deg, #fff7fb 0%, #ffe0f0 100%); }
body.theme-girl .top-banner { background: linear-gradient(90deg, #b5267a, #E84393); color: #fff; }
body.theme-girl .top-banner .contact-link { color: #fff; }
body.theme-girl .top-banner .donate-button { background: #fff; color: #b5267a; }
body.theme-girl .main-nav { background: #fff; border-bottom: 3px solid #E84393; }
body.theme-girl .main-nav .logo-text { color: #b5267a; font-weight: 800; }
body.theme-girl .main-nav .nav-menu a { color: #5a3247; }
body.theme-girl .main-nav .nav-menu a:hover { color: #E84393; }
body.theme-girl .main-nav .nav-menu a.active { color: #E84393; }
body.theme-girl .site-footer { background: #2a0e1e; color: #ffd9ec; }
body.theme-girl .site-footer .footer-contact h3,
body.theme-girl .site-footer .social-icon { color: #fff; }
body.theme-girl .site-footer .footer-logo-img { max-width: 140px; }
body.theme-girl .site-footer .social-icon:hover { color: #E84393; }
body.theme-girl .site-footer a { color: #ffd9ec; }

body.theme-game .main-nav { border-bottom: 3px solid #E8B82C; }
body.theme-game .site-footer { background: #0c0c12; }

/* ============================================
   ADMIN — business switch toggle
   ============================================ */
.biz-switch {
  display: flex;
  background: #f1f3f8;
  border-radius: 999px;
  padding: 4px;
  margin: 14px 18px 6px;
  gap: 2px;
  position: relative;
}
.biz-switch button {
  flex: 1;
  border: none;
  background: transparent;
  font-weight: 700;
  font-size: .82rem;
  padding: 9px 12px;
  border-radius: 999px;
  cursor: pointer;
  color: #6a6a78;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all .25s;
}
.biz-switch button.active.game {
  background: linear-gradient(135deg, #E8B82C, #f2c645);
  color: #15151c;
  box-shadow: 0 4px 14px rgba(232,184,44,.45);
}
.biz-switch button.active.girl {
  background: linear-gradient(135deg, #E84393, #f06bb1);
  color: #fff;
  box-shadow: 0 4px 14px rgba(232,67,147,.45);
}
.biz-switch .dot { width: 8px; height: 8px; border-radius: 50%; }
.biz-switch .dot.game { background: #E8B82C; }
.biz-switch .dot.girl { background: #E84393; }
.biz-switch .label-mini { font-size: .65rem; color: #8a8a98; text-align: center; padding: 4px 0 0; letter-spacing: 1px; text-transform: uppercase; }

/* tint admin body when girl is active */
body.admin-biz-girl .sidebar { box-shadow: inset -3px 0 0 #E84393; }
body.admin-biz-girl .topbar, body.admin-biz-girl .navbar { border-bottom-color: #E84393; }
body.admin-biz-girl .badge { background: #E84393 !important; }
