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

:root {
  --accent: #ff5f1f;
  --dark: #0a0f1a;
  --light: #f6f4ef;
  --muted: #6b7280;
  --max: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--dark);
  background: var(--light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  color: #fff;
  background-image: url("images/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 2rem;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
}

.logo {
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 1.1rem;
}
.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: var(--max);
  width: 140vmin;
  margin: 0 calc(50vw - 70vmin);
  padding: 2rem;
  @media (min-width: 600px) {
    width: 80vmin;
    margin: 0 auto;
  }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.lead {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  max-width: 36rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.9rem;
  border-radius: 2px;
  transition: transform 0.2s, background 0.2s;
  align-self: flex-start;
}
.btn:hover { transform: translateY(-2px); background: #e64f10; }

.btn-light {
  background: #fff;
  color: var(--dark);
}
.btn-light:hover { background: #eee; }

/* ---------- SECTIONS ---------- */
.section {
  padding: 6rem 0;
}
.section-alt { background: #fff; }

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.section-intro {
  max-width: 42rem;
  color: var(--muted);
  margin-bottom: 3.5rem;
  font-size: 1.1rem;
}

/* ---------- SPORTS ---------- */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.sport-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 4px;
  border-left: 4px solid var(--accent);
  transition: transform 0.25s, box-shadow 0.25s;
}
.section-alt .sport-card { background: var(--light); }

.sport-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -12px rgba(10,15,26,0.2);
}

.sport-number {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.sport-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.sport-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- SCHEDULE ---------- */
.schedule {
  list-style: none;
  max-width: 640px;
}
.schedule li {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(10,15,26,0.08);
}
.schedule li:last-child { border-bottom: none; }

.time {
  font-weight: 800;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  min-width: 4rem;
  font-size: 1.05rem;
}
.event {
  font-size: 1.05rem;
  font-weight: 500;
}

/* ---------- VENUE ---------- */
.venue-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
}

.venue-grid p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

address {
  font-style: normal;
  font-weight: 600;
  line-height: 1.7;
}

.venue-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.fact {
  background: var(--dark);
  color: #fff;
  padding: 2rem 1.5rem;
  border-radius: 4px;
  text-align: center;
}
.fact strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.fact span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.8;
}

/* ---------- CTA ---------- */
.cta {
  background: var(--dark);
  color: #fff;
  text-align: center;
}
.cta-inner { max-width: 600px; margin: 0 auto; }
.cta p { margin-bottom: 2rem; opacity: 0.8; font-size: 1.1rem; }
.cta .btn { align-self: center; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--dark);
  color: #fff;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer p { font-size: 0.85rem; opacity: 0.6; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 720px) {
  .nav-links { display: none; }
  .venue-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .section { padding: 4rem 0; }
  .schedule li { gap: 1rem; }
}
