/* =========================================================
   Heat District Productions — Global Styles
   File path: css/global.css
   ========================================================= */

:root {
  --neon-blue: #00f0ff;
  --neon-pink: #ff2d78;
  --neon-purple: #bf00ff;
  --dark-bg: #05050f;
  --card-bg: #0a0a1a;
  --card-bg-2: #0d0d20;
  --text-light: #e8e8f0;
  --soft-text: rgba(232,232,240,0.55);
  --soft-border: rgba(0,240,255,0.1);
  --success: rgba(77,255,145,0.88);
  --muted-white: rgba(232,232,240,0.5);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--dark-bg);
  color: var(--text-light);
  font-family: 'Raleway', sans-serif;
  overflow-x: hidden;
}

/* NAVBAR */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 48px;
  background: rgba(5,5,15,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,240,255,0.15);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 52px;
  width: auto;
  filter:
    drop-shadow(0 0 6px rgba(0,240,255,0.8))
    drop-shadow(0 0 14px rgba(0,240,255,0.5))
    drop-shadow(0 0 4px rgba(255,45,120,0.4));
}

.nav-links {
  display: flex;
  flex: 1;
  justify-content: space-evenly;
  align-items: center;
  list-style: none;
  padding: 0 40px;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s, text-shadow 0.3s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--neon-blue);
  text-shadow: 0 0 8px var(--neon-blue);
}

.nav-cta {
  flex-shrink: 0;
  background: transparent;
  border: 1.5px solid var(--neon-pink);
  color: var(--neon-pink) !important;
  padding: 8px 22px;
  border-radius: 4px;
  transition: background 0.3s, box-shadow 0.3s !important;
  white-space: nowrap;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-cta:hover {
  background: rgba(255,45,120,0.15) !important;
  box-shadow: 0 0 18px rgba(255,45,120,0.4) !important;
  color: var(--neon-pink) !important;
  text-shadow: none !important;
}

/* PRODUCTS DROPDOWN */
.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link-with-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-link-with-dropdown::after {
  content: '▾';
  font-size: 0.58rem;
  color: rgba(0,240,255,0.7);
  transform: translateY(-1px);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 260px;
  padding: 12px;
  background: rgba(8,8,20,0.98);
  border: 1px solid rgba(0,240,255,0.16);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45), 0 0 24px rgba(0,240,255,0.08);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
}

.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 11px 12px;
  border-radius: 8px;
  color: rgba(232,232,240,0.72);
  font-size: 0.68rem;
  letter-spacing: 1.8px;
  line-height: 1.25;
}

.nav-dropdown a:hover {
  background: rgba(0,240,255,0.07);
  color: var(--neon-blue);
  text-shadow: 0 0 8px rgba(0,240,255,0.45);
}

/* MOBILE NAV */
.mobile-menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  background: transparent;
  border: 1px solid rgba(0,240,255,0.18);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px 9px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text-light);
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.mobile-menu-btn:hover {
  border-color: rgba(0,240,255,0.35);
  box-shadow: 0 0 16px rgba(0,240,255,0.12);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  background: var(--neon-blue);
}

.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  background: var(--neon-blue);
}

.mobile-nav {
  position: fixed;
  top: 73px;
  left: 16px;
  right: 16px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px;
  background: rgba(8,8,20,0.98);
  border: 1px solid rgba(0,240,255,0.14);
  border-radius: 14px;
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 12px;
  border-radius: 8px;
  transition: background 0.25s ease, color 0.25s ease, text-shadow 0.25s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background: rgba(0,240,255,0.06);
  color: var(--neon-blue);
  text-shadow: 0 0 8px var(--neon-blue);
}

.mobile-nav-sub {
  margin: -4px 0 8px;
  padding: 4px 0 8px 14px;
  border-left: 1px solid rgba(0,240,255,0.14);
}

.mobile-nav-sub a {
  font-size: 0.68rem;
  padding: 10px 12px;
  color: rgba(232,232,240,0.58);
}

