/* ============================================================
   LuxWave Entertainment — Global Stylesheet
   Nick May Productions LLC | nickmayent.com
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

[hidden] { display: none !important; }

:root {
  --bg:           #0A0A0A;
  --bg-surface:   #111111;
  --bg-card:      #161616;
  --fire-start:   #FF6B00;
  --fire-end:     #FF3D00;
  --fire-grad:    linear-gradient(135deg, #FF6B00, #FF3D00);
  --blue:         #00BFFF;
  --purple:       #9D4EDD;
  --pink:         #FF006E;
  --gold:         #FFD60A;
  --text:         #FFFFFF;
  --text-soft:    #CCCCCC;
  --text-muted:   #888888;
  --border:       rgba(255, 107, 0, 0.15);
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --transition:   0.25s ease;
  --max-width:    1200px;
  --nav-height:   72px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Rajdhani', 'Bebas Neue', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }

p {
  color: var(--text-soft);
  max-width: 65ch;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fire-start);
  margin-bottom: 0.6rem;
}

.section-title {
  margin-bottom: 1rem;
}

.gradient-text {
  background: var(--fire-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Layout Helpers ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section--dark {
  background-color: var(--bg-surface);
}

.section--card {
  background-color: var(--bg-card);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-center { text-align: center; }
.text-center p { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--fire {
  background: var(--fire-grad);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 61, 0, 0.4);
}

.btn--fire:hover {
  box-shadow: 0 8px 32px rgba(255, 61, 0, 0.6);
}

.btn--outline {
  background: transparent;
  color: var(--fire-start);
  border: 2px solid var(--fire-start);
}

.btn--outline:hover {
  background: rgba(255, 107, 0, 0.08);
}

.btn--blue {
  background: var(--blue);
  color: #000;
  box-shadow: 0 4px 20px rgba(0, 191, 255, 0.35);
}

.btn--blue:hover {
  box-shadow: 0 8px 32px rgba(0, 191, 255, 0.55);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ---------- Cards ---------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.card:hover {
  border-color: rgba(255, 107, 0, 0.4);
  box-shadow: 0 8px 40px rgba(255, 61, 0, 0.12);
}

/* ---------- Divider ---------- */
.divider {
  width: 60px;
  height: 3px;
  background: var(--fire-grad);
  border-radius: 2px;
  margin-block: 1.25rem;
}

.divider--center {
  margin-inline: auto;
}

/* ---------- Glow Effects ---------- */
.glow-fire {
  box-shadow: 0 0 30px rgba(255, 107, 0, 0.3);
}

.glow-blue {
  box-shadow: 0 0 30px rgba(0, 191, 255, 0.3);
}

/* ---------- NAV ---------- */
#site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), border-color var(--transition);
}

#site-nav.scrolled {
  background: rgba(10, 10, 10, 0.97);
  border-bottom-color: rgba(255, 107, 0, 0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-primary {
  font-family: 'Rajdhani', 'Bebas Neue', 'Inter', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--fire-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo-sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-soft);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255, 107, 0, 0.1);
}

.nav-links a.active {
  color: var(--fire-start);
}

.nav-cta {
  flex-shrink: 0;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem var(--container-pad, 1.5rem);
  z-index: 999;
}

.nav-drawer.open {
  display: block;
}

.nav-drawer a {
  display: block;
  padding: 0.8rem 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-soft);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color var(--transition);
}

.nav-drawer a:last-child {
  border-bottom: none;
}

.nav-drawer a:hover,
.nav-drawer a.active {
  color: var(--fire-start);
}

.nav-drawer .btn {
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
}

/* ---------- FOOTER ---------- */
#site-footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand .nav-logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 28ch;
  margin-bottom: 1.25rem;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fire-start);
  margin-bottom: 1rem;
}

.footer-col ul li {
  margin-bottom: 0.55rem;
}

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--text);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-contact-item a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-contact-item a:hover {
  color: var(--fire-start);
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--fire-start);
}

/* Social icons */
.social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.social-links a:hover {
  color: var(--text);
  border-color: var(--fire-start);
  background: rgba(255, 107, 0, 0.1);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: none;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--fire-start);
}

/* ---------- Page wrapper offset ---------- */
.page-body {
  padding-top: var(--nav-height);
}

/* ---------- Utility ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 0, 0.3); }
  50%       { box-shadow: 0 0 40px rgba(255, 107, 0, 0.6); }
}

.animate-fade-up {
  animation: fadeUp 0.6s ease forwards;
}

.pulse-glow {
  animation: pulse-glow 2.5s ease-in-out infinite;
}
