.hero-section {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  background-image: url("../../assets/hair-care-4541744_1920.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(44, 44, 44, 0.75) 0%,
    rgba(139, 111, 111, 0.7) 30%,
    rgba(201, 162, 160, 0.65) 70%,
    rgba(212, 175, 135, 0.7) 100%
  );
  z-index: 0;
  pointer-events: none;
}

.hero-container {
  max-width: 56.25rem;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-logo {
  width: 12.5rem;
  height: 12.5rem;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 2rem;
}

.hero-container h2 {
  font-size: var(--fs-h1);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  color: var(--neutral-light);
  margin-bottom: 1.5rem;
  line-height: var(--lh-h1);
  letter-spacing: var(--ls-h1);
  text-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.5),
    0 0.25rem 1rem rgba(0, 0, 0, 0.3);
}

.hero-container p {
  font-size: var(--fs-h6);
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  color: var(--neutral-light);
  margin-bottom: 2.5rem;
  line-height: var(--lh-h6);
  max-width: 37.5rem;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 0.0625rem 0.375rem rgba(0, 0, 0, 0.4),
    0 0.125rem 0.75rem rgba(0, 0, 0, 0.25);
}

.hero-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--gradient-luxury);
  color: var(--neutral-light);
  text-decoration: none;
  border-radius: 3.125rem;
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-h6);
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15);
}

.hero-btn:hover {
  background: var(--accent-pink);
}

@media (max-width: 1024px) {
  .hero-section {
    min-height: 45vh;
  }

  .hero-container {
    padding: 3.5rem 2.5rem;
  }

  .hero-logo {
    width: 11.25rem;
    height: 11.25rem;
  }

  .hero-container h2 {
    font-size: var(--fs-h2);
  }

  .hero-btn {
    padding: 0.875rem 2.25rem;
  }
}

@media (max-width: 900px) {
  .hero-section {
    min-height: 40vh;
    padding: 7rem 1.75rem 3.5rem;
    background-attachment: scroll;
  }

  .hero-container {
    padding: 3rem 2rem;
  }

  .hero-logo {
    width: 10rem;
    height: 10rem;
  }

  .hero-container h2 {
    font-size: var(--fs-h3);
  }

  .hero-container p {
    font-size: var(--fs-base);
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 38vh;
    padding: 6rem 1.5rem 3rem;
    background-attachment: scroll;
  }

  .hero-container {
    padding: 2.5rem 1.75rem;
  }

  .hero-logo {
    width: 9rem;
    height: 9rem;
    margin-bottom: 1.5rem;
  }

  .hero-container h2 {
    font-size: var(--fs-h4);
    margin-bottom: 1.25rem;
  }

  .hero-container p {
    margin-bottom: 2rem;
  }

  .hero-btn {
    padding: 0.75rem 2rem;
    font-size: var(--fs-base);
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: 35vh;
    padding: 5rem 1.25rem 2.5rem;
    background-position: center 40%;
    background-attachment: scroll;
  }

  .hero-container {
    padding: 2rem 1.5rem;
  }

  .hero-logo {
    width: 7.5rem;
    height: 7.5rem;
    margin-bottom: 1.25rem;
  }

  .hero-container h2 {
    font-size: var(--fs-h5);
    margin-bottom: 1rem;
  }

  .hero-container p {
    font-size: 0.938rem;
    margin-bottom: 1.75rem;
  }

  .hero-btn {
    padding: 0.75rem 1.75rem;
    font-size: 0.938rem;
  }
}

@media (max-width: 375px) {
  .hero-section {
    min-height: 32vh;
    padding: 4.5rem 1rem 2rem;
    background-position: center 40%;
    background-attachment: scroll;
  }

  .hero-container {
    padding: 1.75rem 1.25rem;
  }

  .hero-logo {
    width: 6.5rem;
    height: 6.5rem;
    margin-bottom: 1rem;
  }

  .hero-container h2 {
    font-size: var(--fs-h6);
    margin-bottom: 0.875rem;
  }

  .hero-container p {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }

  .hero-btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
  }
}
