/* Hiking & Biking Section */
.hiking-biking-section {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

/* Swiper container */
.hiking-biking-section .swiper {
  width: 100%;
  height: 500px; /* default height */
}

/* Swiper slides */
.hiking-biking-section .swiper-slide {
  background-size: cover;        /* cover entire slide */
  background-position: center;   /* center the image */
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
}

/* Optional overlay for better text readability */
.hiking-biking-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2); /* subtle dark overlay */
  pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .hiking-biking-section .swiper {
    height: 450px;
  }
}

@media (max-width: 992px) {
  .hiking-biking-section .swiper {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .hiking-biking-section .swiper {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .hiking-biking-section .swiper {
    height: 300px;
  }
}



/* ===== Section Styling ===== */
.indoor-activities-section {
  width: 100%;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
}

.activities-container {
  max-width: 1200px;
  text-align: center;
}

.activities-title {
  font-family: 'Marcellus', sans-serif;
  font-style: normal;
  font-weight: 400;
  color: rgb(2, 81, 87);
  font-size: 40px;
  line-height: 52px;
  margin-bottom: 40px;
}

.activities-text {
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-weight: 400;
  color: rgb(0, 0, 0);
  font-size: 18px;
  line-height: 31px;
  text-align: center;
  max-width: 950px;
  margin: 0 auto;
}

/* Hide extra text initially */
#moreText {
  display: none;
}

/* ===== Read More Button (Styled Like .learn-btn) ===== */
.learn-btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  line-height: 18px;
  font-weight: 400;
  color: rgb(2, 81, 87);
  border: 2px solid rgb(2, 81, 87);
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  background: transparent;
  margin-top: 30px;
  cursor: pointer;
}

.learn-btn:hover {
  background: rgb(2, 81, 87);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(2, 81, 87, 0.3);
}
/* Extra Paragraph Spacing Inside Hidden Text */
.extra-text {
  margin-top: 25px;
}


/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .activities-title {
    font-size: 34px;
    line-height: 46px;
  }

  .activities-text {
    font-size: 17px;
    line-height: 29px;
  }
}

@media (max-width: 768px) {
  .activities-title {
    font-size: 28px;
    line-height: 40px;
  }

  .activities-text {
    text-align: justify;
    font-size: 16px;
    line-height: 28px;
  }

  .learn-btn {
    font-size: 16px;
    padding: 10px 25px;
  }
}

@media (max-width: 480px) {
  .activities-title {
    font-size: 24px;
    line-height: 36px;
  }

  .activities-text {
    font-size: 15px;
    line-height: 26px;
  }

  .learn-btn {
    font-size: 15px;
    padding: 9px 22px;
  }
}


@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400&family=Marcellus&display=swap');

.safety-section {
  padding: 80px 20px;
  text-align: center;
  background: #fff;
}

.safety-title {
  font-family: 'Marcellus', sans-serif;
  font-weight: 400;
  font-size: 44px;
  line-height: 44px;
  color: rgb(2, 81, 87);
  margin-bottom: 10px;
}

.testimonial-carousel {
  max-width: 1200px;
  margin: 0 auto;
}

.safety-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 20px;
}

.safety-number {
  font-family: 'Marcellus', sans-serif;
  font-weight: 400;
  font-size: 60px;
  line-height: 110px;
  color: rgb(2, 81, 87);
  margin: 0;
}

.safety-divider {
  width: 70px;
  height: 3px;
  background-color: #dba600;
  margin: 15px 0 25px;
}

.safety-text {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 31px;
  color: rgb(0, 0, 0);
  max-width: 600px;
}

.owl-dots {
  margin-top: 30px;
}

.owl-dot span {
  width: 12px;
  height: 12px;
  background: rgb(2, 81, 87);
  opacity: 0.4;
}

.owl-dot.active span {
  opacity: 1;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .safety-number {
    font-size: 90px;
    line-height: 90px;
  }

  .safety-title {
    font-size: 38px;
    line-height: 40px;
  }

  .safety-text {
    font-size: 17px;
    line-height: 28px;
  }
}

@media (max-width: 768px) {
  .safety-number {
    font-size: 80px;
    line-height: 80px;
  }

  .safety-title {
    font-size: 32px;
    line-height: 36px;
  }

  .safety-text {
    font-size: 16px;
    line-height: 26px;
  }
}



/* ===== Biking Section ===== */
.biking-section {
  padding: 80px 10%;
  background: #fff;
  margin-top: -70px;
}

.biking-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.biking-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.biking-image img {
  width: 100%;
  height: auto;
}

.biking-text {
  flex: 1;
  font-family: 'Jost', sans-serif;
  max-width: 600px;
}

