/*
Theme Name:  Predators Cricket Club
Theme URI:   https://predatorscricketclub.com
Description: Official theme for Predators Cricket Club Inc. — BCANA, NYC. Est. 2010. 501(c)(3) Non-Profit.
Version:     4.4.2
Author:      Predators CC
*/

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

:root {
  --gold:        #F5A800;
  --gold-light:  #FFD060;
  --navy:        #1A2A6C;
  --navy-deep:   #0D1640;
  --navy-mid:    #243380;
  --black:       #080C1A;
  --card:        #111828;
  --card-hover:  #172035;
  --border:      rgba(245,168,0,0.12);
  --text:        #EEF0F8;
  --muted:       rgba(238,240,248,0.55);
  --muted2:      rgba(238,240,248,0.3);
}

html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; background: var(--black); color: var(--text); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
.gold { color: var(--gold); }

/* ─── GOOGLE FONTS ──────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@300;400;500;600;700&family=Barlow+Condensed:wght@400;600;700;800&display=swap');

/* ─── NAV ────────────────────────────────────────────────────── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 86px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(8,12,26,0.96); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(245,168,0,0.18);
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { height: 72px; width: 72px; object-fit: contain; filter: drop-shadow(0 0 8px rgba(245,168,0,0.2)); mix-blend-mode: screen; background: transparent; }
.nav-brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 2px; color: var(--text); line-height: 1; text-transform: uppercase; }
.nav-brand-sub { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.nav-links a { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; color: var(--muted); padding: 6px 14px; border-radius: 3px; transition: color 0.2s, background 0.2s; }
.nav-links a:hover { color: var(--text); background: rgba(245,168,0,0.08); }
.nav-join a { background: var(--gold) !important; color: #0D1640 !important; font-weight: 700 !important; padding: 6px 18px !important; border-radius: 3px !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  border: 1px solid rgba(245,168,0,0.35);
  cursor: pointer;
  z-index: 300;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  padding: 8px;
  box-sizing: border-box;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.25s ease;
  pointer-events: none;
}
.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); }

#page { padding-top: 86px; }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #0D1640;
  padding: 13px 28px; border-radius: 3px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 14px;
  letter-spacing: 2px; text-transform: uppercase; font-weight: 700;
  transition: background 0.2s, transform 0.15s; box-shadow: 0 4px 24px rgba(245,168,0,0.3);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); color: #0D1640; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(245,168,0,0.4); color: var(--gold);
  padding: 13px 28px; border-radius: 3px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 14px;
  letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(245,168,0,0.08); transform: translateY(-2px); }

/* ─── SECTION UTILS ─────────────────────────────────────────── */
.section-wrap { padding: 4rem 2.5rem; max-width: 1200px; margin: 0 auto; }
.section-tag { display: flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.75rem; }
.section-tag::before { content: ''; width: 28px; height: 2px; background: var(--gold); flex-shrink: 0; }
.section-heading { font-family: 'Bebas Neue', sans-serif; font-size: clamp(44px,5.5vw,68px); letter-spacing: 2px; line-height: 1; margin-bottom: 0.75rem; color: var(--text); text-transform: uppercase; }
.section-sub { color: var(--muted); font-size: 15px; max-width: 480px; line-height: 1.75; margin-bottom: 3rem; }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero-section { min-height: calc(100vh - 86px); display: flex; align-items: center; position: relative; overflow: hidden; padding: 4rem 2.5rem; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(ellipse 60% 70% at 75% 50%, rgba(26,42,108,0.7) 0%, transparent 70%), radial-gradient(ellipse 40% 50% at 20% 80%, rgba(245,168,0,0.07) 0%, transparent 60%), #080C1A; }
.hero-texture { position: absolute; inset: 0; z-index: 1; opacity: 0.02; background-image: repeating-linear-gradient(0deg,transparent,transparent 60px,rgba(245,168,0,1) 60px,rgba(245,168,0,1) 61px), repeating-linear-gradient(90deg,transparent,transparent 60px,rgba(245,168,0,1) 60px,rgba(245,168,0,1) 61px); }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 5rem; width: 100%; max-width: 1200px; margin: 0 auto; }
.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 1.5rem; }
.hero-eyebrow-line { width: 32px; height: 2px; background: var(--gold); flex-shrink: 0; }
.hero-eyebrow span { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.hero-h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(64px,8.5vw,110px); line-height: 0.88; letter-spacing: 2px; margin-bottom: 1.75rem; text-transform: uppercase; }
.hero-h1 em { font-style: normal; color: var(--gold); display: block; text-shadow: 0 0 60px rgba(245,168,0,0.35); }
.hero-tagline { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 1.25rem; font-family: 'Barlow Condensed', sans-serif; }
.hero-desc { font-size: 15px; line-height: 1.8; color: var(--muted); max-width: 440px; margin-bottom: 2.5rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats { display: flex; gap: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }
.hstat-num { font-family: 'Bebas Neue', sans-serif; font-size: 44px; line-height: 1; color: var(--gold); text-shadow: 0 0 30px rgba(245,168,0,0.4); }
.hstat-lbl { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted2); margin-top: 3px; }

