/*! ACTIVITIES / RENTALS / TOURS - DETAILS MODULE */

/*? Hero Section */

.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-items: center;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  min-height: 780px;
  background: url("https://res.cloudinary.com/monkeytours/image/upload/v1755795524/Azura2025/Activities/Fishing.jpg") center bottom 20% / cover no-repeat;
}

.hero-section.activities {
  background: url("https://res.cloudinary.com/monkeytours/image/upload/v1755795521/Azura2025/Activities/ChorasKayak.jpg") center bottom 20% / cover no-repeat;
}

.hero-section.daytours {
  background: url("https://res.cloudinary.com/monkeytours/image/upload/v1755795519/Azura2025/Activities/MonteVerde.jpg") center bottom 20% / cover no-repeat;
}

.hero-section::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #2f2f2f2b 0%, #2f2f2f 70%);
  mix-blend-mode: multiply;
}

.hero-content {
  margin-top: 200px;
  position: relative;
  z-index: 1;
}

.hero-pretitle {
  font-size: 34px;
  color: #89B17C;
  text-align: center;
  font-family: var(--font-secondary);
  margin: 0;
  padding: 0;
}

.hero-title {
  font-size: 48px;
  color: white;
  font-weight: 400;
  text-transform: uppercase;
  padding-bottom: 20px;
  margin: 0;
  border-bottom: 1px solid #fff;
  text-align: center;
}

.hero-subtitle {
  margin: 0px;
  font-size: 26px;
  font-weight: 400;
  color: #89B17C;
  padding-top: 20px;
  text-align: center;
}

.monkey-tours-logo {
  position: relative;
  z-index: 3;
  width: 180px;
  height: 92px;
  background-image: url("https://dev.azuraresorts.com/wp-content/uploads/MonkeyToursLogo.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 60px;
}

.hero-paragraph {
  position: relative;
  width: 800px;
  min-width: 300px;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: white;
  line-height: 2;
  margin: 60px 0px 60px 0px;
}

/* Overview Button */

.rm-d-button {
  z-index: 3;
  cursor: pointer;
  text-decoration: none;
  vertical-align: middle;
  line-height: 1;
  padding: var(--button-padding-default-xs-fix);
  font-size: var(--font-size-xxs);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-xs);
  background-color: #ffffff;
  color: #2f2f2f;
  border-radius: 50px;
  text-align: center;
  transition: background-color 0.3s;
  border: none;
}

.rm-d-button:hover {
  background-color: #744c3e;
  color: #fff;
}

.rm-d-button.no-border {
  color: white;
  border: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  padding: 0;
}

.rm-d-button.no-border.overview::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  background-image: url("https://demo.azuraresorts.com/wp-content/uploads/chevron-thin-white.svg");
  background-color: transparent;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.rm-d-button.no-border:hover {
  opacity: 0.7;
}

/* Chevron Down Click Down */

.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;
}

.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);
  }
}

/*? Activities Cards */

.feature-cards-container {
  padding: 90px 60px 80px 60px;
}

.feature-cards-container {
  position: relative;
  z-index: 3;
  margin-top: -280px;
  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: 700;
  color: #89B17C;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.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: #2F2F2F;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  transition: background-color 0.3s;
  border: none;
}

.landing-button:hover {
  background-color: #89B17C;
  color: #fff;
}

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

.feature-card-image {
  width: 40%;
  height: 500px;
  object-fit: cover;
  border-radius: 18px;
}

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

/*? CTA Section */

.cta-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 80px 60px 80px 60px;
}

.cta-div {
  width: 40%;
  display: flex;
  align-items: start;
  flex-direction: column;
}

.cta-title {
  font-size: 40px;
  color: #496947;
  /* font-weight: 400; */
  line-height: 1;
  text-transform: uppercase;
  margin-top: 0px;
  margin-bottom: 20px;
}

.cta-paragraph {
  position: relative;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: #2F2F2F;
  line-height: 2;
}

.cta-buttons-div {
  margin-top: 30px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-items: center;
}

.black {
  filter: invert(100%);
}

.black:hover {
  opacity: 0.4 !important;
}

.landing-button.cta-button {
  margin-left: auto;
}

/** rda (Rentals - Day Tours - Activities) Dynamic Template Styling */

