.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-image: url('../../img/hero.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(34, 37, 42, 0.9) 0%, rgba(34, 37, 42, 0.5) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 850px;
}

.hero-title {
  font-size: 52px;
  color: var(--clr-text-inverse);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title span {
  color: var(--clr-accent);
}

.hero-subtitle {
  font-size: 20px;
  color: var(--clr-border-light);
  margin-bottom: 40px;
  max-width: 650px;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .hero {
    min-height: 60vh;
  }
  .hero-title {
    font-size: 40px;
  }
  .hero-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 80px 0;
    text-align: center;
  }
  .hero-overlay {
    background: rgba(34, 37, 42, 0.85);
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .hero-actions .btn {
    width: 100%;
  }
}



@media (max-width: 374px) {
  .hero-title {
    font-size: 28px;
  }
}