/* hero */
.container-hero-wrapper {
  z-index: 1;
}
.container-hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  z-index: 1;
}
.hero-content {
  background-color: var(--color-primary);
}
.hero-subtitle {
  color: var(--color-text-light);
}
.hero-book-online-btn {
  margin-bottom: -4vh;
  width: 19rem;
}
/* announcement  */
.container-announcement {
  color: var(--color-text-light);
}
.announcement-decor {
  min-width: 200px;
  width: 15vw;
  height: auto;
}
/* intro */
.container-intro {
  position: relative;
  background: url(../images/bg-intro.avif) center left / cover no-repeat;
}
.container-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  opacity: 0.5;
}
.intro-text {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}
.intro-decor-2 {
  position: absolute;
  top: 0;
  right: 1rem;
  width: 70px;
  height: auto;
}
.intro-decor-wrapper {
  background: url(../images/decor-highlight.avif) center / cover no-repeat;
}
.intro-decor-1 {
  border-radius: 999px 999px 0 0;
}
.intro-decor-img::before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  border: 1px solid var(--border-light);
  border-radius: 999px 999px 0 0;
}
/* offer */
.offer-text-column {
  background-color: var(--color-secondary-2);
}
.offer-decor-column {
  background: url(../images/bg-offer-item.avif) center / cover no-repeat;
}
.offer-img {
  position: relative;
}
.offer-img::before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  border: 1px solid var(--border-light);
  border-radius: 100%;
}
.container-offer h3,
.intro-detail {
  color: var(--color-primary);
}
/* gallery */
.container-gallery {
  position: relative;
  z-index: 0;
  background: url(../images/bg-home-gallery.avif) center / cover no-repeat;
}
.container-gallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(var(--color-primary) 50%, transparent);
}
.home-gallery-wrapper {
  height: 100%;
}
.home-gallery-item {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  object-position: center;
}
.home-gallery-item-1 {
  border-top-left-radius: 9rem;
}
.home-gallery-item-4 {
  border-bottom-right-radius: 9rem;
}
.home-gallery-btn-wrapper {
  background-color: var(--color-accent);
}
@media (max-width: 575.98px) {
  .container-hero-wrapper {
    background: url(../images/bg-hero-phone.avif) left top / cover no-repeat;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .container-hero-wrapper {
    background: url(../images/bg-hero-tablet.avif) center top / cover no-repeat;
  }
}

@media (min-width: 992px) {
  .container-hero-wrapper {
    background: url(../images/bg-hero-desktop.avif) center top / cover no-repeat;
  }
}
@media (max-width: 1199.98px) {
  .home-gallery-item {
    width: 100%;
    height: 40vh;
    object-fit: cover;
    object-position: center;
  }
}
