/* ===== HERO SECTION ===== */
.hero_section {
  position: relative;
  height: 100vh;
  background: url("../images/hero-bg.jpg") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 19, 26, 0.6); /* overlay */
  z-index: 1;
}

.hero_section .container {
  position: relative;
  z-index: 2;
}

.hero_title {
  font-size: var(--font-size-9xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-lg);
  line-height: 8rem;
}

.hero_subtitle {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--spacing-lg);
}

/* Responsive */
@media (max-width: 991.98px) {
  .hero_title {
    font-size: var(--font-size-8xl);
    line-height: 6rem;
    margin-bottom: var(--spacing-xl);
  }
  .hero_subtitle {
    font-size: var(--font-size-lg);
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .hero_title {
    font-size: var(--font-size-5xl);
    line-height: 3rem;
    margin-bottom: var(--spacing-md);
  }
  .hero_subtitle {
    font-size: var(--font-size-sm);
    margin-bottom: 0;
  }
}
