/* Hero section styles - Main banner with background image */
.hero {
  position: relative;
  width: 100%;
  padding: 100px 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 100px;
  overflow: hidden;
  background-color: var(--color-secondary);
  background-image: url(../../img/bg_hero.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: var(--color-primary);
}

.hero__content-text {
  font-size: 22px;
  z-index: 2;
  max-width: 470px;
}

.hero__content-text p {
  margin-bottom: var(--spacing-sm);
  font-weight: 500;
}

.hero__content-text h1 {
  font-size: 52px;
  line-height: 55px;
  font-weight: bold;
}

.hero__image {
  display: flex;
  align-items: start;
  justify-content: center;
}

.hero__image img {
  width: 337px;
}

/* Responsive hero height */
@media (max-width: 768px) {
  .hero {
    padding: 80px 20px;
    flex-direction: column;
    gap: 80px;
    height: auto;
  }

  .hero__content {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 80px 20px;
    flex-direction: column;
    gap: 80px;
    height: auto;
  }
}