.hero-section {
  position: relative;
  background-image: url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center top;
  height: 65vh;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 55%, rgba(0, 0, 0, 0) 100%);
}

.hero-overlay {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 520px;
}

.hero-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.75rem;
}

.hero-heading {
  font-family: 'Pacifico', cursive;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.75rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.hero-btn {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background-color: #F72585;
  border: none;
  border-radius: 2rem;
  padding: 0.75rem 2rem;
  text-decoration: none;
  transition: background-color 0.2s, transform 0.15s;
}

.hero-btn:hover {
  background-color: #d61f72;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .hero-section {
    height: 52vh;
    min-height: 300px;
  }
  .hero-heading {
    font-size: 2.2rem;
  }
}

@media (max-width: 600px) {
  .hero-section {
    height: 50vh;
    min-height: 280px;
    background-position: 60% center;
  }
  .hero-overlay {
    padding: 1.5rem;
  }
}