.mobile-nav-book {
  margin-top: 8px;
  border: 1.5px solid var(--neon-pink);
  color: var(--neon-pink) !important;
  text-align: center;
}

.mobile-nav-book:hover {
  background: rgba(255,45,120,0.12) !important;
  box-shadow: 0 0 18px rgba(255,45,120,0.18);
  color: var(--neon-pink) !important;
  text-shadow: none !important;
}

body.mobile-menu-open { overflow: hidden; }

/* SHARED */
.neon-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,240,255,0.25), rgba(255,45,120,0.25), transparent);
}

footer {
  text-align: center;
  padding: 60px 48px 100px;
  border-top: 1px solid rgba(0,240,255,0.08);
}

.footer-logo img {
  height: 64px;
  width: auto;
  margin-bottom: 6px;
  filter:
    drop-shadow(0 0 5px rgba(0,240,255,0.6))
    drop-shadow(0 0 12px rgba(255,45,120,0.3));
}

.footer-productions-text {
  font-size: 0.55rem;
  letter-spacing: 6px;
  color: rgba(232,232,240,0.2);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.footer-contact {
  margin: 28px 0;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-contact a {
  color: rgba(232,232,240,0.4);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 1px;
  transition: color 0.3s;
  font-weight: 300;
}

.footer-contact a:hover { color: var(--neon-blue); }

.footer-copy {
  font-size: 0.68rem;
  color: rgba(232,232,240,0.18);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 32px;
}

/* RESPONSIVE GLOBAL */
@media (max-width: 900px) {
  nav { padding: 10px 18px; }

  .nav-links,
  .nav-cta { display: none; }

  .mobile-menu-btn { display: flex; }

  footer { padding: 60px 24px 100px; }
}
/* =========================================================
   UNIVERSAL FLOATING CART
   Used across all pages after shared cart JS is added.
   ========================================================= */

body.global-cart-open {
  overflow: hidden;
}

.global-cart-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 270px;
  padding: 15px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--neon-pink);
  background:
    linear-gradient(180deg, rgba(10,10,26,0.98), rgba(8,8,22,0.99)),
    linear-gradient(90deg, rgba(0,240,255,0.08), rgba(255,45,120,0.08));
  color: #fff;
  box-shadow:
    0 18px 45px rgba(0,0,0,0.48),
    0 0 26px rgba(255,45,120,0.2);
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.global-cart-button:hover {
  transform: translateY(-3px);
  border-color: rgba(255,45,120,0.8);
  box-shadow:
    0 22px 55px rgba(0,0,0,0.55),
    0 0 34px rgba(255,45,120,0.3);
}

.global-cart-button-main {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.global-cart-button-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--neon-pink);
  white-space: nowrap;
}

.global-cart-button-count {
  min-width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  background: rgba(0,240,255,0.12);
  border: 1px solid rgba(0,240,255,0.28);
  color: var(--neon-blue);
  font-size: 0.72rem;
  font-weight: 700;
}

.global-cart-button-total {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.global-cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1450;
  background: rgba(0,0,0,0.62);
  backdrop-filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.global-cart-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.global-cart-drawer {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 1500;
  width: min(390px, calc(100vw - 48px));
  max-height: min(76vh, 680px);
  border: 1px solid rgba(0,240,255,0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(10,10,26,0.99), rgba(8,8,22,0.99));
  box-shadow:
    0 26px 80px rgba(0,0,0,0.65),
    0 0 34px rgba(0,240,255,0.08);
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.98);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.global-cart-drawer.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.global-cart-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,45,120,0.38);
  background: rgba(255,45,120,0.08);
  color: var(--neon-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 0 16px rgba(255,45,120,0.12);
}

.global-cart-close:hover {
  background: rgba(255,45,120,0.16);
  box-shadow: 0 0 22px rgba(255,45,120,0.24);
}

.global-cart-kicker {
  font-size: 0.58rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0,240,255,0.72);
  margin-bottom: 8px;
  font-weight: 600;
}

.global-cart-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  padding-right: 42px;
}

.global-cart-copy {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(232,232,240,0.72);
  margin-bottom: 18px;
  font-weight: 400;
}

