/* ===== Hero Section ===== */

.hero {
  position: relative;
  min-height: 100vh;
  padding-block: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, 768px);
  text-align: center;
  color: var(--color-white);
}

.hero__accent {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary-light);
}

.hero__title {
  margin: 1.2rem 0 0;
  line-height: 1.05;
  font-weight: 700;
}

.hero__subtitle {
  margin: 1.6rem auto 0;
  font-size: clamp(1.4rem, 0.191vw + 1.339rem, 1.6rem);
  line-height: 1.5;
}

.hero__button {
  margin-top: 2.4rem;
}

/* ===== End Hero Section ===== */

/* ===== Intro Section ===== */
/* ===== Gallery Section ===== */

.gallery {
  padding-top: 0;
}

.gallery__content {
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.gallery__accent {
  margin: 0;
  font-size: 1.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.gallery__title {
  margin: 1.6rem 0 0;
  line-height: 1.05;
  font-weight: 700;
  color: var(--color-font);
}

.gallery__description {
  margin: 2.4rem auto 0;
  max-width: 68ch;
  font-size: 1.6rem;
  line-height: 1.75;
  color: var(--color-light-grey);
}

.gallery__slider {
  margin-top: 5.6rem;
}

.gallery__slider .splide__track {
  overflow: hidden;
}

.gallery__slider .splide__slide {
  min-width: 0;
}

.gallery__media {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== End Gallery Section ===== */

/* ===== Reviews Section ===== */

.reviews {
  padding-top: 0;
  background: var(--color-background);
}

.reviews__content {
  text-align: center;
}

.reviews__accent {
  margin: 0;
  font-size: 1.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.reviews__title {
  margin: 1.6rem 0 0;
  color: var(--color-font);
}

.reviews__description {
  margin: 2.4rem auto 0;
  max-width: 68ch;
  font-size: 1.6rem;
  line-height: 1.75;
  color: var(--color-light-grey);
}

.reviews__slider {
  margin-top: 5.6rem;
  position: relative;
  padding-inline: 6.4rem;
}

.reviews__slider .splide__arrows {
  display: block;
}

.reviews__slider .splide__track {
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  padding: 8px 0;
}

.reviews__slider .splide__slide {
  box-sizing: border-box;
  min-width: 0;
  padding-inline: 1px;
  padding-block: 2px;
}

.reviews__card {
  height: 100%;
  padding: 4rem 3.2rem;
  border: none;
  background: var(--color-background);
  text-align: left;
  display: grid;
  row-gap: 1.2rem;
  box-shadow: inset 0 0 0 1px rgb(23 23 23 / 16%);
  transition: box-shadow 180ms ease;
}

.reviews__card:hover,
.reviews__card:focus-within {
  box-shadow: inset 0 0 0 1px rgb(23 23 23 / 24%), 0 4px 12px rgb(23 23 23 / 4%);
}

.reviews__platform {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.6rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
}

.reviews__platform--google {
  background: var(--color-secondary);
}

.reviews__platform--tripadvisor {
  background: var(--color-primary);
}

.reviews__rating {
  font-size: 2.4rem;
  letter-spacing: 0.15em;
  color: var(--color-primary);
}

.reviews__quote {
  margin: 1rem 0 0;
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--color-font);
}

.reviews__author {
  margin: 1rem 0 0;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-light-grey);
}

.reviews__slider .splide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 1;
  cursor: pointer;
  transition: filter 160ms ease;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.reviews__slider .splide__arrow:hover,
.reviews__slider .splide__arrow:focus {
  filter: brightness(0.95);
}

.reviews__slider .splide__arrow svg {
  fill: var(--color-white);
  width: 2rem;
  height: 2rem;
}

.reviews__slider .splide__arrow.splide__arrow--prev {
  left: 0;
}

.reviews__slider .splide__arrow.splide__arrow--next {
  right: 0;
}

.reviews__slider .splide__pagination {
  display: none;
}

@media (max-width: 767px) {
  .reviews__slider {
    padding-inline: 0;
  }

  .reviews__slider .splide__arrows {
    display: none;
  }
}

/* ===== End Reviews Section ===== */

/* ===== Reserve Section ===== */
/* ===== Favourites Section ===== */

.favourites {
  background: var(--color-bg-surface);
}

.favourites__content {
  text-align: center;
}

.favourites__accent {
  margin: 0;
  font-size: 1.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.favourites__title {
  margin: 1.6rem 0 0;
  color: var(--color-font);
}

.favourites__description {
  margin: 2.4rem auto 0;
  max-width: 68ch;
  font-size: 1.6rem;
  line-height: 1.75;
  color: var(--color-light-grey);
}

.favourites__button {
  margin-top: 2.8rem;
  margin-inline: auto;
  align-self: center;
}

.favourites__slider {
  margin-top: 5.6rem;
  position: relative;
  padding-inline: 6.4rem;
}

.favourites__slider .splide__track {
  overflow: hidden;
  width: 100%;
}

.favourites__slider .splide__slide {
  min-width: 0;
}

.favourites__card {
  display: grid;
  justify-items: center;
  row-gap: 0.6rem;
}

.favourites__media {
  width: min(100%, 22rem);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
}

.favourites__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.favourites__item-title {
  font-size: 3.5rem;
  margin: 0;
  margin-top: 1.8rem;
  color: var(--color-font);
}

.favourites__item-description {
  margin: 0;
  max-width: 30ch;
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--color-light-grey);
}

.favourites__slider .splide__arrows {
  display: block;
}

.favourites__slider .splide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4rem;
  height: 4rem;
  background: var(--color-primary);
  opacity: 1;
}

.favourites__slider .splide__arrow.splide__arrow--prev {
  left: 0;
}

.favourites__slider .splide__arrow.splide__arrow--next {
  right: 0;
}

.favourites__slider .splide__arrow svg {
  fill: var(--color-white);
}

.favourites__slider .splide__arrow:hover,
.favourites__slider .splide__arrow:focus-visible {
  filter: brightness(0.95);
}

.favourites__slider .splide__pagination {
  display: none;
}

.favourites__slider .splide__pagination__page {
  width: 0.9rem;
  height: 0.9rem;
  margin: 0;
  background: var(--color-primary-light);
  opacity: 1;
}

.favourites__slider .splide__pagination__page.is-active {
  transform: none;
  background: var(--color-primary);
}

/* ===== End Favourites Section ===== */

/* ===== Content Section ===== */
/* ===== FAQ Section ===== */

.faq {
  padding-top: 0;
  background: var(--color-background);
}

.faq__content {
  text-align: center;
}

.faq__accent {
  margin: 0;
  font-size: 1.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.faq__title {
  margin: 0.8rem 0 0;
  line-height: 1.05;
  font-weight: 700;
  color: var(--color-font);
}

.faq__description {
  margin: 2.4rem auto 0;
  max-width: 68ch;
  font-size: 1.6rem;
  line-height: 1.75;
  color: var(--color-light-grey);
}

.faq__button {
  margin-top: 2.8rem;
  margin-inline: auto;
}

.faq__list {
  margin-top: 5.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 72rem;
  margin-inline: auto;
}

.faq__item {
  border: 2px solid var(--color-primary);
}

.faq__item + .faq__item {
  border-top: 2px solid var(--color-primary);
}

.faq__item-title {
  margin: 0;
}

.faq__item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 2rem;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
  text-align: left;
  color: var(--color-font);
  background: var(--color-background);
  cursor: pointer;
  border: none;
  transition: background-color 160ms ease;
}

.faq__item-header:hover {
  background: rgb(23 23 23 / 4%);
}

.faq__item-header::after {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23f78632" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>') center / contain no-repeat;
  transform: rotate(0deg);
  transition: transform 160ms ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq__item-header[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.faq__item-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}

.faq__item-body {
  font-size: 1.6rem;
  line-height: 1.75;
  color: var(--color-light-grey);
  text-align: left;
  padding: 0 2rem 2rem 2rem;
  margin: 0;
}

.faq__item-body p {
  margin: 0;
}

.faq__item-content p {
  margin: 0;
}

/* ===== End FAQ Section ===== */

/* ===== Responsive Overrides ===== */

@media (min-width: 768px) {
  .gallery__slider {
    margin-top: 7.2rem;
  }

  .offers__card {
    margin-top: 6.4rem;
  }

  .reviews__slider {
    margin-top: 6.4rem;
  }

  .favourites__slider {
    margin-top: 6.4rem;
  }

  .faq__list {
    max-width: 72rem;
  }
}

/* ===== Premium section motion ===== */

body.waas-motion-ready [data-waas-reveal] {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 700ms ease, transform 700ms ease;
}

body.waas-motion-ready [data-waas-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  body.waas-motion-ready [data-waas-reveal],
  body.waas-motion-ready [data-waas-reveal].is-revealed {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== End Responsive Overrides ===== */
