/* Hero Section */

.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  /* 16:9 aspect ratio */
  min-height: 100vh;
  min-width: 177.78vh;
  /* 16:9 aspect ratio */
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  color: white;
  padding: 2rem;
}

.hero-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.logo-container-landing {
  background: url("https://demo.azuraresorts.com/wp-content/uploads/azura-logo-white-380.svg") center/contain no-repeat;
  width: 381px;
  height: 149px;
}

.hero-content h1 {
  font-size: var(--font-size-lg);
  /* margin-bottom: 1rem; */
  font-weight: 400;
  margin: 0;
}

.hero-content h2 {
  font-size: var(--font-size-lg);
  margin-bottom: 2rem;
  font-family: var(--font-secondary);
  margin: 0;
  font-weight: 200;
}

.hero-title {
  padding-top: 20px;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.scroll-down {
  display: block;
  animation: bounce 2s infinite;
  cursor: pointer;
}

.scroll-down img {
  filter: brightness(0) invert(1);
  /* Make SVG white */
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.scroll-down:hover img {
  opacity: 1;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: var(--font-size-md);
  }

  .hero-content p {
    font-size: var(--font-size-sm);
  }
}

/* Intro Section */

.intro-section.landing {
  position: relative;
  background: linear-gradient(0deg, #f7efec00 10%, #f7efec6a 20%, #f7efec 40%);
  height: 1220px;
  padding: 150px 60px 80px 60px;
}

.intro-content-container-top.landing {
  display: flex;
  height: 100%;
}

.intro-content-container-copy-block.landing {
  width: 75%;
  display: flex;
  flex-direction: column;
}

.pretitle.landing {
  margin: 0;
  font-size: 30px;
  color: #744c3e;
  font-family: "Yellowtail", cursive;
  line-height: 1;
  font-weight: 200;
}

.title.landing {
  margin: 0;
  font-size: 40px;
  border-bottom: 1px solid black;
  line-height: 1;
  font-weight: 400;
  padding-bottom: 20px;
  padding-top: 10px;
  text-transform: uppercase;
}

.subtitle.landing {
  margin: 0px;
  font-size: 22px;
  font-weight: 400;
  color: #744c3e;
  padding-top: 20px;
  margin-bottom: 20px;
  line-height: 1;
  /* text-align: center; */
}

.paragraph.landing {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: var(--color-text);
  line-height: 2;
}

.captions.landing {
  margin-top: 50px;
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
}

.paragraph-small-block.landing {
  width: 30%;
  padding-left: 30px;
  border-left: 1px solid black;
}

.intro-content-container-bottom.landing {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0;
  right: 0;
}

.intro-content-container-bottom.landing img {
  width: 1000px;
  height: auto;
}

.intro-content-decals.landing {
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: auto;
}

.azura-icon {
  position: absolute;
  width: 80px;
  height: 80px;
  bottom: 0;
  left: 0;
  background-image: url("https://demo.azuraresorts.com/wp-content/uploads/Azura-A-adultsonly-1.svg");
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
}

.intro-images-caption.landing {
  position: absolute;
  bottom: 35%;
  right: 29%;
  transform: rotate(-90deg) !important;
  width: 45%;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding-bottom: 20px;
  font-size: var(--font-size-xs);
  z-index: 5;
  border-bottom: 1px solid black;
}

.intro-images-div.landing {
  width: 100%;
  height: 500px;
  display: flex;
  margin-top: 25px;
}

.intro-images-1st {
  width: 65%;
  object-fit: cover;
  object-position: top;
  margin-right: 25px;
  overflow: visible;
  transform: translateY(19px);
  z-index: 10;
}

.intro-images-2nd {
  width: 35%;
  height: 600px;
  object-fit: cover;
  object-position: center;
  z-index: 3;
}

/* Features Section */

.features-section.landing {
  position: relative;
  width: 100%;
  background-color: #2f2f2f;
  z-index: 2;
  padding: 150px 60px 80px 60px;
  height: 600px;
}

.landing-text-container {
  display: flex;
  flex-direction: column;
}

.landing-text-container.row {
  flex-direction: row;
}

.title-block {
  width: 100%;
  margin-right: 50px;
}

.pretitle.light {
  color: #b1897c;
}

.title.light {
  color: white;
  border-bottom: 1px solid white;
  /* text-align: center; */
}

.subtitle.light {
  color: #b1897c;
}

.paragraph.light {
  color: white;
}

.paragraph.moved {
  transform: translateY(90px);
  width: 80%;
}

.feature-cards-container.landing {
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
}

.feature-card-content {
  width: 32%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.card-title {
  margin: 0px;
  font-size: 20px;
  font-weight: 400;
  color: #b1897c;
  line-height: 1;
}

.card-text {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  color: white;
  line-height: 1.4;
  margin-top: 20px;
  margin-bottom: 20px;
}

.landing-button {
  cursor: pointer;
  text-decoration: none;
  vertical-align: middle;
  line-height: 1;
  padding: var(--button-padding-default-xs);
  font-size: var(--font-size-xxs);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-xs);
  background-color: #b3897b;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  transition: background-color 0.3s;
  border: none;
}

.landing-button:hover {
  background-color: #8c6b5f;
  color: #fff;
}

.pushed {
  margin-top: 20px;
  margin-left: auto;
}

.feature-card-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

.feature-card-image.second {
  object-position: bottom;
}

/* Spa Section */

.spa-first-div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 840px;
  background: linear-gradient(180deg, #ffffff 25%, #ffffff00 50%),
    url("https://res.cloudinary.com/monkeytours/image/upload/v1756417702/Azura2025/spa/morpho-spa-2.jpg") top center / cover no-repeat;
}

.spa-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 150px;
}

.azura-a-logo {
  width: 117px;
  height: 77px;
  margin-bottom: 40px;
  transform: translateX(-15px);
}

.title.spa {
  font-size: var(--font-size-lg);
  padding-bottom: 0;
  border-bottom: none;
  color: white;
}

.title.spa.cursive {
  font-family: "Yellowtail", cursive;
  font-size: 60px;
  text-transform: none;
}

.spa-second-div {
  width: 100%;
  padding-bottom: 100px;
  background-color: #f7efec;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}

.paragraph.spa.landing {
  width: 100%;
  padding: 15px;
  text-align: center;
  background-color: #744c3e;
  color: white;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.paragraph.spaunder.landing {
  text-align: center;
  max-width: 870px;
  line-height: 1.5;
  color: #744c3e;
  margin-top: 30px;
}

.landing-button.spa {
  margin-top: 30px;
  background-color: #744c3e;
}

.landing-button.spa:hover {
  background-color: #744c3eba;
}

/* Wedding, Honeymoon & Resort Services Section */

.whs-section {
  position: relative;
  width: 100%;
  padding: 120px 60px 150px 60px;
  background: url("https://res.cloudinary.com/monkeytours/image/upload/v1756422752/Azura2025/landing/azura-palm-leaves-beige-background.jpg") center center / cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.whs-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  background-color: #dba694;
  mix-blend-mode: color;
  z-index: 1;
}

.whs-section::after {
  content: "";
  position: absolute;
  top: 500px;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: #744c3e;
  z-index: 1;
}

.wedding-honeymoon-div {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}

.wedding-honeymoon-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wedding-honeymoon-cards {
  width: 100%;
  /* height: 500px; */
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}

.wh-card-div {
  position: relative;
  width: 48%;
  height: 500px;
  background-color: #f7efec;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
}

.wh-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  border-radius: 14px 14px 0px 0px;
}

.wh-card-content {
  position: relative;
  width: 75%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 200px;
  transform: translateY(25px);
}

.wh-card {
  width: 100%;
  text-align: center;
}

.paragraph.wh-card {
  margin-top: 20px;
}

.landing-button.wh-card {
  width: 160px;
  align-self: center;
  margin-top: 60px;
}

/* Resort Services div */

.resort-services-div {
  width: 100%;
  /* height: 300px; */
  margin-top: 160px;
  display: flex;
}

.rs-text-container {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rs-features {
  width: 55%;
  margin-left: auto;
  display: flex;
}

.rs-column {
  width: 48%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.column-gap {
  margin-right: 30px;
}

.rs-captions {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  margin-top: 20px;
  border-left: 1px solid #744c3e;
}

.rs-title {
  margin: 0px;
  font-size: 20px;
  font-weight: 600;
  color: #744c3e;
  line-height: 1;
}

.rs-text {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  margin-top: 10px;
}

/* Azura Activities, Tours and Rentals Section */

.atr-section {
  position: relative;
  width: 100%;
  height: 830px;
  padding: 100px 60px 80px 0px;
  display: flex;
  align-items: center;
  background-image: url("https://res.cloudinary.com/monkeytours/image/upload/v1755798357/Azura2025/Activities/blur-images/ChorasPaddleboard-Blur.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: opacity 0.3s ease-in-out;
}

/* Smooth transition states for activity carousel */
.atr-section.transitioning {
  opacity: 0.7;
}

.atr-feature-image {
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.atr-feature-text {
  transition: opacity 0.3s ease-in-out;
}

/* Arrow button hover states for better UX */
.landing-button.arrow-left,
.landing-button.arrow-right {
  cursor: pointer;
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

.landing-button.arrow-left:hover,
.landing-button.arrow-right:hover {
  transform: scale(1.05);
  opacity: 0.8;
}

/* Loading Spinner for Activities Carousel */
.atr-loading-spinner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  z-index: 10;
  border-radius: inherit;
}

.atr-loading-spinner.visible {
  visibility: visible;
  opacity: 1;
}

.atr-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: atr-spin 1s ease-in-out infinite;
}

@keyframes atr-spin {
  to {
    transform: rotate(360deg);
  }
}

.pretitle.green {
  color: #89b17c;
}

.subtitle.green {
  color: #89b17c;
}

.atr-content {
  width: 100%;
  display: flex;
  align-items: center;
}

.atr-text-container {
  position: absolute;
  width: 70%;
  padding-left: 60px;
  padding-right: 400px;
  padding-top: 90px;
  padding-bottom: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #000000a2;
  backdrop-filter: blur(10px);
  /* mix-blend-mode: multiply; */
}

.atr-info-div-plus {
  width: 100%;
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.paragraph-icon {
  display: flex;
  align-items: center;
  color: white;
  font-size: 14px;
  font-weight: 600;
}

.paragraph-icon::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  background-image: url(https://demo.azuraresorts.com/wp-content/uploads/question-green.svg);
  background-color: transparent;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

a.landing-button.green {
  background-color: #89b17c;
}

a.landing-button.green:hover {
  background-color: #89b17ca0;
}

.atr-feature {
  position: relative;
  margin-left: auto;
  transform: translateY(-20px) !important;
}

.atr-img-content-div {
  position: relative;
  width: 700px;
  padding: 30px;
  display: flex;
  margin-left: auto;
  background-color: white;
  align-items: center;
  z-index: 2;
  border-radius: 30px;
}

.atr-feature-image {
  width: 300px;
  height: 350px;
  object-fit: cover;
  object-position: center;
  margin-right: 30px;
  border-radius: 10px;
}

.atr-feature-text {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.subtitle.atr-text.landing {
  font-size: 26px;
  padding-top: 0;
  margin-top: 0;
  margin-bottom: 15px;
  color: #2f2f2f;
  font-weight: 600;
}

.paragraph.atr-text.landing {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  margin-top: 10px;
}

.paragraph.atr-text.line.landing {
  padding-bottom: 40px;
  border-bottom: 1px solid #2f2f2f;
}

.paragraph.atr-text.bold.landing {
  font-weight: 600;
}

.atr-buttons {
  position: absolute;
  bottom: -60px;
  /* left: 50%;
  transform: translateX(-50%); */
  right: 30px;
  width: 100px;
  /* width: 250px; Disabled when Read More Button is Not Present */
  display: flex;
  justify-content: space-between;
}

.landing-button.white {
  color: #2f2f2f;
  background-color: white;
}

.landing-button.white:hover {
  background-color: #2f2f2f;
  color: white;
}

.landing-button.white.arrow-right {
  background-image: url("https://demo.azuraresorts.com/wp-content/uploads/chevron-right.svg");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.landing-button.white.arrow-right:hover {
  background-color: #2f2f2f;
  background-image: url("https://demo.azuraresorts.com/wp-content/uploads/chevron-right-white.svg");
}

.landing-button.white.arrow-left {
  background-image: url("https://demo.azuraresorts.com/wp-content/uploads/chevron-left.svg");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.landing-button.white.arrow-left:hover {
  background-color: #2f2f2f;
  background-image: url("https://demo.azuraresorts.com/wp-content/uploads/chevron-left-white.svg");
}

.feature-cards-container.small-screen.landing {
  display: none;
}

/* Reveal Animations: base utilities for landing page
 * Using data attributes [data-reveal] and [data-reveal-stagger] with accessibility-focused defaults.
 * Fade-only variant intentionally does not set transform to preserve existing transforms on elements.
 */
:root {
  --reveal-distance: 14px;
  /* subtle, visually consistent */
  --reveal-duration: 600ms;
  --reveal-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal],
[data-reveal-stagger]>* {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: var(--reveal-duration);
  transition-timing-function: var(--reveal-ease);
  will-change: opacity, transform;
  backface-visibility: hidden;
}

/* Directional variants with subtle offsets */
[data-reveal="left"] {
  transform: translate3d(calc(-1 * var(--reveal-distance)), 0, 0);
}

[data-reveal="right"] {
  transform: translate3d(var(--reveal-distance), 0, 0);
}

[data-reveal="up"] {
  transform: translate3d(0, var(--reveal-distance), 0);
}

[data-reveal="down"] {
  transform: translate3d(0, calc(-1 * var(--reveal-distance)), 0);
}

[data-reveal="scale"] {
  transform: scale(0.98);
}

/* NOTE: [data-reveal="fade"] intentionally defines no transform */

/* Visible state */
[data-reveal].is-visible {
  opacity: 1;
}

[data-reveal="left"].is-visible,
[data-reveal="right"].is-visible,
[data-reveal="up"].is-visible,
[data-reveal="down"].is-visible,
[data-reveal="scale"].is-visible {
  transform: none;
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {

  [data-reveal],
  [data-reveal-stagger],
  [data-reveal].is-visible,
  [data-reveal-stagger].is-visible,
  [data-reveal-stagger]>* {
    opacity: 1 !important;
    transform: none;
    transition: none !important;
  }
}

/* Performance: disable reveal animations on tablet/mobile */
@media (max-width: 1024px) {

  [data-reveal],
  [data-reveal-stagger],
  [data-reveal].is-visible,
  [data-reveal-stagger].is-visible,
  [data-reveal-stagger]>* {
    opacity: 1 !important;
    transform: none;
    transition: none !important;
  }
}

.displaynone {
  display: none;
}

/*! Media Queries 1650px to 320px */

/*? 1650px */

@media screen and (max-width: 1650px) {
  .intro-content-container-copy-block.landing {
    width: 90%;
  }

  .intro-images-caption.landing {
    right: 0;
    left: 0;
  }

  /* Display None for testing */

  /* .features-section.landing {
    display: none;
  } */
  /* .spa-section.landing {
    display: none;
  } */
  /* .whs-section.landing {
    display: none;
  } */
  /* .atr-section.landing {
    display: none;
  } */
}

/*? 1350px */

@media screen and (max-width: 1350px) {
  .intro-images-caption.landing {
    transform: rotate(0deg) !important;
    bottom: -140px;
    z-index: -1;
    width: 60%;
  }

  .intro-content-container-copy-block.landing {
    width: 100%;
  }

  .intro-images-2nd {
    position: absolute;
    right: 0;
    /* box-shadow: -25px 0px 0px 0px white !important;
    -moz-box-shadow: -25px 0px 0px 0px white !important; */
    height: 500px;
    box-sizing: border-box;
    border-left: 25px solid white;
  }

  /** Activities Section  */

  .atr-section {
    padding: 0px;
    height: unset;
  }

  .atr-content {
    flex-direction: column;
  }

  .atr-text-container {
    width: 100%;
    position: relative;
    top: 0;
    padding-left: 60px;
    padding-right: 60px;
    padding-bottom: 120px;
    margin-top: 100px;
  }

  .atr-feature {
    transform: translateY(-70px) !important;
    margin-left: unset;
    display: flex;
    align-items: end;
    background-color: #ffffff29;
    border-radius: 40px;
    padding: 10px;
    padding-right: 15px;
    backdrop-filter: blur(10px);
  }

  .atr-img-content-div {
    margin-right: 20px;
  }

  .atr-buttons {
    position: relative;
    bottom: 0;
    right: 0;
    flex-wrap: wrap;
    width: 140px;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
}

/*? 1200px */

@media screen and (max-width: 1200px) {
  /** Intro Section */

  .intro-section.landing {
    height: 1300px;
  }

  .intro-content-decals.landing {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: row-reverse;
    z-index: 0;
    margin-top: auto;
    height: 100px;
    width: 90%;
    transform: translateY(172px) !important;
  }

  .azura-icon {
    position: unset;
    width: 50px;
    height: 50px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    margin-right: 20px;
  }

  .intro-images-caption.landing {
    position: unset;
    padding-bottom: 10px;
    font-size: 12px;
  }

  .intro-content-container-bottom.landing {
    width: 100%;
  }

  .intro-content-container-bottom.landing img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
  }

  /** Features Section  */

  .landing-text-container.row {
    flex-direction: column;
  }

  .paragraph.moved {
    width: 100%;
    transform: unset;
  }

  .feature-cards-container.landing {
    margin-top: 30px;
  }

  /** Spa Section */

  .spa-first-div {
    background: url(https://res.cloudinary.com/monkeytours/image/upload/v1756417702/Azura2025/spa/morpho-spa-2.jpg) top center / cover no-repeat;
    height: 600px;
    padding-bottom: 30px;
  }

  .spa-content {
    margin-top: 200px;
  }

  /** Wedding Honeymoon Section */

  .whs-section::before {
    height: 1200px;
  }

  .whs-section::after {
    top: 1200px;
  }

  .wedding-honeymoon-cards {
    flex-direction: column;
  }

  .wh-card-div {
    width: 100%;
    margin-bottom: 80px;
  }

  .resort-services-div {
    margin-top: 120px;
    flex-direction: column;
  }

  .rs-text-container {
    width: 100%;
  }

  .rs-features {
    width: 100%;
    margin-left: unset;
  }
}

/*? 1100px */

@media screen and (max-width: 1100px) {
  .features-section.landing {
    height: unset;
  }

  /* Feature Cards Display None */

  .feature-cards-container.landing {
    display: none;
  }

  /* Feature Cards Small Screen */

  .feature-cards-container.small-screen.landing {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
  }

  .feature-card-content {
    flex-direction: row;
    width: 100%;
    margin-top: 20px;
    align-items: center;
  }

  .feature-card-content-box {
    width: 60%;
    margin-right: 20px;
  }
}

/*? 1000px */

@media screen and (max-width: 1000px) {
  .intro-section.landing {
    height: 1380px;
  }

  .paragraph.spaunder.landing {
    width: 90%;
  }

  .captions.landing {
    flex-direction: column;
    margin-top: 25px;
  }

  .paragraph-small-block.landing {
    width: 100%;
    margin-top: 25px;
    /* padding-left: 0;
    border-left: none; */
  }
}

/*? 900px */

@media screen and (max-width: 900px) {
  .feature-card-content {
    flex-direction: column-reverse;
    margin-top: 40px;
  }

  .feature-card-content-box {
    margin-top: 24px;
    width: 100%;
    margin-right: unset;
    display: flex;
    flex-direction: column;
  }

  .pushed {
    margin-top: 0;
  }

  /** Activities Section */

  .atr-feature {
    width: 100%;
    border-radius: 0px;
    padding: 10px 10px 10px 0px;
  }

  .atr-img-content-div {
    width: 80%;
    border-radius: 0px 30px 30px 0px;
    flex-direction: column;
    justify-content: center;
    height: 680px;
  }

  .atr-feature-image {
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
  }

  .paragraph.atr-text.line.landing {
    padding-bottom: 20px;
  }

  .atr-buttons {
    width: 20%;
  }
}

/*? 768px */

@media screen and (max-width: 768px) {
  .intro-section.landing {
    height: 1480px;
  }
}

/*? 715px */

@media screen and (max-width: 715px) {
  .intro-section.landing {
    height: 1540px;
  }

  .intro-content-decals.landing {
    width: 100%;
    margin-right: unset;
    justify-content: center;
  }

  .paragraph-small-block.landing {
    margin-top: 15px;
  }

  .intro-images-caption.landing {
    width: 80%;
  }

  .intro-images-1st {
    width: 100%;
  }

  .intro-images-2nd {
    display: none;
  }

  .captions.landing {
    margin-top: 10px;
  }
}

/*? 600px */

@media screen and (max-width: 600px) {
  .intro-section.landing {
    height: 1640px;
  }

  .intro-content-decals.landing {
    background-color: white;
    z-index: 1;
    position: absolute;
    bottom: 120px;
    left: 0;
    right: 0;
    width: 100%;
    height: 100px;
    padding: 20px;
  }

  .intro-images-1st {
    z-index: 3;
  }
}

/*? 570px */

@media screen and (max-width: 570px) {
  .intro-section.landing {
    height: 1380px;
    padding: 60px 30px 110px 30px;
  }

  .features-section.landing {
    padding: 80px 30px 80px 30px;
  }

  .atr-text-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .title.landing {
    font-size: 36px;
  }

  .paragraph.landing {
    font-size: 14px;
  }

  /** Spa Section */

  .whs-section.landing {
    padding: 80px 30px 80px 30px;
  }

  .spa-first-div {
    background: url(https://res.cloudinary.com/monkeytours/image/upload/v1756942952/Azura2025/landing/morpho-spa-2-portrait.jpg) center center / cover no-repeat;
  }

  .rs-features {
    flex-direction: column;
  }

  .rs-column {
    width: 100%;
  }

  .column-gap {
    margin-right: unset;
  }

  /* Activities Section */

  .atr-feature {
    flex-direction: column;
    padding: 20px 0px 20px 0px;
  }

  .atr-img-content-div {
    width: 100%;
    border-radius: 0px;
    height: 700px;
  }

  .atr-buttons {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 0px;
  }
}

/*? 490px */

@media screen and (max-width: 490px) {
  .intro-section.landing {
    height: 1420px;
  }

  .pretitle.landing {
    text-align: center;
    font-size: 26px;
  }

  .title.landing {
    text-align: center;
  }

  .title.light.landing {
    text-align: center;
  }

  .subtitle.landing {
    text-align: center;
  }

  /** Wedding, Honeymoon & Resort Services Section  */

  .wh-card-content {
    margin-top: 120px;
  }

  .landing-button.wh-card {
    margin-top: 10px;
  }
}

/*? 450px */

@media screen and (max-width: 450px) {
  /** Hero Section */

  .logo-container-landing {
    width: 350px;
    height: 120px;
  }

  .hero-title {
    margin-top: 40px;
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 26px;
  }

  /** Introduction Section  */

  .intro-section.landing {
    height: 1500px;
  }

  /** Activities Section  */

  .atr-info-div-plus {
    flex-direction: column;
  }

  .paragraph-icon {
    margin-bottom: 30px;
  }
}

/*? 395px */

@media screen and (max-width: 395px) {
  .intro-section.landing {
    height: 1570px;
  }

  .paragraph-small-block.landing {
    padding-left: 20px;
  }

  /** Spa Section  */

  .spa-content {
    margin-top: 140px;
  }

  .azura-a-logo {
    margin-bottom: 20px;
  }

  .title.spa.cursive {
    font-size: 45px;
  }

  .title.landing {
    font-size: 25px;
  }

  .paragraph.spa.landing {
    line-height: 1.2;
  }
}

/*? 350px */

@media screen and (max-width: 350px) {
  .intro-section.landing {
    height: 1650px;
  }
}

/*? 325px */

@media screen and (max-width: 325px) {
  .intro-section.landing {
    height: 1700px;
  }
}

/*? 320px */

@media screen and (max-width: 320px) {
  /** Hero Section */

  .logo-container-landing {
    width: 320px;
    height: 100px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  /** Introduction Section  */

  .intro-section.landing {
    height: 1710px;
  }

  .landing-button.pushed {
    margin-top: 18px;
    margin-left: unset;
  }
}