.biking-text h2 {
  font-family: 'Marcellus', sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 40px;
  color: rgb(2, 81, 87);
  margin-bottom: 20px;
}

.biking-text p {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 31px;
  color: rgb(0, 0, 0);
  margin-bottom: 15px;
}

.biking-text .more-text {
  display: none;
}

/* Button */
.learn-btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  line-height: 18px;
  font-weight: 400;
  color: rgb(2, 81, 87);
  border: 2px solid rgb(2, 81, 87);
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.learn-btn:hover {
  background: rgb(2, 81, 87);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(2, 81, 87, 0.3);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .biking-section {
    padding: 60px 6%;
  }

  .biking-text h2 {
    font-size: 32px;
    line-height: 38px;
  }

  .biking-text p {
    font-size: 17px;
    line-height: 28px;
  }
}

@media (max-width: 768px) {
  .biking-item {
    flex-direction: column;
    text-align: center;
  }

  .biking-image,
  .biking-text {
    max-width: 100%;
  }

  .biking-text h2 {
    font-size: 28px;
    line-height: 34px;
    margin-top: 20px;
  }

  .biking-text p {
    font-size: 16px;
    line-height: 26px;
  }

  .learn-btn {
    margin: 10px auto 0 auto;
    display: block;
  }
}

@media (max-width: 480px) {
  .biking-section {
    padding: 40px 5%;
  }

  .biking-text h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .biking-text p {
    font-size: 15px;
    line-height: 24px;
  }
}





/* ===== Hiking Section ===== */
.hiking-section {
  padding: 80px 10%;
  background: #fff;
}

.hiking-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hiking-item.reverse {
  flex-direction: row-reverse; /* Image first, text second on desktop */
}

.hiking-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.hiking-image img {
  width: 100%;
  height: 650px;

  
}

.hiking-text {
  flex: 1;
  font-family: 'Jost', sans-serif;
  max-width: 600px;
}

.hiking-text h2 {
  font-family: 'Marcellus', sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 40px;
  color: rgb(2, 81, 87);
  margin-bottom: 20px;
}

.hiking-text p {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 31px;
  color: rgb(0, 0, 0);
  margin-bottom: 15px;
}

.hiking-text .more-text {
  display: none;
}

/* Button */
.learn-btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  line-height: 18px;
  font-weight: 400;
  color: rgb(2, 81, 87);
  border: 2px solid rgb(2, 81, 87);
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.learn-btn:hover {
  background: rgb(2, 81, 87);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(2, 81, 87, 0.3);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .hiking-section {
    padding: 60px 6%;
  }

  .hiking-text h2 {
    font-size: 32px;
    line-height: 38px;
  }

  .hiking-text p {
    font-size: 17px;
    line-height: 28px;
  }
}

@media (max-width: 768px) {
  .hiking-item {
    flex-direction: column; /* Stack vertically on tablets/mobiles */
    text-align: center;
  }

  .hiking-item.reverse {
    flex-direction: column; /* Always stack on mobile */
  }

  .hiking-image,
  .hiking-text {
    max-width: 100%;
  }

  .hiking-text h2 {
    font-size: 28px;
    line-height: 34px;
    margin-top: 20px;
  }

  .hiking-text p {
    font-size: 16px;
    line-height: 26px;
  }

  .learn-btn {
    margin: 10px auto 0 auto;
    display: block;
  }
}

@media (max-width: 480px) {
  .hiking-section {
    padding: 40px 5%;
  }

  .hiking-text h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .hiking-text p {
    font-size: 15px;
    line-height: 24px;
  }
}




/* ===== Rafting Section ===== */
.rafting-section {
  padding: 80px 10%;
  background: #fff;
}

.rafting-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.rafting-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.rafting-image img {
  width: 100%;
  height: 550px;
}

.rafting-text {
  flex: 1;
  font-family: 'Jost', sans-serif;
  max-width: 600px;
}

.rafting-text h2 {
  font-family: 'Marcellus', sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 40px;
  color: rgb(2, 81, 87);
  margin-bottom: 20px;
}

.rafting-text p {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 31px;
  color: rgb(0, 0, 0);
  margin-bottom: 15px;
}

.rafting-text .more-text {
  display: none;
}

/* Button */
.learn-btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  line-height: 18px;
  font-weight: 400;
  color: rgb(2, 81, 87);
  border: 2px solid rgb(2, 81, 87);
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.learn-btn:hover {
  background: rgb(2, 81, 87);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(2, 81, 87, 0.3);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .rafting-section {
    padding: 60px 6%;
  }

  .rafting-text h2 {
    font-size: 32px;
    line-height: 38px;
  }

  .rafting-text p {
    font-size: 17px;
    line-height: 28px;
  }
}

