/* ===========================================
   ABOUT US - HERO SECTION
   =========================================== */
.hero-banner {
  position: relative;
  height: 625px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}

.hero-banner__banner {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-banner__banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1120px;
  padding: 4rem;
}

.hero-banner__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-banner__subtitle {
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 768px) {
  /* ===========================================
   ABOUT US - HERO SECTION
   =========================================== */
  .hero-banner {
    height: 320px;
  }

  .hero-banner__title {
    letter-spacing: 1px;
  }
}
