/* ════════════════════════════════════════════════════════════
   GYRO IT UP — Main Stylesheet
   by Game On Business LLC
   ════════════════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--gyro-ash);
  color: var(--gyro-cream);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--gyro-fire); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gyro-gold); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gyro-ash); }
::-webkit-scrollbar-thumb { background: var(--gyro-fire); border-radius: 3px; }

/* ── SELECTION ── */
::selection { background: var(--gyro-fire); color: #fff; }

/* ════════════════════════════════════════════════════════════
   STICKY HEADER / NAV
════════════════════════════════════════════════════════════ */
.gyro-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  height: var(--nav-height);
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--nav-border);
  transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

/* transparent on home hero (becomes solid on scroll) */
.gyro-header--transparent {
  background: transparent;
  border-bottom-color: transparent;
}
.gyro-header--transparent.is-scrolled,
.gyro-header.is-scrolled {
  background: var(--nav-bg);
  border-bottom-color: var(--gyro-fire);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

/* hide on scroll down, show on scroll up */
.gyro-header.is-hidden {
  transform: translateY(-100%);
}

.gyro-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  gap: 1rem;
}

/* Logo */
.gyro-header__logo a {
  display: flex;
  align-items: center;
}
.gyro-header__logo img,
.gyro-header__logo .custom-logo {
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
.gyro-header__logo-text {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  color: var(--gyro-gold);
  line-height: 1;
}
.gyro-header__logo-text em {
  color: var(--gyro-fire);
  font-style: normal;
}

/* Nav list */
.gyro-nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.gyro-nav-item--top > a {
  display: block;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gyro-cream);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  position: relative;
  white-space: nowrap;
}
.gyro-nav-item--top > a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--gyro-fire);
  transition: left 0.25s, right 0.25s;
  border-radius: 2px;
}
.gyro-nav-item--top > a:hover,
.gyro-nav-item--top.is-active > a {
  color: var(--gyro-gold);
  background: rgba(255,107,0,0.08);
}
.gyro-nav-item--top > a:hover::after,
.gyro-nav-item--top.is-active > a::after {
  left: 0.9rem;
  right: 0.9rem;
}

/* Dropdown arrow */
.gyro-nav-arrow {
  font-size: 0.7rem;
  margin-left: 3px;
  transition: transform 0.2s;
}
.gyro-nav-item.has-children:hover .gyro-nav-arrow {
  transform: rotate(180deg);
}

/* Submenu */
.gyro-submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: #1a1a1a;
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: var(--radius-md);
  padding: 0.5rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  z-index: 100;
}
.gyro-nav-item.has-children {
  position: relative;
}
.gyro-nav-item.has-children:hover > .gyro-submenu,
.gyro-nav-item.has-children:focus-within > .gyro-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.gyro-submenu li a {
  display: block;
  padding: 0.55rem 1.2rem;
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gyro-cream);
  transition: color 0.2s, padding-left 0.2s;
}
.gyro-submenu li a:hover {
  color: var(--gyro-gold);
  padding-left: 1.6rem;
}

/* CTA Button */
.gyro-header__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  background: var(--gyro-fire);
  color: #fff !important;
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-pill);
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.gyro-header__cta:hover {
  background: var(--gyro-ember);
  transform: translateY(-1px);
  color: #fff !important;
}

/* Hamburger */
.gyro-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px; height: 42px;
  gap: 5px;
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.gyro-hamburger:hover { background: rgba(255,107,0,0.1); }
.gyro-hamburger__line {
  display: block;
  width: 24px; height: 2px;
  background: var(--gyro-cream);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
}
.gyro-hamburger.is-open .gyro-hamburger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gyro-hamburger.is-open .gyro-hamburger__line:nth-child(2) { opacity: 0; width: 0; }
.gyro-hamburger.is-open .gyro-hamburger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════════════════════════
   MOBILE DRAWER
════════════════════════════════════════════════════════════ */
.gyro-mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
}
.gyro-mobile-drawer.is-open {
  pointer-events: all;
}

.gyro-mobile-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  opacity: 0;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}
.gyro-mobile-drawer.is-open .gyro-mobile-drawer__overlay {
  opacity: 1;
}

.gyro-mobile-drawer__nav {
  position: absolute;
  top: 0; right: 0;
  width: min(320px, 90vw);
  height: 100%;
  background: #0d0d0d;
  border-left: 2px solid var(--gyro-fire);
  padding: 2rem 1.5rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.gyro-mobile-drawer.is-open .gyro-mobile-drawer__nav {
  transform: translateX(0);
}

.gyro-mobile-drawer__close {
  align-self: flex-end;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.3);
  color: var(--gyro-cream);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.gyro-mobile-drawer__close:hover { background: rgba(255,107,0,0.25); }

.gyro-mobile-drawer__logo img {
  height: 80px; width: auto; max-width: 200px; object-fit: contain;
}

/* Mobile nav list */
.gyro-mobile-nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.gyro-mobile-nav__list .gyro-nav-item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gyro-cream);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}
.gyro-mobile-nav__list .gyro-nav-item > a:hover { color: var(--gyro-gold); }
.gyro-mobile-nav__list .gyro-submenu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  background: transparent;
  border: none;
  padding: 0 0 0 1rem;
}
.gyro-mobile-nav__list .gyro-submenu li a {
  padding: 0.5rem 0;
  border-bottom: none;
  font-size: 0.95rem;
}

.gyro-mobile-drawer__cta {
  display: block;
  background: var(--gyro-fire);
  color: #fff !important;
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-pill);
  transition: background 0.2s;
}
.gyro-mobile-drawer__cta:hover { background: var(--gyro-ember); }

