:root {
  --blue-main: #4169E1;
  --blue-soft: #B9D9EB;
  --dark: #0b1220;
  --gray: #f4f6fa;
  --white: #ffffff;
}

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

body {
  font-family: "Poppins", sans-serif;
  background: white;
  color: var(--dark);
  padding-top: 70px;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 12px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: var(--blue-main);
}

.navbar nav a {
  margin-left: 25px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  transition: 0.2s;
}

.navbar nav a:hover {
  color: var(--blue-main);
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(65,105,225,0.4),
      rgba(0,0,0,0.7)
    ),
    url("headerpic.jpg") center/cover no-repeat;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 7vw, 7rem);
  letter-spacing: 5px;
}

.hero p {
  margin-top: 10px;
  font-size: 1.1rem;
  opacity: 0.9;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* BUTTONS */
.btn {
  padding: 12px 26px;
  background: var(--blue-main);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-outline {
  padding: 12px 26px;
  border: 2px solid white;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-outline:hover {
  background: white;
  color: var(--dark);
}

/* SEASON */
.season {
  padding: 100px 10%;
  background: var(--blue-soft);
  text-align: center;
}

.season h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
  color: var(--blue-main);
}

.season p {
  margin-top: 10px;
  font-size: 1.1rem;
}

/* PROGRAM */
.program {
  padding: 120px 10%;
  background: white;
}

.program-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.program h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
}

.program p {
  margin-top: 15px;
  line-height: 1.7;
  font-size: 1rem;
}

.program-stats {
  display: grid;
  gap: 25px;
}

.stat {
  padding: 25px;
  background: var(--gray);
  border-radius: 16px;
}

.stat h3 {
  font-size: 1.8rem;
  color: var(--blue-main);
}

/* SCHEDULE */
.schedule-section {
  padding: 120px 10%;
  background: #0b1220;
  color: white;
}

.schedule-header h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.2rem;
}

.schedule-header p {
  margin-top: 8px;
  opacity: 0.8;
}

.schedule-graphic {
  margin-top: 50px;
  text-align: center;
}

.schedule-graphic img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

.schedule-list {
  margin-top: 60px;
  display: grid;
  gap: 15px;
}

.game {
  display: flex;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  transition: 0.3s;
}

.game:hover {
  background: rgba(255,255,255,0.12);
}

/* CULTURE */
.culture {
  padding: 120px 10%;
  background: white;
  text-align: center;
}

.culture h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
}

/* JOIN */
.join {
  padding: 120px 10%;
  background: var(--blue-main);
  color: white;
  display: flex;
  justify-content: center;
}

.join-card {
  max-width: 600px;
  text-align: center;
}

.join h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
}

/* FOOTER */
footer {
  padding: 50px 10%;
  background: #0b1220;
  color: white;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* WHY DONATE */
.why-donate {
  padding: 120px 20px;
  text-align: center;
  background: #f4f6fb;
}

.why-content {
  max-width: 800px;
  margin: 0 auto;
}

.why-donate h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.why-donate p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.donate-buttons a {
  display: inline-block;
  margin: 10px;
  padding: 14px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.primary-btn {
  background-color: #4f6df5;
  color: white;
}

.primary-btn:hover {
  background-color: #364fc7;
}

.secondary-btn {
  border: 2px solid #4f6df5;
  color: #4f6df5;
}

.secondary-btn:hover {
  background-color: #4f6df5;
  color: white;
}

/* VIDEO SECTION */
.video-section {
  padding: 100px 20px;
  text-align: center;
}

.video-container {
  max-width: 800px;
  margin: 30px auto;
  aspect-ratio: 16/9;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.video-caption {
  margin-top: 15px;
  font-size: 16px;
  color: #555;
}

/* HELP SECTION */
.help-section {
  padding: 100px 20px;
  background-color: #f4f6fb;
  text-align: center;
}

.help-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.help-card {
  max-width: 300px;
}

.help-card h3 {
  margin-bottom: 10px;
}

/* MOBILE NAV */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {

  .navbar {
    padding: 12px 25px;
  }

  .navbar nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: white;
    width: 100%;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
  }

  .navbar nav a {
    margin: 15px 0;
  }

  .menu-toggle {
    display: block;
  }

  .navbar.active nav {
    display: flex;
  }
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* PASTE THE DIRECTIONS CSS HERE */

.directions {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.directions-btn {
  padding: 12px 28px;
  background: var(--blue-main);
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}

.directions-menu {
  display: none;
  position: absolute;
  top: 50px;
  left: 0;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  overflow: hidden;
  min-width: 200px;
}

.directions-menu a {
  display: block;
  padding: 12px 18px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
}

.directions-menu a:hover {
  background: var(--gray);
}

.directions-menu.show {
  display: block;
}

.directions-btn:hover {
  transform: translateY(-2px);
}
