/* Hero Headline - Large centered statement section */

.hero-headline {
  background: #fff9f8;
  padding: 85px 6vw 25px;
  text-align: center;
}

.hero-headline__container {
  max-width: 1100px;
  margin: 0 auto;
}

/* On this page navigation */
.hero-headline__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-headline__nav-label {
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(50, 1, 58, 0.5);
}

.hero-headline__nav-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-headline__nav-item {
  display: flex;
  align-items: center;
}

.hero-headline__nav-item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: rgba(50, 1, 58, 0.3);
  border-radius: 50%;
  margin-left: 0.5rem;
}

.hero-headline__nav-link {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #751560;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.hero-headline__nav-link:hover {
  color: #32013a;
  opacity: 0.8;
}

.hero-headline__label {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(50, 1, 58, 0.6);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero-headline__title {
  font-family: "Poppins", sans-serif;
  font-size: 4.2rem;
  font-weight: 300;
  line-height: 1.25;
  color: #32013a;
  margin: 0;
  opacity: 0;
  transform: translateY(30px);
}

/* Animation states */
.hero-headline.in-view .hero-headline__nav {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.05s,
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.05s;
}

.hero-headline.in-view .hero-headline__label {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.15s,
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

.hero-headline.in-view .hero-headline__title {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s,
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

/* Responsive - Tablet */
@media (max-width: 1200px) {
  .hero-headline {
    padding: 70px 6vw 20px;
  }

  .hero-headline__title {
    font-size: 3.6rem;
  }

  .hero-headline__nav {
    margin-bottom: 20px;
  }

  .hero-headline__nav-label {
    font-size: 0.75rem;
  }

  .hero-headline__nav-link {
    font-size: 0.8rem;
  }
}

/* Responsive - Small Tablet */
@media (max-width: 991px) {
  .hero-headline {
    padding: 60px 5vw 18px;
  }

  .hero-headline__title {
    font-size: 3rem;
  }

  .hero-headline__container {
    max-width: 800px;
  }

  .hero-headline__nav {
    margin-bottom: 18px;
    gap: 1rem;
  }

  .hero-headline__nav-label {
    font-size: 0.7rem;
  }

  .hero-headline__nav-link {
    font-size: 0.75rem;
  }

  .hero-headline__nav-list {
    gap: 0.4rem;
  }

  .hero-headline__nav-item:not(:last-child)::after {
    margin-left: 0.4rem;
  }
}

/* Responsive - Mobile */
@media (max-width: 767px) {
  .hero-headline {
    padding: 55px 5vw 15px;
  }

  .hero-headline__title {
    font-size: 2.4rem;
  }

  .hero-headline__label {
    font-size: 0.7rem;
    margin-bottom: 1.25rem;
  }

  .hero-headline__nav {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 15px;
  }

  .hero-headline__nav-label {
    font-size: 0.65rem;
  }

  .hero-headline__nav-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3rem 0.5rem;
  }

  .hero-headline__nav-link {
    font-size: 0.7rem;
  }

  .hero-headline__nav-item:not(:last-child)::after {
    width: 3px;
    height: 3px;
    margin-left: 0.5rem;
  }
}

/* Responsive - Small Mobile */
@media (max-width: 479px) {
  .hero-headline {
    padding: 48px 5vw 12px;
  }

  .hero-headline__title {
    font-size: 1.9rem;
  }

  /* Hide the explicit line breaks and let text wrap naturally */
  .hero-headline__title br {
    display: none;
  }

  .hero-headline__label {
    font-size: 0.65rem;
    margin-bottom: 1rem;
  }

  .hero-headline__nav {
    margin-bottom: 12px;
    gap: 0.5rem;
  }

  .hero-headline__nav-label {
    font-size: 0.6rem;
  }

  .hero-headline__nav-link {
    font-size: 0.65rem;
  }
}

/* Large screens */
@media (min-width: 1600px) {
  .hero-headline {
    padding: 95px 6vw 30px;
  }

  .hero-headline__title {
    font-size: 4.8rem;
  }

  .hero-headline__container {
    max-width: 1200px;
  }

  .hero-headline__nav {
    margin-bottom: 30px;
    gap: 1.75rem;
  }

  .hero-headline__nav-label {
    font-size: 0.85rem;
  }

  .hero-headline__nav-link {
    font-size: 0.9rem;
  }
}

/* Very Large screens (1800px+) */
@media (min-width: 1800px) {
  .hero-headline__container {
    max-width: 1300px;
  }

  .hero-headline__title {
    font-size: 5rem;
  }
}

/* 2000px+ */
@media (min-width: 2000px) {
  .hero-headline__title {
    font-size: 5.4rem;
  }
}