.global-cart-items {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding-right: 6px;
}

.global-cart-empty {
  padding: 18px 16px;
  border-radius: 12px;
  border: 1px dashed rgba(0,240,255,0.12);
  color: rgba(232,232,240,0.68);
  font-size: 0.86rem;
  line-height: 1.7;
  text-align: center;
  font-weight: 400;
}

.global-cart-item {
  border: 1px solid rgba(0,240,255,0.08);
  border-radius: 12px;
  padding: 12px;
  background: rgba(255,255,255,0.02);
}

.global-cart-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.global-cart-item-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

.global-cart-item-remove {
  background: none;
  border: none;
  color: rgba(255,45,120,0.86);
  font-size: 0.72rem;
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
  flex-shrink: 0;
  font-family: 'Raleway', sans-serif;
}

.global-cart-item-meta {
  font-size: 0.76rem;
  color: rgba(232,232,240,0.7);
  line-height: 1.6;
  font-weight: 400;
}

.global-cart-item-total {
  font-size: 0.8rem;
  color: rgba(0,240,255,0.9);
  margin-top: 6px;
  font-weight: 700;
  letter-spacing: 1px;
}

.global-cart-summary {
  flex: 0 0 auto;
  background: linear-gradient(180deg, rgba(10,10,26,0.98), rgba(8,8,22,0.99));
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 18px;
}

.global-cart-row,
.global-cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.global-cart-row {
  margin-bottom: 8px;
  font-size: 0.86rem;
}

.global-cart-row span:first-child {
  color: rgba(232,232,240,0.76);
}

.global-cart-row span:last-child {
  color: #fff;
}

.global-cart-total-row {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 1rem;
  font-weight: 700;
}

.global-cart-total-row span:first-child {
  color: rgba(232,232,240,0.9);
}

.global-cart-total-row span:last-child {
  color: #fff;
}

.global-cart-actions {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.global-cart-action {
  width: 100%;
  border-radius: 4px;
  padding: 13px 14px;
  text-decoration: none;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  transition: box-shadow 0.3s, transform 0.2s, background 0.3s;
}

.global-cart-action.primary {
  background: transparent;
  color: var(--neon-pink);
  border: 1.5px solid var(--neon-pink);
}

.global-cart-action.primary:hover {
  background: rgba(255,45,120,0.08);
  box-shadow: 0 0 26px rgba(255,45,120,0.28);
  transform: translateY(-2px);
}

.global-cart-action.secondary {
  background: transparent;
  color: var(--neon-blue);
  border: 1.5px solid var(--neon-blue);
}

.global-cart-action.secondary:hover {
  background: rgba(0,240,255,0.08);
  box-shadow: 0 0 24px rgba(0,240,255,0.22);
  transform: translateY(-2px);
}

/* MOBILE UNIVERSAL CART */
@media (max-width: 900px) {
  body {
    padding-bottom: 94px;
  }

  .global-cart-button {
    left: 16px;
    right: 16px;
    bottom: 16px;
    min-width: 0;
    width: auto;
    padding: 15px 18px;
  }

  .global-cart-drawer {
    left: 14px;
    right: 14px;
    bottom: 92px;
    width: auto;
    max-height: min(76vh, 620px);
  }
}
/* =========================================================
   BIGGER GLOBAL NAV LOGO OVERRIDE
   Keeps the top-left logo larger and more visible on all pages.
   Paste this at the very bottom of global.css.
   ========================================================= */

nav {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.nav-logo img {
  height: 76px !important;
  width: auto !important;
  max-height: none !important;
  filter:
    drop-shadow(0 0 8px rgba(0,240,255,0.95))
    drop-shadow(0 0 18px rgba(0,240,255,0.65))
    drop-shadow(0 0 8px rgba(255,45,120,0.5)) !important;
}

.mobile-nav {
  top: 98px !important;
}

@media (max-width: 900px) {
  nav {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  .nav-logo img {
    height: 66px !important;
  }

  .mobile-nav {
    top: 90px !important;
  }
}