/* VR Battle League - cyberpunk/neon design system
   Tokens carried over from the Wix site brief. Mobile first. */

:root {
  --navy: #0D1B2A;
  --navy-2: #0a1420;
  --navy-3: #12263c;
  --red: #C1121F;
  --purple: #7B2FBE;
  --cyan: #00F5FF;
  --ink: #eaf6ff;
  --muted: #9fb3c8;
  --line: rgba(0, 245, 255, 0.18);
  --maxw: 1080px;
  --radius: 14px;
  --glow-cyan: 0 0 18px rgba(0, 245, 255, 0.45);
  --glow-red: 0 0 18px rgba(193, 18, 31, 0.5);
  --font-head: "Orbitron", system-ui, sans-serif;
  --font-body: "Exo 2", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--navy);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* subtle grid backdrop */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(123, 47, 190, 0.22), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(0, 245, 255, 0.12), transparent 55%),
    linear-gradient(var(--navy), var(--navy-2));
}

h1, h2, h3 { font-family: var(--font-head); letter-spacing: 0.02em; line-height: 1.1; }

a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

.eyebrow {
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: var(--glow-red); }
.btn-primary:hover { background: #e11726; }
.btn-ghost { background: transparent; color: var(--cyan); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--cyan); box-shadow: var(--glow-cyan); }

/* Header / nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 27, 42, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-transform: uppercase;
}
.brand-logo { width: 34px; height: 34px; border-radius: 50%; display: block; flex: 0 0 auto; }
.brand span { color: var(--cyan); }
.nav-links { display: none; gap: 26px; align-items: center; }
.nav-links a { color: var(--muted); font-size: 14px; letter-spacing: 0.04em; }
.nav-links a:hover { color: var(--cyan); text-decoration: none; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: min(80vh, 760px);
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("/assets/hero.jpg") no-repeat;
  background-size: cover;
  background-position: 22% center;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 27, 42, 0.2) 0%, rgba(13, 27, 42, 0.55) 42%, rgba(13, 27, 42, 0.92) 80%),
    linear-gradient(180deg, rgba(13, 27, 42, 0.1) 0%, rgba(13, 27, 42, 0.6) 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 600px; margin-left: auto; text-align: left; padding: 48px 0; }
.hero h1 {
  font-size: clamp(34px, 7vw, 72px);
  margin: 0 0 18px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.55);
}
.hero h1 .accent { color: var(--cyan); }
.hero .lede {
  max-width: 540px;
  margin: 0 0 28px;
  font-size: clamp(17px, 2.4vw, 21px);
  color: var(--ink);
  opacity: 0.94;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Sections */
section { padding: 64px 0; }
.section-title { font-size: clamp(26px, 5vw, 40px); margin: 0 0 14px; }
.section-intro { color: var(--muted); max-width: 640px; margin: 0 0 36px; }

/* Feature grid */
.grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
.card {
  background: linear-gradient(180deg, var(--navy-3), var(--navy-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.card h3 { margin: 0 0 8px; font-size: 18px; color: var(--cyan); }
.card p { margin: 0; color: var(--muted); font-size: 15px; }

/* Steps */
.steps { counter-reset: step; display: grid; gap: 18px; grid-template-columns: 1fr; }
.step { display: flex; gap: 16px; align-items: flex-start; }
.step-num {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  font-family: var(--font-head);
  box-shadow: var(--glow-cyan);
}
.step h3 { margin: 4px 0 4px; font-size: 17px; }
.step p { margin: 0; color: var(--muted); font-size: 15px; }

/* Embed slots - kept isolated so any one can be swapped */
.embed-slot {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
}
.embed-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }

/* Booking */
.cta-band {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 48px 24px;
  background:
    radial-gradient(600px 300px at 50% -20%, rgba(123, 47, 190, 0.28), transparent 70%),
    var(--navy-2);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
  color: var(--muted);
  font-size: 14px;
}
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--cyan); }
.footer-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }

/* Sticky mobile book button */
.sticky-book {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 60;
  display: flex;
  justify-content: center;
}
.sticky-book .btn { width: 100%; max-width: 420px; justify-content: center; }

/* Booking page */
.book-wrap { padding: 40px 0 120px; }
.book-embed { min-height: 640px; }

/* Image bands */
.photoband {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.photoband img {
  width: 100%;
  height: clamp(220px, 42vw, 440px);
  object-fit: cover;
  display: block;
}
.photoband .caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px;
  background: linear-gradient(0deg, rgba(13, 27, 42, 0.92), rgba(13, 27, 42, 0));
}
.photoband .caption h3 { margin: 0 0 4px; font-size: clamp(18px, 3vw, 26px); }
.photoband .caption p { margin: 0; color: var(--muted); }

.banner-full img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

/* Responsive */
@media (min-width: 720px) {
  .nav-links { display: flex; }
  .grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .embed-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .sticky-book { display: none; }
}
