/* Biking Details Hero Section */
.biking-details {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

/* Swiper container */
.biking-details .swiper {
  width: 100%;
  height: 500px; /* default height */
}

/* Swiper slides */
.biking-details .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 */
.biking-details::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) {
  .biking-details .swiper {
    height: 450px;
  }
}

@media (max-width: 992px) {
  .biking-details .swiper {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .biking-details .swiper {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .biking-details .swiper {
    height: 300px;
  }
}


/* ===== Biking Section ===== */
.biking-section {
  background: #ffffff;
  padding: 80px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0 !important;
}

.biking-section .biking-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 50px;
}

/* Image */
.biking-section .biking-image {
  flex: 1 1 300px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.biking-section .biking-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.biking-section .biking-image img:hover {
  transform: scale(1.05);
  filter: brightness(0.9);
}

/* Content */
.biking-section .biking-content {
  flex: 1 1 450px;
  margin-top: 20px;
}

.biking-section .biking-content h2 {
  font-family: 'Marcellus', sans-serif;
  font-size: 40px;
  line-height: 52px;
  font-weight: 400;
  color: rgb(2, 81, 87);
  margin-bottom: 20px;
}

.biking-section .biking-content p {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  line-height: 31px;
  font-weight: 400;
  color: rgb(0, 0, 0);
  margin-bottom: 30px;
}

/* Learn More Button */
.biking-section .learn-btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 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;
}

.biking-section .learn-btn:hover {
  background: rgb(2, 81, 87);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(2, 81, 87, 0.3);
}

/* Hidden Content */
.biking-section .hidden-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 0.6s ease, opacity 0.4s ease, margin-top 0.4s ease;
}

.biking-section .hidden-content p {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  line-height: 31px;
  color: rgb(0, 0, 0);
  margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 992px) {
  .biking-section .biking-container {
    flex-direction: column;
    text-align: center;
  }
  .biking-section .biking-content h2 {
    font-size: 32px;
    line-height: 42px;
  }
  .biking-section .biking-content p {
    font-size: 16px;
    line-height: 28px;
  }
}