/* Hero Logo */
.hero-logo-wrap { display: flex; align-items: center; justify-content: center; position: relative; width: 560px; height: 560px; }
.hero-logo-ring {
  position: absolute; width: 460px; height: 460px; border-radius: 50%;
  border: 1px solid rgba(245,168,0,0.2); animation: spin 25s linear infinite; pointer-events: none;
}
.hero-logo-ring::before { content: '★'; position: absolute; font-size: 14px; color: var(--gold); top: -10px; left: 50%; transform: translateX(-50%); }
.hero-logo-ring::after  { content: '★'; position: absolute; font-size: 10px; color: rgba(245,168,0,0.4); bottom: -8px; left: 50%; transform: translateX(-50%); }
.hero-logo-ring2 { position: absolute; width: 530px; height: 530px; border-radius: 50%; border: 1px dashed rgba(245,168,0,0.08); animation: spin 40s linear infinite reverse; pointer-events: none; }
.hero-logo-glow { position: absolute; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(245,168,0,0.12) 0%, transparent 70%); pointer-events: none; }
.hero-logo-img { 
  width: 340px; height: 340px; object-fit: contain; position: relative; z-index: 1; 
  filter: drop-shadow(0 0 50px rgba(245,168,0,0.4)) drop-shadow(0 0 100px rgba(245,168,0,0.2)); 
  animation: float 4s ease-in-out infinite;
  mix-blend-mode: screen;
  background: transparent;
}

@keyframes spin  { to { transform: rotate(360deg); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ─── 501c3 BAND ─────────────────────────────────────────────── */
.band-501c3 { background: rgba(245,168,0,0.07); border-top: 1px solid rgba(245,168,0,0.15); border-bottom: 1px solid rgba(245,168,0,0.15); padding: 0.75rem 2.5rem; }
.band-501c3-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; text-align: center; }
.band-501c3 span { font-size: 13px; color: rgba(238,240,248,0.6); }
.band-501c3 a { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); font-weight: 700; border: 1px solid rgba(245,168,0,0.3); padding: 5px 14px; border-radius: 3px; }

