/* -----------------------------------------------------------------------------
  HERO SECTION
  ----------------------------------------------------------------------------- */
.hero {
  background-image: url('../images/banners/midtown_manhattan_skyline.jpeg');
  background-size: cover;
  background-position: center;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--nyc-white);
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--nyc-overlay);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: var(--font-xxxl, 48px);
  color: var(--nyc-pink);
  margin-bottom: var(--space-sm);
}

.hero p {
  font-size: var(--font-md, 24px);
  font-style: italic;
  color: var(--nyc-white);
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: var(--font-xxl, 40px);
  }
  .hero p {
    font-size: var(--font-sm, 18px);
  }
}

@media (max-width: 450px) {
  .hero h1 {
    font-size: var(--font-xl, 32px);
  }
}