.rda-module-content-top {
  position: relative;
  padding: 0px 60px 0px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 740px;
  background: linear-gradient(40deg, #2f2f2f 60%, #2f2f2f8a 80%, #2f2f2f00 95%),
    url("https://res.cloudinary.com/monkeytours/image/upload/v1755798357/Azura2025/Activities/blur-images/ATVJungleTour-Blur.jpg") right top / contain no-repeat;
}

.rda-descriptive-content {
  display: flex;
  align-items: center;
  margin-right: auto;
  width: 100%;
  height: 100%;
}

.rda-image-container {
  margin-right: 80px;
  width: 45%;
  height: 100%;
  background-image: url("https://res.cloudinary.com/monkeytours/image/upload/f_auto,q_auto:eco,dpr_auto,c_limit,w_800/v1755795518/Azura2025/Activities/ATVJungleTour.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.rda-copy-container {
  width: 770px;
}

.rda-title-container {
  width: 100%;
  display: flex;
  align-items: center;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 1);
  margin-right: 40px;
}

/* .rda-pre-title {
  margin: 0;
  font-size: 24px;
  font-family: "Yellowtail", cursive;
  font-weight: 400;
  font-style: normal;
  color: #b1897c;
} */

.rda-title {
  margin: 0;
  font-size: 36px;
  /* font-weight: 400; */
  font-style: normal;
  color: #ffffff;
  text-transform: uppercase;
}

.rda-subtitle {
  margin-left: auto;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  color: #89B17C;
  border: 1px solid #89B17C;
  padding: 6px 12px;
  border-radius: 30px;
  text-align: center;
}

.rda-paragraph {
  margin: 0;
}

.rda-paragraph p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  line-height: 1.8;
}

.rda-paragraph p+p {
  margin-top: 1em;
}

/* rda Details  */

.rda-details {
  margin-top: 80px;
  margin-bottom: 80px;
  display: flex;
  gap: 50px
}

.rda-detail-title {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  font-style: normal;
  color: #ffffff;
  line-height: 1.8;
  text-transform: uppercase;
}

.rda-detail-text {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  line-height: 2;
}

/* rda Icons */

.rda-detail-title {
  display: flex;
  align-items: center;
}

.rda-detail-title::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  background-color: transparent;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.rda-detail-title::before {
  background-image: url("https://dev.azuraresorts.com/wp-content/uploads/quetion.svg");
}

.rda-detail-title.clock::before {
  background-image: url("https://dev.azuraresorts.com/wp-content/uploads/clock.svg");
}

/* rda button */

.landing-button.rda-button {
  background-color: #89B17C;
}

.landing-button.rda-button:hover {
  background-color: #536b4b;
}

/** Media Queries For rda (Rentals - Day Tours - Activities) Dynamic Component Template Styling  */

/*! 900px to ? */

@media (max-width: 900px) {

  .rda-module-content-top {
    height: auto;
    background: #2F2F2F;
  }

  .rda-descriptive-content {
    flex-direction: column;
  }

  .rda-module-content-top {
    padding: 0;
  }

  .rda-image-container {
    width: 100%;
    height: 550px;
    margin: 0;
  }

  .rda-copy-container {
    width: auto;
    padding: 90px 60px 80px 60px;
  }

  .rda-details {
    flex-wrap: wrap;
  }

  .rda-details {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .rda-details {
    gap: 26px;
  }
}

@media (max-width: 600px) {
  .rda-copy-container {
    padding: 50px 30px 50px 30px;
  }

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

@media (max-width: 550px) {
  .rda-details {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .rda-details {
    gap: 20px;
  }
}

@media (max-width: 400px) {
  .rda-details {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .rda-details {
    gap: 14px;
  }

  .rda-title {
    font-size: 30px;
  }
}

/*! Media Queries - 1000px to ? */

@media (max-width: 1000px) {

  .cta-section {
    flex-direction: column;
  }

  .feature-card-image {
    width: 100%;
    height: 400px;
  }

  .cta-div {
    width: 100%;
  }

}

@media (max-width: 900px) {

  /*? Hero Section */

  .hero-section {
    padding: 100px 60px 120px 60px;
  }


  .hero-paragraph {
    width: auto;
    margin: 28px 0px;
  }

  /*? Activities Cards */

  .feature-cards-container {
    flex-direction: column;
    margin-top: 0px;
    gap: 30px;
  }

  .feature-card-content {
    width: 100%;
  }

  .card-text {
    color: black;
  }
}

@media (max-width: 600px) {

  /*? Hero Section  */

  .hero-section {
    padding: 0px 30px 80px 30px;
  }

  .hero-paragraph {
    margin: 24px 0;
    font-size: 14px;
  }

  /*? Activities Card  */

  .feature-cards-container {
    padding: 50px 30px 50px 30px;
  }

  /*? CTA Section */

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

  .cta-section {
    padding: 50px 30px 50px 30px;
  }
}

@media (max-width: 400px) {
  .hero-section {
    padding-bottom: 300px;
  }

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

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

  .cta-title {
    font-size: 30px;
  }

  .cta-buttons-div {
    gap: 20px;
    flex-direction: column-reverse;
  }

  .landing-button.cta-button {
    margin: 0;
  }
}