.hero-slider {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
}

.hero-slider__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slider__slide.active {
  opacity: 1.1;
  z-index: 1;
}

.hero-slider__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-slider__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  z-index: 2;
}
.hero-slider__content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  line-height: 1.2;
  text-shadow: 0 8px 25px rgba(126, 123, 123, 0.822);
}
