.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-wrapper,
.hero-mobile {
  width: 100%;
  height: 100%;
}

.hero-image {
  width: 100%;
  object-fit: cover; /* makes image fill area without distortion */
  object-position: center;
  display: block;
}

/* Centered text overlay on hero */
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  pointer-events: none;
}

.hero-title {
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  color: #fff;
  font-size: clamp(0.9rem, 2.5vw, 1.25rem);
  margin: 0;
  max-width: 90%;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
