/* ACTIVITIES 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;
  padding: 600px 60px 300px 60px;
  background: url("https://res.cloudinary.com/monkeytours/image/upload/v1755795518/Azura2025/Activities/ATVJungleTour.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 {
  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;
  margin: 0;
  width: 800px;
  min-width: 300px;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: white;
  line-height: 2;
  margin-top: 60px;
}

/*? 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: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

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

/*? CTA Section */

.cta-section {
  padding: 30px 60px 80px 60px;
}

.cta-div {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.cta-title {
  font-size: 40px;
  color: #496947;
  font-weight: 400;
  text-transform: uppercase;
  padding-bottom: 20px;
  margin-top: 0px;
  margin-bottom: 20px;
  border-bottom: 1px solid #496947;
  text-align: center;
}

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

.landing-button.cta-button {
  margin-top: 40px;
}

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


@media (max-width: 900px) {

  /*? Hero Section */

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


  .hero-paragraph {
    width: auto;
  }

  /*? 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: 300px 30px 50px 30px;
  }

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

  /*? Activities Card  */

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

  /*? CTA Section */

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

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

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

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

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