/* ============================================================
   Da Bracey Gang — Shared Stylesheet
   Fonts: Bebas Neue (headlines) · Oswald (body)
   ============================================================ */

@font-face {
  font-family: "Bebas Neue";
  src: url("assets/fonts/BebasNeue-Regular.woff") format("woff"),
       url("assets/fonts/BebasNeue-Regular.ttf")  format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url("assets/fonts/Oswald-VariableFont_wght.woff") format("woff"),
       url("assets/fonts/Oswald-VariableFont_wght.ttf")  format("truetype");
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}

/* ── Tokens ── */
:root {
  --bg:      #0b1220;
  --panel:   #0f1a30;
  --text:    #eaf0ff;
  --muted:   #b7c3e3;
  --line:    rgba(255,255,255,.10);
  --navy:    #243a57;
  --pink:    #ff2e93;
  --pink2:   #ff79b8;
  --radius:  18px;
  --shadow:  0 12px 30px rgba(0,0,0,.35);
  --max:     1120px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Oswald", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  font-weight: 400;
  background:
    radial-gradient(1200px 650px at 12% -12%, rgba(255,46,147,.22), transparent 60%),
    radial-gradient(1000px 520px at 92% -6%,  rgba(36,58,87,.55),  transparent 58%),
    radial-gradient(900px  520px at 88% 20%,  rgba(255,121,184,.14),transparent 55%),
    linear-gradient(180deg, #071022 0%, var(--bg) 55%, #050812 100%);
  color: var(--text);
}

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

/* ── Layout ── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 18px; }
.section { padding: 50px 0; }

/* ── Typography ── */
h1, h2, h3 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 2px;
  margin: 0;
}
h1 { margin: 10px 0 8px; font-size: clamp(44px, 6vw, 78px); line-height: .95; }
h2 { margin: 0 0 10px;  font-size: clamp(28px, 3vw, 40px); }
h3 { font-size: 20px; }
p  { margin: 0 0 12px; line-height: 1.55; }

body, p, li, span, small, label, input, textarea, select, option {
  font-family: "Oswald", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

h1, h2, h3, h4, h5, h6, .brand, .foot-brand {
  font-family: "Bebas Neue", sans-serif;
}

.kicker {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(234,240,255,.75);
}
.muted  { color: var(--muted); }
.tiny   { font-size: 13px; color: var(--muted); }

/* ── Header / Nav ── */
header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(7,11,20,.65);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  line-height: 1;
}
.brand img {
  width: 54px; height: 54px; border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  padding: 6px;
}

nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 12px; align-items: center;
}
nav a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: background .15s, color .15s;
}
nav a:hover        { background: rgba(255,255,255,.06); color: var(--text); }
nav a.active       { background: rgba(255,255,255,.08); color: var(--text); }

.nav-cta { display: flex; gap: 10px; align-items: center; }

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px 18px 14px;
  border-top: 1px solid var(--line);
  background: rgba(7,11,20,.92);
}
.mobile-nav a {
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--muted);
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.mobile-nav a:hover { background: rgba(255,255,255,.06); color: var(--text); }
.mobile-nav a.active { background: rgba(255,255,255,.08); color: var(--text); }
.mobile-nav.open { display: flex; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .06em;
  cursor: pointer;
  transition: transform .08s ease, background .2s ease, border .2s ease, filter .2s ease;
  white-space: nowrap;
}
.btn:hover   { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.22); }
.btn:active  { transform: translateY(1px); }

.btn.primary {
  background: linear-gradient(135deg, var(--pink), var(--pink2));
  border: none;
  color: #0b1220;
  font-weight: 700;
}
.btn.primary:hover { filter: brightness(1.05); }

.btn.btn-outline {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
  color: var(--text);
}

.btn.disabled {
  opacity: .5;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── Cards ── */
.card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card.pad { padding: 22px; }
.pad { padding: 22px; }

/* ── Pill ── */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--muted);
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 14px;
}

/* ── Badge / Chip ── */
.badge, .chip {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  color: var(--muted);
}


/* Home page athlete names / captions */
.girls .badge {
  font-size: 17px;
  font-weight: 600;
  padding: 7px 12px;
  color: var(--text);
}

.girls .tiny {
  font-size: 15px;
  line-height: 1.45;
}

.cta-row, .button-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ── Reveal animation ── */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .6s ease, transform .6s ease; }
.reveal.show { opacity: 1; transform: none; }

/* ── Footer ── */
footer {
  padding: 28px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.foot {
  display: flex; justify-content: space-between; gap: 16px;
  flex-wrap: wrap; align-items: flex-start;
}
.foot-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
}
.foot-brand img {
  width: 44px; height: 44px; border-radius: 12px;
  padding: 6px; border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
}
.foot-links { display: flex; gap: 10px; flex-wrap: wrap; }
.foot-links a {
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.foot-links a:hover { background: rgba(255,255,255,.08); }

/* ── Responsive ── */
@media (max-width: 980px) {
  nav ul        { display: none; }
  .hamburger    { display: flex; }
  .brand        { font-size: 24px; }
  .brand img    { width: 50px; height: 50px; }
}
