/* Alltimate Sports Cards & Pokémon — Shared Site Styles */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #07091A;
  --deep:   #0A0F2E;
  --yellow: #F5C518;
  --red:    #E02020;
  --blue:   #1A4FFF;
  --silver: #C8D4E8;
  --muted:  #7A8BAD;
  --white:  #FFFFFF;
}

html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }
.reveal-left  { opacity: 0; transform: translateX(-32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible  { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(32px);  transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  transition: background 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(7,9,26,0.97);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(255,255,255,0.06);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 52px; width: auto; border-radius: 5px; }
.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; }
.nav-links a {
  color: var(--silver);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--yellow); }
.nav-links a.active { color: var(--yellow); }
.nav-call {
  background: var(--yellow) !important;
  color: var(--navy) !important;
  padding: 8px 18px;
  border-radius: 3px;
}
.nav-call:hover { background: #ffd42a !important; }

/* ── HAMBURGER ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 201;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transform-origin: center;
  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 nav panel */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 100vw);
  background: rgba(7,9,26,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 199;
  padding: 84px 32px 48px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid rgba(255,255,255,0.07);
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile ul { list-style: none; }
.nav-mobile ul li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-mobile ul li a {
  display: block;
  padding: 18px 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.06em;
  color: var(--silver);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-mobile ul li a:hover,
.nav-mobile ul li a.active { color: var(--yellow); }
.nav-mobile-call {
  display: block;
  margin-top: 28px;
  background: var(--yellow);
  color: var(--navy);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  padding: 16px 24px;
  border-radius: 3px;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-mobile-call:hover { background: #ffd42a; }

/* Backdrop */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 197;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.nav-backdrop.open { opacity: 1; pointer-events: auto; }

/* ── BUTTONS ── */
.btn-y {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow); color: var(--navy);
  font-weight: 700; font-size: 15px; padding: 14px 30px; border-radius: 3px;
  text-decoration: none; letter-spacing: 0.04em;
  box-shadow: 0 0 28px rgba(245,197,24,0.28);
  transition: transform 0.18s, box-shadow 0.18s;
}
.btn-y:hover { transform: translateY(-2px); box-shadow: 0 0 44px rgba(245,197,24,0.45); }
.btn-g {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  font-weight: 600; font-size: 15px; padding: 13px 30px; border-radius: 3px;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.28);
  letter-spacing: 0.04em;
  transition: border-color 0.18s, background 0.18s;
}
.btn-g:hover { border-color: var(--yellow); background: rgba(245,197,24,0.07); }

/* ── BST STRIPE ── */
.bst { background: var(--yellow); padding: 18px 24px; text-align: center; overflow: hidden; }
.bst-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(15px, 4vw, 48px);
  letter-spacing: 0.14em; color: var(--navy);
  white-space: normal; line-height: 1.5;
}
.bst-text span { opacity: 0.3; margin: 0 10px; }

/* ── SECTION UTILITIES ── */
section { padding: 100px 48px; }
.container { max-width: 1200px; margin: 0 auto; }
.label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--yellow); margin-bottom: 10px;
}
.stitle {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 6vw, 70px);
  letter-spacing: 0.03em; line-height: 1; margin-bottom: 16px;
}
.sdesc { color: var(--muted); font-size: 16px; line-height: 1.75; max-width: 540px; }

/* ── INNER PAGE HERO ── */
.page-hero {
  position: relative;
  height: 62vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding: 0 48px 64px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.25) saturate(1.2);
}
.page-hero-over {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(7,9,26,0.92) 0%, rgba(7,9,26,0.2) 60%, transparent 100%);
}
.page-hero-over2 {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7,9,26,0.7) 0%, transparent 60%);
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; width: 100%;
  margin: 0 auto;
}
.ph-crumb {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 12px;
}
.ph-crumb a { color: var(--muted); text-decoration: none; }
.ph-crumb a:hover { color: var(--yellow); }
.ph-crumb span { margin: 0 8px; opacity: 0.4; }
.ph-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 9vw, 110px);
  letter-spacing: 0.03em; line-height: 0.9;
  margin-bottom: 16px;
  text-shadow: 0 0 60px rgba(26,79,255,0.3);
}
.ph-title em { color: var(--yellow); font-style: normal; }
.ph-sub {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(14px, 2.5vw, 22px);
  letter-spacing: 0.2em; color: var(--silver);
}

