.hero {
  position: relative;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}


/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.30);
}

/* CONTENT */
.hero-content {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  gap: 10px;
}

/* HEADLINE */
.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.9rem;
  line-height: 1.25;
}

.hero h1 span {
  color: #f4c542;
}

/* SUBTEXT */
.hero-subtext {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

/* CTA */
.hero-button {
  display: inline-block;
  max-width: 100%;
  text-align: center;
  background: #25D366;
  color: white;
  padding: 0.9rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 1rem;
  box-sizing: border-box;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: all 0.2s ease;
}

.hero-button:hover {
  background: #1F3354;
  transform: scale(1.03);
}


 @media (min-width: 768px) {

  .hero {
     min-height: 65vh;
    padding: 0 5%;
  }

  .hero-content {
    max-width: 600px;
  }

  .hero h1 {
    font-size: 3rem;
    line-height: 1.2;
  }

  .hero-subtext {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .hero-button {
    display: inline-block;
    width: auto;
    padding: 12px 22px;
  }
}

