.hero-section {
  padding: 0.5rem 0 1.5rem;
  background-color: #2c2c2c;
  border-bottom: 0.5rem solid #f2c94f;
  text-align: center;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.hero-section .hero-description {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto;
}

.hero-section .hero-subtitle {
  font-size: 1.75rem;
  color: #f2c94f;
  font-weight: 500;
}

.hero-section a {
  color: #fff;
}

/* Ensure buttons inside the dark hero keep dark text */
.hero-section .donate-button {
  color: #000;
}

/* Hero inner two-column layout (dark background) */
.hero-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}
.hero-section-left {
  flex: 1 1 45%;
  text-align: left;
}
.hero-section-left h2 {
  font-size: 1.75rem;
  color: #f2c94f;
  margin-bottom: 0.5rem;
}
.hero-section-left p {
  color: #fff;
  font-weight: 300;
  line-height: 1.5;
}
.hero-section-right {
  flex: 1 1 55%;
  display: flex;
  justify-content: center;
}
.video-embed {
  position: relative;
  width: 100%;
  max-width: 720px; /* larger, proportional max width */
  margin: 0 auto;
  padding-top: 56.25%; /* 16:9 aspect ratio */
}
.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* Stack hero and constrain video at tablet and below */
@media (max-width: 1024px) {
  .hero-section-inner {
    flex-direction: column;
    text-align: left;
    align-items: stretch;
  }
  .hero-section-left,
  .hero-section-right {
    width: 100%;
    max-width: 100%;
  }
  .hero-section-right {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
  }
}

.hero-cta-wrap {
  text-align: center;
  margin-top: 1.5rem;
}

/* Scale down the dark hero h1 on mobile */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }
}