.gyro-mobile-drawer__tagline {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gyro-muted);
  text-align: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ════════════════════════════════════════════════════════════
   PAGE WRAPPER
════════════════════════════════════════════════════════════ */
.gyro-page-wrapper {
  min-height: 100vh;
  padding-top: var(--nav-height); /* prevent content behind fixed nav */
}
/* Full-width Elementor pages: no padding-top on hero sections */
.elementor-page .gyro-page-wrapper,
body.elementor-page .gyro-page-wrapper {
  padding-top: 0;
}

/* ════════════════════════════════════════════════════════════
   FIRE DIVIDER
════════════════════════════════════════════════════════════ */
.gyro-fire-divider {
  width: 100%;
  height: 2px;
  border: none;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gyro-fire) 20%,
    var(--gyro-gold) 50%,
    var(--gyro-fire) 80%,
    transparent 100%
  );
  opacity: 0.6;
  margin: 0;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.gyro-footer {
  background: var(--gyro-black);
  color: var(--gyro-cream);
  font-family: var(--font-body);
}

.gyro-footer__top {
  padding: 4rem 2rem;
}

.gyro-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
}

/* Column titles */
.gyro-footer__col-title {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gyro-fire);
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,107,0,0.2);
}

/* Brand col */
.gyro-footer__logo img,
.gyro-footer__logo .custom-logo {
  height: 80px; width: auto; max-width: 200px; object-fit: contain;
  margin-bottom: 1rem;
}
.gyro-footer__logo-text {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: var(--gyro-gold);
  margin-bottom: 0.8rem;
  display: block;
}
.gyro-footer__logo-text em { color: var(--gyro-fire); font-style: normal; }
.gyro-footer__tagline {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--gyro-muted);
  margin-bottom: 1.2rem;
}

/* Social icons */
.gyro-footer__social {
  display: flex;
  gap: 0.6rem;
}
.gyro-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: 50%;
  color: var(--gyro-muted);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.gyro-social-icon:hover {
  background: var(--gyro-fire);
  border-color: var(--gyro-fire);
  color: #fff;
  transform: translateY(-2px);
}

/* Footer nav */
.gyro-footer__nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.gyro-footer__nav-list li a,
.gyro-footer__nav-list li {
  font-size: 0.92rem;
  color: var(--gyro-muted);
  padding: 0.38rem 0;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s, padding-left 0.2s;
}
.gyro-footer__nav-list li a:hover {
  color: var(--gyro-gold);
  padding-left: 6px;
}

/* Contact col */
.gyro-footer__phone {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--gyro-fire), var(--gyro-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.8rem;
}
.gyro-footer__contact-note {
  font-size: 0.85rem;
  color: var(--gyro-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.gyro-footer__badges {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.gyro-footer__badges span {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gyro-muted);
}

/* Bottom bar */
.gyro-footer__bottom {
  background: rgba(0,0,0,0.4);
  border-top: 1px solid rgba(255,107,0,0.12);
  padding: 1rem 2rem;
}
.gyro-footer__bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.gyro-footer__copyright,
.gyro-footer__credit {
  font-size: 0.78rem;
  color: var(--gyro-muted);
  letter-spacing: 0.04em;
}
.gyro-footer__credit a {
  color: var(--gyro-fire);
  font-weight: 600;
}
.gyro-footer__credit a:hover { color: var(--gyro-gold); }

/* ════════════════════════════════════════════════════════════
   TYPOGRAPHY UTILITIES
════════════════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 { line-height: 1.15; font-family: var(--font-display); letter-spacing: 0.04em; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-family: var(--font-condensed); font-size: 1.1rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
p  { line-height: 1.7; }

/* ════════════════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════════════════ */
.gyro-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-pill);
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.gyro-btn--primary {
  background: var(--gyro-fire);
  color: #fff;
}
.gyro-btn--primary:hover {
  background: var(--gyro-ember);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,107,0,0.35);
}
.gyro-btn--outline {
  background: transparent;
  color: var(--gyro-gold);
  border: 2px solid var(--gyro-gold);
}
.gyro-btn--outline:hover {
  background: rgba(245,196,0,0.1);
  color: var(--gyro-gold);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════════
   404 PAGE
════════════════════════════════════════════════════════════ */
.gyro-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--nav-height));
  text-align: center;
  padding: 3rem 1.5rem;
}
.gyro-404__inner { max-width: 520px; }
.gyro-404__icon  { font-size: 4rem; margin-bottom: 1rem; }
.gyro-404__title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 20vw, 10rem);
  background: linear-gradient(135deg, var(--gyro-fire), var(--gyro-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}
.gyro-404__message {
  font-size: 1.1rem;
  color: var(--gyro-muted);
  margin-bottom: 2rem;
}

/* ════════════════════════════════════════════════════════════
   ELEMENTOR HELPERS
════════════════════════════════════════════════════════════ */
/* Remove extra padding on Elementor sections */
.elementor-section.elementor-section-full_width,
.elementor-section.elementor-section-boxed {
  padding-top: 0;
  padding-bottom: 0;
}
/* Allow hero to sit flush under transparent nav */
.gyro-hero-first-section {
  margin-top: calc(-1 * var(--nav-height));
  padding-top: var(--nav-height) !important;
}

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

@media (max-width: 768px) {
  .gyro-nav,
  .gyro-header__cta { display: none; }
  .gyro-hamburger   { display: flex; }

  .gyro-footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .gyro-footer__top { padding: 2.5rem 1.5rem; }

  .gyro-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.4rem;
  }
}

@media (max-width: 480px) {
  .gyro-header__inner { padding: 0 1rem; }
}

/* ════════════════════════════════════════════════════════════
   REDUCED MOTION
════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