@media (max-width: 768px) {
  .rafting-item {
    flex-direction: column; /* Stack vertically on tablets/mobiles */
    text-align: center;
  }

  .rafting-image,
  .rafting-text {
    max-width: 100%;
  }

  .rafting-text h2 {
    font-size: 28px;
    line-height: 34px;
    margin-top: 20px;
  }

  .rafting-text p {
    font-size: 16px;
    line-height: 26px;
  }

  .learn-btn {
    margin: 10px auto 0 auto;
    display: block;
  }
}

@media (max-width: 480px) {
  .rafting-section {
    padding: 40px 5%;
  }

  .rafting-text h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .rafting-text p {
    font-size: 15px;
    line-height: 24px;
  }
}




/* ===== Archery Festival Section ===== */
.archery-section {
  padding: 80px 10%;
  background: #fff;
}

.archery-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.archery-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.archery-image img {
  width: 100%;
  height: 550px;
}

.archery-text {
  flex: 1;
  font-family: 'Jost', sans-serif;
  max-width: 600px;
}

.archery-text h2 {
  font-family: 'Marcellus', sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 40px;
  color: rgb(2, 81, 87);
  margin-bottom: 20px;
}

.archery-text p {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 31px;
  color: rgb(0, 0, 0);
  margin-bottom: 15px;
}

.archery-text .more-text {
  display: none;
}

/* Button */
.learn-btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  line-height: 18px;
  font-weight: 400;
  color: rgb(2, 81, 87);
  border: 2px solid rgb(2, 81, 87);
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.learn-btn:hover {
  background: rgb(2, 81, 87);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(2, 81, 87, 0.3);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .archery-section {
    padding: 60px 6%;
  }

  .archery-text h2 {
    font-size: 32px;
    line-height: 38px;
  }

  .archery-text p {
    font-size: 17px;
    line-height: 28px;
  }
}

@media (max-width: 768px) {
  .archery-item {
    flex-direction: column; /* Stack vertically on tablets/mobiles */
    text-align: center;
  }

  .archery-image,
  .archery-text {
    max-width: 100%;
  }

  .archery-text h2 {
    font-size: 28px;
    line-height: 34px;
    margin-top: 20px;
  }

  .archery-text p {
    font-size: 16px;
    line-height: 26px;
  }

  .learn-btn {
    margin: 10px auto 0 auto;
    display: block;
  }
}

@media (max-width: 480px) {
  .archery-section {
    padding: 40px 5%;
  }

  .archery-text h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .archery-text p {
    font-size: 15px;
    line-height: 24px;
  }
}




/* ===== Camping Section ===== */
.camping-section {
  padding: 80px 10%;
  background: #fff;
}

.hiking-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hiking-item.reverse {
  flex-direction: row-reverse; /* Image first, text second on desktop */
}

.hiking-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.hiking-image img {
  width: 100%;
  height: 500px;

}

.hiking-text {
  flex: 1;
  font-family: 'Jost', sans-serif;
  max-width: 600px;
}

.hiking-text h2 {
  font-family: 'Marcellus', sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 40px;
  color: rgb(2, 81, 87);
  margin-bottom: 20px;
}

.hiking-text p {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 31px;
  color: rgb(0, 0, 0);
  margin-bottom: 15px;
}

.hiking-text .more-text {
  display: none;
}

/* ===== Read More Button ===== */
.learn-btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  line-height: 18px;
  font-weight: 400;
  color: rgb(2, 81, 87);
  border: 2px solid rgb(2, 81, 87);
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.learn-btn:hover {
  background: rgb(2, 81, 87);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(2, 81, 87, 0.3);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .camping-section {
    padding: 60px 6%;
  }

  .hiking-text h2 {
    font-size: 32px;
    line-height: 38px;
  }

  .hiking-text p {
    font-size: 17px;
    line-height: 28px;
  }
}

@media (max-width: 768px) {
  .hiking-item {
    flex-direction: column;
    text-align: center;
  }

  .hiking-item.reverse {
    flex-direction: column;
  }

  .hiking-image,
  .hiking-text {
    max-width: 100%;
  }

  .hiking-text h2 {
    font-size: 28px;
    line-height: 34px;
    margin-top: 20px;
  }

  .hiking-text p {
    font-size: 16px;
    line-height: 26px;
  }

  .learn-btn {
    margin: 10px auto 0 auto;
    display: block;
  }
}

@media (max-width: 480px) {
  .camping-section {
    padding: 40px 5%;
  }

  .hiking-text h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .hiking-text p {
    font-size: 15px;
    line-height: 24px;
  }
}


