*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:   #0C2340;
  --orange: #F15A22;
  --white:  #FFFFFF;
  --cream:  #f5f2ee;
  --dark:   #081729;
  --muted:  #6b7a8d;
  --row-home: rgba(241, 90, 34, 0.07);
  --row-away: rgba(255,255,255,0.7);
  --row-bye:  rgba(0,0,0,0.04);
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--blue);
  min-height: 100vh;
}

/* ─── NAV ─────────────────────────────────── */
nav {
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 56px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 56px;
}

.nav-logo-img {
  height: 36px;
  max-height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-btn {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 3px;
  transition: background 0.15s, color 0.15s;
}

.nav-btn:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.nav-btn.active { background: var(--orange); color: var(--white); }

/* ─── HERO (homepage) ────────────────────── */
.hero {
  position: relative;
  height: 88vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(8,23,41,0.55) 0%,
    rgba(8,23,41,0.35) 50%,
    rgba(8,23,41,0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
}

.hero-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 12vw, 9rem);
  letter-spacing: 0.05em;
  line-height: 1;
  text-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

.hero-content h1 span { color: var(--orange); }

.hero-content .subtitle {
  margin-top: 10px;
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.hero-cta {
  margin-top: 32px;
  display: inline-block;
}

/* ─── PAGE HEADER (inner pages) ─────────── */
header,
.page-header {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 56px 20px 40px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '⬡';
  position: absolute;
  font-size: 320px;
  opacity: 0.04;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.page-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  letter-spacing: 0.06em;
  color: var(--white);
}

.page-header h2 span { color: var(--orange); }

.page-header p {
  margin-top: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ─── BADGE ──────────────────────────────── */
.badge {
  display: inline-block;
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* ─── STATS BAR ──────────────────────────── */
.stats-bar {
  display: flex;
  justify-content: center;
  background: var(--dark);
}

.stats-bar div {
  flex: 1;
  max-width: 160px;
  text-align: center;
  padding: 20px 12px;
  color: rgba(255,255,255,0.55);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stats-bar div:last-child { border-right: none; }

.stats-bar span {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--orange);
  line-height: 1.1;
}

/* ─── SECTION HEADINGS ───────────────────── */
.section-header {
  text-align: center;
  padding: 48px 20px 24px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 6vw, 4rem);
  letter-spacing: 0.06em;
  color: var(--blue);
}

.section-title span { color: var(--orange); }

/* ─── MAIN / GENERIC CONTENT ─────────────── */
main {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

/* ─── TEAM PHOTO ─────────────────────────── */
.team-photo-section {
  max-width: 960px;
  margin: 0 auto 12px;
  padding: 0 20px;
}

.team-photo {
  width: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* ─── NEWS SECTION ───────────────────────── */
.news-section {
  background: var(--white);
  padding-bottom: 48px;
}

/* ─── SPONSORS SECTION ───────────────────── */
.sponsors-section {
  background: var(--cream);
  padding-bottom: 56px;
}

.sponsors-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.sponsor-img {
  height: 70px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(20%);
  opacity: 0.85;
  transition: opacity 0.2s, filter 0.2s;
}

.sponsor-img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ─── LEGEND ─────────────────────────────── */
.legend {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot.home { background: var(--orange); }
.dot.away { background: var(--blue); }
.dot.bye  { background: #ccc; }

/* ─── TABLE ──────────────────────────────── */
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

thead tr {
  background: var(--blue);
  color: var(--orange);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}

th { padding: 14px 16px; text-align: left; font-weight: 400; }
td { padding: 13px 16px; border-bottom: 1px solid rgba(0,0,0,0.06); vertical-align: middle; }
tbody tr:last-child td { border-bottom: none; }

tbody tr.home { background: var(--row-home); }
tbody tr.away { background: var(--row-away); }
tbody tr.bye  { background: var(--row-bye); color: var(--muted); }
tbody tr.playoffs { border-top: 2px solid var(--orange); }
tbody tr:hover { background: rgba(241,90,34,0.12); transition: background 0.15s; }

td:first-child {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: var(--muted);
}

/* ─── TAGS ───────────────────────────────── */
.tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 3px;
}

.tag.home    { background: var(--orange); color: var(--white); }
.tag.away    { background: var(--blue);   color: var(--white); }
.tag.playoff { background: var(--dark);  color: var(--orange); border: 1px solid var(--orange); }

.result { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; color: var(--muted); }

/* ─── CARDS ──────────────────────────────── */
.cards-grid {
  max-width: 960px;
  margin: 0 auto;
  padding: 8px 20px 60px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s;
}

.card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }

.card-top {
  background: var(--blue);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-top .initials {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--orange);
  letter-spacing: 0.1em;
}

.card-body { padding: 20px; }

.card-body h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--blue);
}

.card-body .role {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 4px 0 10px;
}

.card-body p { font-size: 0.85rem; color: var(--muted); line-height: 1.55; }

/* ─── INFO SECTION (recruiting) ─────────── */
.info-section {
  max-width: 760px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.info-section h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--blue);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  border-left: 4px solid var(--orange);
  padding-left: 14px;
}

.info-section p { font-size: 0.9rem; color: #444; line-height: 1.7; margin-bottom: 20px; }

/* ─── CTA BUTTON ─────────────────────────── */
.cta-btn {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.15s;
}

.cta-btn:hover { background: #d44d1a; }

/* ─── FOOTER ─────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.45);
  padding: 40px 20px 28px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-align: center;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto 28px;
  text-align: left;
}

.footer-item strong {
  display: block;
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.footer-item p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.footer-item a {
  color: var(--orange);
  text-decoration: none;
}

.footer-item a:hover { text-decoration: underline; }

footer > p {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 20px;
  margin-top: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ─── HAMBURGER ──────────────────────────── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 640px) {
  nav {
    flex-wrap: wrap;
    height: auto;
    padding: 12px 16px;
  }

  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 8px 0 4px;
    gap: 4px;
  }

  .nav-links.open { display: flex; }

  .nav-btn {
    width: 100%;
    text-align: center;
    padding: 10px 16px;
  }

  .nav-logo-img { height: 28px; }

  /* Hero */
  .hero { height: 70vh; min-height: 400px; }

  /* Stats bar */
  .stats-bar { flex-wrap: wrap; }
  .stats-bar div { max-width: none; flex: 1 1 50%; }

  /* Cards */
  .cards-grid { padding-bottom: 40px; }

  /* Sponsors */
  .sponsor-img { height: 50px; max-width: 120px; }

  /* Footer */
  .footer-contact {
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
  }

  /* Table mobile */
  th:nth-child(4), td:nth-child(4),
  th:nth-child(5), td:nth-child(5) { display: none; }

  main { padding: 20px 12px 40px; }
  table { font-size: 0.78rem; }
  th { padding: 10px 8px; }
  td { padding: 10px 8px; }
  td:first-child { font-size: 0.9rem; }
  td:nth-child(3) { word-break: break-word; max-width: 100px; }
}