/* ─── FIXTURES ───────────────────────────────────────────────── */
.fixtures-outer { background: var(--navy-deep); padding-bottom: 3rem; }
.fixtures-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.fixture-card { background: var(--card); padding: 1.75rem 2rem; transition: background 0.2s; }
.fixture-card:hover { background: var(--card-hover); }
.fix-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.fix-comp { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted2); }
.fix-date { font-size: 12px; color: var(--gold); font-weight: 600; }
.fix-teams { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.fix-team { flex: 1; font-family: 'Barlow Condensed', sans-serif; font-size: 21px; font-weight: 700; }
.fix-team.right { text-align: right; color: var(--muted); }
.fix-vs { font-size: 11px; color: var(--muted2); letter-spacing: 1px; flex-shrink: 0; }
.fix-venue { font-size: 13px; color: var(--muted); }
.fix-badge { display: inline-block; margin-top: 1.2rem; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; padding: 4px 12px; border-radius: 2px; }
.badge-upcoming { background: rgba(245,168,0,0.12); color: var(--gold); }
.badge-win  { background: rgba(110,231,160,0.12); color: #6ee7a0; border: 1px solid rgba(110,231,160,0.2); }
.badge-loss { background: rgba(220,38,38,0.12); color: #f87171; border: 1px solid rgba(220,38,38,0.2); }
.badge-draw { background: rgba(255,255,255,0.06); color: var(--muted); }

/* ─── SQUAD ──────────────────────────────────────────────────── */
.squad-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px,1fr)); gap: 1px; background: var(--border); }
.player-card { background: var(--card); padding: 1.6rem 1.5rem; position: relative; overflow: hidden; transition: background 0.2s; cursor: pointer; }
.player-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,#243380,#F5A800); transform: scaleX(0); transform-origin: left; transition: transform 0.25s; }
.player-card:hover { background: var(--card-hover); }
.player-card:hover::before { transform: scaleX(1); }
.player-bg-num { position: absolute; right: -4px; top: 4px; font-family: 'Bebas Neue', sans-serif; font-size: 64px; color: rgba(245,168,0,0.05); line-height: 1; pointer-events: none; }
.player-role { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.player-name { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 3px; }
.player-pos  { font-size: 12px; color: var(--muted2); }
.player-divider { border: none; border-top: 1px solid var(--border); margin: 1rem 0; }
.player-league { font-size: 11px; color: rgba(238,240,248,0.3); letter-spacing: 1px; text-transform: uppercase; }

/* ─── NEWS ───────────────────────────────────────────────────── */
.news-outer { background: var(--navy-deep); }
.news-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 1px; background: var(--border); }
.news-card { background: var(--card); padding: 2rem; transition: background 0.2s; cursor: pointer; }
.news-card:hover { background: var(--card-hover); }
.news-featured { grid-row: span 2; display: flex; flex-direction: column; }
.news-img-block { height: 200px; margin: -2rem -2rem 2rem; background: linear-gradient(135deg,#1A2A6C,#0D1640); display: flex; align-items: center; justify-content: center; font-size: 64px; opacity: 0.4; }
.news-cat  { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }
.news-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; line-height: 1.2; margin-bottom: 0.75rem; }
.news-featured .news-title { font-size: 24px; }
.news-card:not(.news-featured) .news-title { font-size: 17px; }
.news-excerpt { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 1.25rem; flex: 1; }
.news-date { font-size: 11px; color: var(--muted2); }

/* ─── JOIN BAND ──────────────────────────────────────────────── */
.join-band { position: relative; overflow: hidden; background: var(--navy-deep); padding: 5rem 2.5rem; text-align: center; }
.join-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 100% at 50% 50%, rgba(245,168,0,0.07) 0%, transparent 70%); }
.join-ghost { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: 'Bebas Neue', sans-serif; font-size: clamp(100px,20vw,240px); color: rgba(245,168,0,0.04); letter-spacing: 8px; white-space: nowrap; pointer-events: none; }
.join-inner { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
.join-logo { width: 160px; height: 160px; object-fit: contain; margin: 0 auto 1.5rem; display: block; filter: drop-shadow(0 0 32px rgba(245,168,0,0.5)); mix-blend-mode: screen; background: transparent; }

/* ─── SPONSORS STRIP ─────────────────────────────────────────── */
.sponsors-strip { padding: 3rem 2.5rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--navy-deep); }
.sponsors-strip-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted2); text-align: center; margin-bottom: 2rem; }
.sponsors-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.sponsor-pill {
  display: block !important;
  width: 150px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3), 0 0 0 1px rgba(245,168,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.sponsor-pill:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(245,168,0,0.2); }
.sponsor-pill img { width: 100%; height: 68px; object-fit: fill; display: block; }
.sponsor-pill.title { width: 180px; }

