.hero {
  background-size: cover;
  background-position: center;
  position: relative;

  background-image: linear-gradient(rgba(255, 212, 0, 0.25),
      rgba(14, 27, 42, 0.75)),
    url("/public/assets/images/optimized/background-hero.jpg");
  background-blend-mode: normal;
  height: 600px;
  padding: 0px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  .hero-title {
    text-align: center;
    margin-top: 100px;
    text-transform: uppercase;
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }

  .hero-subtitle {
    text-align: center;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.9);

    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 300;
    max-width: 650px;
    line-height: 1.6;
    margin-bottom: 48px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
}