.celeste_hero__slider {
  width: 100%;
  max-height: 40rem;
}

.celeste_hero__slide {
  padding-top: 6rem;
  min-height: 34.375rem;
  color: white;
  background-size: cover;
  background-position: center;
  position: relative;
}

.celeste_hero__slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.celeste_hero__slide {
  background-size: cover;
  background-position: center;
}

.celeste_hero__content {
  display: grid;
  grid-template-columns: auto minmax(0, 270px) 360px;
  align-items: start;
  width: 100%;
  padding: 0 3rem;
  gap: 4.5rem;
}

.celeste_hero__title {
  max-width: 770px;
  font-size: 5rem;
  font-weight: var(--ds-font-medium);
  color: white;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  padding-left: 10%;
}

.celeste_hero__title-word {
  display: block;
  position: relative;
}

.celeste_hero__title-word.first::after {
  content: "";
  display: block;
  width: 225px;
  height: 2px;
  background: url(../../assets/images/dot.svg) no-repeat;
  background-size: cover;
  position: absolute;
  left: -9%;
}

.celeste_hero__title-word.second {
  text-align: center;
  margin-left: 10%;
}

.celeste_hero__title-word.second::after {
  content: "";
  display: block;
  width: 225px;
  height: 2px;
  background: url(../../assets/images/line.svg) no-repeat;
  background-size: cover;
  position: absolute;
  right: 7%;
}

.celeste_hero__title-word.third::after {
  content: "";
  display: block;
  width: 225px;
  height: 2px;
  background: url(../../assets/images/dash.svg) no-repeat;
  background-size: cover;
  position: absolute;
  left: 22%;
}

.celeste_hero__picture_container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 290px;
  height: 100%;
  z-index: 1;
}

.celeste_hero__picture {
  filter: drop-shadow(0 5mm 6mm rgba(0, 0, 0, 0.5));
}

.celeste_hero__content.no-image .celeste_hero__picture_container {
  visibility: hidden;
}

.celeste_hero__content.no-image .celeste_hero__title {
  grid-column: span 2;
}

.celeste_hero__content_container {
  max-width: 360px;
  grid-column: 3;
  z-index: 2;
}

.celeste_hero__description {
  color: white;
  font-size: var(--ds-text-base);
  margin-bottom: 0.75rem;
}

.celeste_hero__price_tax_container {
  display: flex;
  flex-direction: column;
  margin: -5px 0 0 7px;
}

.celeste_hero__price {
  display: flex;
  align-items: center;
  font-size: 2.8rem;
  font-weight: bold;
  color: #fff;
}

.celeste_hero__price_duration {
  font-size: 0.85rem;
  height: 1rem;
  font-weight: 300;
  color: #fff !important;
}

.celeste_hero__price_tax {
  font-size: 0.85rem;
  font-weight: 200;
  margin-left: 5px;
  color: #fff !important;
}

.celeste_hero__button {
  margin-top: 1.5rem;
}

/* Style des indicateurs */
.swiper-pagination {
  bottom: 30px !important;
  left: 0 !important;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 3.25rem;
}

.swiper-pagination-bullet {
  width: 13px !important;
  height: 13px !important;
  margin: 0 !important;
  background-color: #848fb6 !important;
  border-radius: 50% !important;
  opacity: 1 !important;
  transition: all 0.3s ease-in-out;
}

.swiper-pagination-bullet-active {
  width: 32px !important;
  height: 14px !important;
  border-radius: 12px !important;
  opacity: 1 !important;
}

/* Bubbles */
.celeste_hero__bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.bubble {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  transition: transform 1s ease-in-out, opacity 0.5s ease-in-out;
}

.bubble-1 {
  top: -25%;
  left: 5%;
  background-image: url(../../assets/images/textures/texture_2.svg);
}

.bubble-2 {
  top: 50%;
  right: 10%;
  background-image: url(../../assets/images/textures/texture_1.svg);
}

/* Responsive */
@media (max-width: 1280px) {
  .celeste_hero__content {
    padding-left: 0;
  }
  .celeste_hero__title {
    font-size: 4.5rem;
    padding-left: 0;
  }
  .celeste_hero__title-word.second {
    margin-left: 0;
    text-align: left;
  }
  .celeste_hero__title-word.first::after,
  .celeste_hero__title-word.third::after,
  .celeste_hero__title-word.second::after {
    left: 0;
  }
  .celeste_hero__slide {
    padding-left: 3.25rem;
  }
}

@media (max-width: 1024px) {
  .celeste_hero__content {
    grid-template-columns: 1fr;
  }
  .celeste_hero__picture_container {
    display: none;
  }
}

@media (max-width: 980px) {
  .celeste_hero__content {
    display: flex;
    flex-direction: column;
  }
  .celeste_hero__slide {
    padding-top: 50px;
  }
  .celeste_hero__slider {
    height: 80vh;
  }
  .celeste_hero__title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
}

@media (max-width: 768px) {
  .celeste_hero__slider {
    height: 75vh;
  }
  .swiper-pagination {
    padding: 0 1.75rem;
  }
  .celeste_hero__slide {
    padding-left: 1.75rem;
  }
}
