/* hero */
.container-hero {
  height: 95vh;
  border-bottom: 2px solid var(--color-primary);
}

.container-hero h1 {
  line-height: 1.4;
}
.container-hero h1 > span {
  font-size: 3.3rem;
}
.hero-content {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  flex-direction: column;
}
.hero-decor {
  position: relative;
  min-height: 17rem;
}
.hero-decor::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url(../images/bg-hero-desktop.avif) center / cover no-repeat;
}
.hero-decor::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -35px;
  width: 70px;
  height: 70px;
  background-color: var(--color-secondary);
  border-radius: 100%;
}
.hero-promo {
  font-size: 3rem;
  line-height: 1.2;
}
/* announcement */
.container-announcement {
  background-color: var(--color-primary);
}
.announcement-decor-1 {
  /* border-radius: 1rem; */
  border-radius: 111px 1rem 1rem 111px;
  width: 100%;
  height: auto;
}
.announcement-decor-2 {
  position: relative;
  top: 0;
  left: -2rem;
  width: 109%;
  height: auto;
  border-radius: var(--border-radius);
}
.announcement-decor-top {
  position: absolute;
  top: -2rem;
  left: 2rem;
}
/* about */
.container-about {
  position: relative;
}
.container-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: url(../images/decor-bg.avif) bottom right / cover no-repeat;
}
.decor-about-1 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 888px 888px 1rem 1rem;
  max-height: auto;
}
.decor-about-2,
.decor-about-3 {
  width: 100%;
  height: 100%;
}
/* offer */
.container-offer {
  background-color: var(--color-primary);
}
.offer-img {
  height: auto;
  width: calc(100% - 1.5rem);
}
.offer-btn {
  position: absolute;
  right: -25px;
  top: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: larger;
  letter-spacing: 2px;
  font-family: "Libre Baskerville";
  text-transform: uppercase;
  text-decoration: underline;
}
.offer-2 {
  margin-top: -4rem;
}
/* gallery */
.index-gallery-item {
  width: 100%;
  height: auto;
}
.gallery-title-wrapper {
  display: flex;
  justify-content: start;
  flex-direction: column;
  aspect-ratio: unset;
}
/* ======================= */
@media (max-width: 575.98px) {
  .container-hero {
    min-height: 110vh;
  }
}

@media (min-width: 576px) {
  .gallery-title-wrapper {
    aspect-ratio: 3 / 1;
  }
}
@media (max-width: 767.98px) {
  .offer-decor {
    margin-bottom: 2rem;
  }
  .offer-2 {
    margin-top: 0;
  }
}

@media (max-width: 991.98px) {
  .hero-decor::after {
    top: -35px;
    transform: translateX(-50%);
    left: 50%;
  }
  .container-about::before {
    position: unset;
    background: none;
  }
  .decor-about-1 {
    max-height: 600px;
  }
}
