body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #002244;
  background-color: #f0f4f8;
}

header {
  background: #004488;
  color: white;
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.page-title h1 {
  font-size: 3rem; /* Bigger title */
  margin-bottom: 0.5rem;
}

.page-title p {
  font-size: 1.5rem; /* Bigger subtitle */
  margin-top: 0;
}
.page-title h1 {
  font-size: 3rem;
  color: white;
  text-shadow: 0 0 6px #001f4d, /* soft blue glow */ 0 0 12px #001f4d; /* diffuse blur */
  margin-bottom: 0.5rem;
}
nav {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu,
.menu-collapse {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.menu a,
.menu-collapse a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: color 0.3s;
}

.menu a:hover,
.menu-collapse a:hover {
  color: magenta;
}

.menu a.active,
.menu-collapse a.active {
  color: orange;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .menu {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .menu-collapse {
    display: none;
    flex-direction: column;
  }
  .menu-collapse.show {
    display: flex;
  }
}

.content-section {
  padding: 2rem;
}
.content-section h2 {
  text-align: center;
  margin-bottom: 1rem;
}
.content-section h2 {
  color: #ffffff; /* dark text for contrast */
  text-shadow: 0 0 5px #002244, 0 0 10px #002244, 0 0 20px #002244;
}
.content-section h2 {
  font-size: 2.5rem; /* Adjust as needed */
}
.content-section h3 {
  text-align: center;
  margin-bottom: 3rem; /* increased spacing */
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  gap: 1rem;
}

.left-col {
  flex: 1;
  max-width: 300px;
}

.left-col img {
  width: 100%;
  height: auto;
}

.right-col {
  flex: 2;
  min-width: 0;
}
.right-col {
  padding-left: 3rem;
  padding-right: 3rem;
}
.contact-section {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 4rem 1rem;
  text-align: center;
}

.contact-section a {
  font-size: 2rem;
  color: #002244;
  text-decoration: none;
}

.sponsors-section {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
  padding: 2rem;
}

.sponsors-section img {
  width: 100%;
  height: auto;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

.page-title {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #e8f0fa;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* matches sections */
  border-radius: 8px;
  margin: 2rem auto;
  max-width: 1200px;
  color: #002244;
}
.content-section,
.contact-section,
.sponsors-section {
  background-color: #e8f0fa; /* ensure the shadow is visible */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  margin: 2rem auto;
  padding: 2rem;
  max-width: 1200px;
}
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  box-shadow: 0 0 20px #fff;
  border-radius: 8px;
}
.sponsors-section img {
  width: 100%;
  height: auto;
  max-height: 120px; /* or 100px depending on your layout */
  object-fit: contain;
}

@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: #004488;
    width: 100%;
    padding: 1rem 0;
  }

  .menu.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}