body {
  margin: 0; font-family: Arial, sans-serif; color: #333;
}
header {
  background: black; color: #fff; display: flex;
  align-items: center; justify-content: space-between; padding: 0.75rem 1rem;
  position: sticky; top: 0; z-index: 999;
}
.logo { font-size: 1.4rem; font-weight: bold; }
.hamburger {
  font-size: 1.8rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  margin-left: auto; /* Pushes to far right */
}

nav ul {
  list-style: none; margin: 0; padding: 0;
  display: none; flex-direction: column; background: black;
}
nav ul li { padding: 0.75rem 1rem; }
nav ul li a {
  color: white; text-decoration: none; font-size: 1rem;
}
nav.show ul { display: flex; }

@media (min-width: 768px) {
  .hamburger { display: none; }
  nav { display: block !important; }
  nav ul {
    display: flex !important;
    flex-direction: row; background: none;
  }
  nav ul li { padding: 0 1rem; }
}

.hero {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

@media (min-width: 1000px) {
  .hero {
    height: 80vh;
  }
}


.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section { padding: 1rem; border-bottom: 1px solid #ddd; }
.games-list { list-style: none; padding: 0; }
.games-list li { margin: 0.5rem 0; }
.media-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.media-item { background: #eee; padding: 1rem; text-align: center; }
.contact-section address { font-style: normal; line-height: 1.6; }
footer { background: black; color: #fff; text-align: center; padding: 0.5rem; }
@media (min-width: 768px) {
  .media-grid { grid-template-columns: repeat(3, 1fr); }
}

.schedule-section h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.schedule-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 0 1rem;
}

.game-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  text-align: center;
  padding: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.game-card img {
  max-width: 100px;
  margin: 0 auto 1rem;
}

.game-card h3 {
  margin: 0.5rem 0;
  font-size: 1.2rem;
  font-weight: bold;
}

.game-card .location {
  font-weight: bold;
  color: #444;
}

.game-card .date {
  color: #555;
  font-size: 0.95rem;
}

/* Responsive for wider screens */
@media (min-width: 600px) {
  .schedule-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .schedule-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}



.slide.active {
  opacity: 1;
}

.carousel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 1;
}

.carousel .prev {
  left: 10px;
}

.carousel .next {
  right: 10px;
}


.sponsorship-list, .payment-options, .game-list {
  list-style: none;
  padding-left: 1rem;
  margin-top: 0.5rem;
}

.sponsorship-list li, .payment-options li, .game-list li {
  margin: 0.5rem 0;
  padding-left: 1rem;
  position: relative;
}

.sponsorship-list li::before,
.payment-options li::before,
.game-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #003366;
  font-weight: bold;
}
.image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.5rem 0;
}

.field-sign-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.section h2 {
  margin-top: 2rem;
  font-size: 1.8rem;
}

.section h4 {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  font-weight: bold;
}

.section ul {
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}

.quicknav-grid {
  display: grid;
  gap: 1rem;
  padding: 1rem;

  /* Default layout: 1 column for mobile */
  grid-template-columns: 1fr;
}

/* For tablets and small desktops (≥ 768px) */
@media (min-width: 768px) {
  .quicknav-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* For wide screens (≥ 1024px) */
@media (min-width: 1024px) {
  .quicknav-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


.quicknav-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  display: block;
  text-decoration: none;
  color: white;
}

.quicknav-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: brightness(0.7);
  transition: transform 0.3s ease;
}

.quicknav-card:hover img {
  transform: scale(1.05);
}

.quicknav-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
}

.logo img {
  height: 50px;  /* Adjust as needed */
  width: auto;
  display: block;
}

.hero-text {
  position: absolute;
  top: 90%;
  left: 1rem;
  /* aligns with site padding */
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4); /* transparent dark background */
  padding: 0.5rem 1rem;
  color: white;
  font-size: 1.5rem; /* smaller text */
  font-weight: 600;
  text-align: left;
  border-radius: 8px;
  max-width: 300px;
  z-index: 2;
}

@media (max-width: 600px) {
  .hero-text {
    font-size: 1 rem;
    left: 1rem;
    max-width: 90%;
  }
}


.schedule-table-section {
  padding: 2rem;
  background-color: #fff;
}

.schedule-table-container {
  overflow-x: auto;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.schedule-table thead {
  background-color: #000;
  color: white;
}

.schedule-table th,
.schedule-table td {
  text-align: left;
  padding: 12px 15px;
  border-bottom: 1px solid #ddd;
}

.schedule-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.schedule-table tr:hover {
  background-color: #f1f1f1;
}

.video-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  padding-top: 25px;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.donate-button {
  background-color: black;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
}

.donate-button:hover {
  background-color: darkgray;
}