/* ── PRODUCT CARD ── */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.prod-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.prod-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.65) saturate(1.1);
  transition: transform 0.5s ease, filter 0.5s ease;
}
.prod-card:hover img { transform: scale(1.06); filter: brightness(0.4) saturate(1.4); }
.prod-card-over {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(7,9,26,0.97) 0%, rgba(7,9,26,0.1) 55%, transparent 100%);
}
.prod-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 22px 28px;
}
.prod-tag {
  display: inline-block;
  background: var(--yellow); color: var(--navy);
  font-size: 9px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 2px; margin-bottom: 8px;
}
.prod-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px; letter-spacing: 0.04em; line-height: 1; margin-bottom: 6px;
}
.prod-desc { color: var(--muted); font-size: 13px; line-height: 1.5; }

/* ── BRAND CHIPS ── */
.brand-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.brand-chip {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--silver);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.brand-chip:hover { background: rgba(245,197,24,0.1); border-color: rgba(245,197,24,0.4); color: var(--yellow); }
.brand-chip.hi { border-color: rgba(245,197,24,0.35); color: var(--yellow); background: rgba(245,197,24,0.06); }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--deep) 0%, #0d1a52 100%);
  border-top: 1px solid rgba(245,197,24,0.15);
  border-bottom: 1px solid rgba(245,197,24,0.15);
  padding: 72px 48px;
  text-align: center;
}
.cta-band .stitle { margin-bottom: 8px; }
.cta-band .sdesc { margin: 0 auto 32px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── HOURS STRIP (inner pages) ── */
.hours-strip {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 40px 48px;
}
.hours-strip-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.hs-info { display: flex; flex-direction: column; gap: 4px; }
.hs-address { font-size: 15px; color: var(--silver); }
.hs-hours { font-size: 13px; color: var(--muted); }
.hs-phone {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; letter-spacing: 0.05em;
  color: var(--yellow); text-decoration: none;
  transition: color 0.2s;
}
.hs-phone:hover { color: var(--white); }
.hs-dir {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--muted); text-decoration: none;
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; transition: color 0.2s;
}
.hs-dir:hover { color: var(--yellow); }

/* ── FOOTER ── */
footer { background: #030510; padding: 32px 48px; border-top: 1px solid rgba(255,255,255,0.05); }
.foot { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.foot-logo img { height: 40px; width: auto; border-radius: 4px; }
.foot-copy { color: var(--muted); font-size: 13px; }
.foot-nav { display: flex; flex-wrap: wrap; gap: 20px; list-style: none; }
.foot-nav a { color: var(--muted); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.foot-nav a:hover { color: var(--yellow); }

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  #nav { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: block; }
  .nav-backdrop { display: block; }
  section { padding: 72px 24px; }
  .cta-band { padding: 56px 24px; }
  .hours-strip { padding: 32px 24px; }
  .page-hero { padding: 0 24px 48px; }
  .prod-grid { grid-template-columns: 1fr; gap: 14px; }
  .prod-card { aspect-ratio: 16/9; }
  footer { padding: 28px 24px; }

  /* Collapse all inline-style grid layouts to single column */
  [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}
@media (max-width: 640px) {
  .cta-btns { flex-direction: column; align-items: center; }
  .btn-y, .btn-g { width: 100%; max-width: 300px; justify-content: center; }
  .hours-strip-inner { flex-direction: column; align-items: flex-start; }
  .foot { flex-direction: column; text-align: center; }
  .foot-nav { justify-content: center; }
}