/* ─── SPONSORS FULL PAGE ─────────────────────────────────────── */
.sponsors-full-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 1.5rem; }
.sponsor-card { background: var(--card); border: 1px solid rgba(245,168,0,0.1); border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; }
.sponsor-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(245,168,0,0.12); }
.sponsor-card-logo { height: 90px; overflow: hidden; border-bottom: 1px solid rgba(0,0,0,0.06); }
.sponsor-card-logo img { width: 100%; height: 90px; object-fit: fill; }
.sponsor-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.sponsor-badge { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; padding: 3px 10px; border-radius: 2px; background: rgba(245,168,0,0.1); border: 1px solid rgba(245,168,0,0.15); }
.sponsor-name { font-family: 'Barlow Condensed', sans-serif; font-size: 19px; font-weight: 700; margin: 0.5rem 0 0.25rem; line-height: 1.2; }
.sponsor-type { font-size: 12px; color: var(--gold); font-weight: 600; margin-bottom: 0.5rem; }
.sponsor-addr { font-size: 12px; color: rgba(238,240,248,0.4); margin-bottom: 0.75rem; }
.sponsor-desc { font-size: 13px; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 1.25rem; }
.sponsor-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: rgba(245,168,0,0.1); color: var(--gold); border: 1px solid rgba(245,168,0,0.25); padding: 9px 16px; border-radius: 4px; font-family: 'Barlow Condensed', sans-serif; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; transition: all 0.2s; }
.sponsor-btn:hover { background: var(--gold); color: #0D1640; }

/* ─── TITLE SPONSOR FEATURE ──────────────────────────────────── */
.title-sponsor-card { display: grid; grid-template-columns: 1fr 1fr; background: var(--card); border: 1px solid rgba(245,168,0,0.15); border-radius: 12px; overflow: hidden; }
.title-sponsor-photo { position: relative; min-height: 300px; overflow: hidden; }
.title-sponsor-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.title-sponsor-photo-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, transparent 40%, var(--card) 100%); }
.title-sponsor-photo-label { position: absolute; bottom: 1.25rem; left: 1.25rem; }
.title-sponsor-body { padding: 2.5rem; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
#colophon { background: var(--navy-deep); border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 3.5rem 2.5rem 0; display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
.footer-brand-logo img { height: 72px; object-fit: contain; filter: drop-shadow(0 0 6px rgba(245,168,0,0.2)); mix-blend-mode: screen; background: transparent; }
.footer-brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 2px; color: var(--text); line-height: 1; text-transform: uppercase; }
.footer-brand-sub  { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }
.footer-about-text { font-size: 14px; color: rgba(238,240,248,0.5); line-height: 1.75; max-width: 260px; }
.footer-about-text strong { color: rgba(238,240,248,0.7); }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted2); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a { font-size: 14px; color: rgba(238,240,248,0.5); transition: color 0.2s; word-break: break-all; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { padding: 1.5rem 2.5rem; display: flex; justify-content: space-between; align-items: center; margin-top: 3rem; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: 12px; color: var(--muted2); }

/* ─── STORY PAGE ─────────────────────────────────────────────── */
.story-section { max-width: 800px; margin: 0 auto; }
.story-lead { font-size: 20px; color: var(--text); line-height: 1.7; margin-bottom: 2.5rem; font-weight: 300; }
.story-body { font-size: 16px; color: var(--muted); line-height: 1.85; }
.story-body p { margin-bottom: 1.5rem; }
.story-timeline { border-left: 2px solid var(--border); padding-left: 2rem; margin: 3rem 0; }
.timeline-item { position: relative; margin-bottom: 2rem; }
.timeline-item::before { content: ''; position: absolute; left: -2.45rem; top: 6px; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); }
.timeline-year { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--gold); line-height: 1; }
.timeline-desc { font-size: 14px; color: var(--muted); margin-top: 4px; line-height: 1.65; }

