body {
  margin: 0;
  background-color: black;
}

/* ===== Header (image banner) ===== */
.landing_picture {
  width: 100%;
  height: 50vh;
  object-fit: cover;
  overflow: hidden;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
  z-index: -1;
  filter: saturate(0.8) blur(3px) brightness(0.9) brightness(0.8);
}

#page-title {
  position: relative;
  display: block;
}

.overlay-text {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

.One-mission {
  font-family: "Spectral", serif;
  font-size: 8vh;
  font-weight: 700;
  display: inline-block;
  border-bottom: 4px solid white;
  padding-bottom: 1vh;
}

/* ===== Sponsors section ===== */
.sponsors-section {
  background-color: black;
  padding: 9vh 6vw;
}

.sponsors-intro {
  max-width: 60rem;
  margin: 0 auto 7vh auto;
  color: #e6e6e6;
  font-family: "Spectral", serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.6;
  text-align: center;
}

.section-heading {
  color: white;
  font-family: "Spectral", serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 6vh;
}

.section-heading::after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  background-color: white;
  margin: 2vh auto 0 auto;
}

/* ===== Sponsor grid ===== */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  max-width: 70rem;
  margin: 0 auto;
}

.sponsor-card {
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.sponsor-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

/* ===== Become a Partner CTA ===== */
.cta-section {
  background-color: black;
  padding: 4vh 6vw 11vh 6vw;
  text-align: center;
}

.cta-heading {
  color: white;
  font-family: "Spectral", serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2vh;
}

.cta-text {
  color: #cccccc;
  font-family: "Almarai", sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  line-height: 1.6;
  max-width: 50rem;
  margin: 0 auto 5vh auto;
}

.cta-button {
  display: inline-block;
  background-color: #ff7c7c;
  color: white;
  font-family: "Almarai", sans-serif;
  font-weight: bold;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  text-decoration: none;
  padding: 1rem 2.6rem;
  border-radius: 8px;
}