/* ─── CONTACT PAGE ───────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 2rem; }
.contact-icon { font-size: 24px; flex-shrink: 0; }
.contact-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted2); margin-bottom: 4px; }
.contact-value { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; }
.contact-value a { color: var(--gold); }
.contact-form-field { margin-bottom: 1.25rem; }
.contact-form-field label { display: block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted2); margin-bottom: 6px; }
.contact-form-field input, .contact-form-field textarea {
  width: 100%; background: var(--card); border: 1px solid var(--border); color: var(--text);
  padding: 12px 16px; border-radius: 4px; font-family: 'Barlow', sans-serif; font-size: 15px;
  transition: border-color 0.2s;
}
.contact-form-field input:focus, .contact-form-field textarea:focus { outline: none; border-color: rgba(245,168,0,0.4); }
.contact-form-field textarea { height: 140px; resize: vertical; }

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeInUp 0.6s ease forwards; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { gap: 3rem; }
  .hero-logo-wrap { width: 480px; height: 480px; }
  .hero-logo-img { width: 300px; height: 300px; }
}

@media (max-width: 900px) {
  #site-header { padding: 0 1.25rem; }
  .nav-toggle { display: flex !important; }
  .nav-links {
    display: none;
    position: fixed;
    top: 86px;
    left: 0;
    right: 0;
    z-index: 199;
    background: rgba(8,12,26,0.99);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 0.5rem 0 1rem;
    border-bottom: 1px solid rgba(245,168,0,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 2rem;
    border-radius: 0;
    -webkit-tap-highlight-color: rgba(245,168,0,0.1);
    touch-action: manipulation;
  }
  .nav-links a:active { background: rgba(245,168,0,0.1); }
  .nav-join a { margin: 0.5rem 2rem; border-radius: 3px !important; text-align: center; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-logo-wrap { display: none; }
  .section-wrap { padding: 4rem 1.25rem; }
  .fixtures-grid { grid-template-columns: 1fr !important; }
  .news-grid { grid-template-columns: 1fr; }
  .news-featured { grid-row: span 1; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; padding: 2rem 1.25rem 0; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; padding: 1rem 1.25rem; }
  .title-sponsor-card { grid-template-columns: 1fr; }
  .title-sponsor-photo { min-height: 220px; }
}

@media (max-width: 600px) {
  .hero-h1 { font-size: 60px; }
  .hero-stats { gap: 1.5rem; }
  .hstat-num { font-size: 34px; }
  .career-stats { grid-template-columns: repeat(3,1fr); }
  .sponsors-full-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}


/* ─── LOGO TRANSPARENCY SAFETY NET ──────────────────────────────
   Forces all Predators crest instances to blend correctly
   on dark backgrounds regardless of WordPress wrapper divs      */
.hero-logo-img,
.nav-brand img,
.footer-brand-logo img,
.join-logo {
  mix-blend-mode: screen;
  background: transparent !important;
}
/* Ensure hero wrap has no background */
.hero-logo-wrap {
  background: transparent !important;
}

/* ─── STORY PAGE HERO ─────────────────────────────────────── */
.story-hero {
  background: linear-gradient(135deg, #0D1640 0%, #080C1A 100%);
  padding: 5rem 2.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.story-hero::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0.03;
  background-image: repeating-linear-gradient(45deg, #F5A800 0, #F5A800 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.story-hero-inner {
  position: relative; z-index: 1;
  max-width: 700px; margin: 0 auto;
}
.story-hero-inner img {
  width: 120px; height: 120px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  display: block;
  mix-blend-mode: screen;
  background: transparent;
  filter: drop-shadow(0 0 20px rgba(245,168,0,0.4));
}
/* Mission cards */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
}
.mission-card {
  background: var(--card);
  padding: 2rem;
  transition: background 0.2s;
}
.mission-card:hover { background: var(--card-hover); }
.mission-icon { font-size: 28px; margin-bottom: 0.75rem; }
.mission-title { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 0.5rem; color: var(--text); }
.mission-text { font-size: 14px; color: var(--muted); line-height: 1.7; }
/* Timeline */
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item { display: grid; grid-template-columns: 80px 40px 1fr; gap: 0; position: relative; }
.timeline-left { text-align: right; padding-right: 1.5rem; padding-top: 0.25rem; }
.timeline-year { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--gold); line-height: 1; }
.timeline-center { display: flex; flex-direction: column; align-items: center; }
.timeline-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 4px; box-shadow: 0 0 0 3px rgba(245,168,0,0.2); }
.timeline-center::after { content: ''; flex: 1; width: 2px; background: var(--border); margin-top: 4px; }
.timeline-item:last-child .timeline-center::after { display: none; }
.timeline-right { padding: 0 0 2.5rem 1.5rem; }
.timeline-title { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 0.4rem; }
.timeline-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }
