/* ============================================================
   Activity Detail Page — About + Rates + Gallery Strip
   Responsive breakpoints: 1799, 1599, 1439, 1365, 1279, 1023, 801, 767, 639
============================================================ */

/* ── About Section ─────────────────────────────────────── */
.activity-about-section {
  padding: 100px 0 40px;
  text-align: center;
}

.activity-about-section .container,
.activity-rates-section .container {
  max-width: 1190px;
}

.activity-about__eyebrow {
  color: #6F7945;
  text-align: center;
  margin-bottom: 20px;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.activity-about__title {
  color: #A05B3F;
  text-align: center;
  font-family: "EB Garamond";
  font-size: 60px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 40px;
}

.activity-about__text p {
  color: #121212;
  text-align: center;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 20px;
}

.activity-about__text p:last-child {
  margin-bottom: 0;
}

/* ── Rates Section ─────────────────────────────────────── */
.activity-rates-section {
  background: #ffffff;
  padding: 0 0 100px;
  text-align: center;
  overflow-x: hidden;
}

.activity-rates__title {
  color: #08415C;
  text-align: center;
  font-family: "EB Garamond";
  font-size: 60px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 40px;
}

/* Package Card */
.activities-package-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: auto;
  align-items: stretch;
  gap: 0;
  margin: 0 auto;
  text-align: left;
  background: #fbf5e5;
  border-radius: 0;
  overflow: hidden;
  padding: 20px;
}

.activities-package-card__media {
  position: relative;
  background: #e8e4dc;
  overflow: hidden;
}

.activities-package-card__media .slick-slider {
  height: 100%;
}

.activities-package-slider .slick-list,
.activities-package-slider .slick-track {
  height: 100% !important;
}

.activities-package-slider .slick-slide {
  height: 100% !important;
}

.activities-package-slider .slick-slide>div {
  height: 100%;
  min-height: 100%;
}

.activities-package-slide-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.activities-package-slide-inner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.48) 15%, rgba(0, 0, 0, 0.06) 56%, rgba(0, 0, 0, 0) 100%);
}

.activities-package-slide-inner img {
  min-height: 270px;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Slick dots — scoped */
.activities-package-card__media .slick-dots {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  list-style: none;
  text-align: center;
  z-index: 2;
}

.activities-package-card__body {
  padding: 0 0 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.activities-package-card__heading {
  color: #A05B3F;
  font-family: "EB Garamond";
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 20px;
}

.activities-package-card__price {
  color: #08415C;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 4px;
}

.activities-package-card__note {
  color: #121212;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 22px;
}

.activities-package-card__list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}

.activities-package-card__list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 17px;
  color: #121212;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.activities-package-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 20px;
  height: 20px;
  background: url("../../image/Vector.png") no-repeat center / contain;
}

.activities-package-card__list li:last-child {
  margin-bottom: 0;
}

.activities-package-card__body .btn {
  align-self: flex-start;
}

/* ── Gallery Strip ─────────────────────────────────────── */
.activity-gallery-strip-section {
  width: 100%;
  background: #ffffff;
  padding: 0 0 100px 0;
}

.activity-gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: 100%;
}

.activity-gallery-strip__item {
  margin: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.activity-gallery-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Responsive ────────────────────────────────────────── */
@media only screen and (max-width: 1799px) {

  .activity-about__title,
  .activity-rates__title {
    font-size: 56px;
  }

  .activities-package-card__heading {
    font-size: 34px;
  }
}

@media only screen and (max-width: 1599px) {

  .activity-about__title,
  .activity-rates__title {
    font-size: 52px;
  }

  .activities-package-card__price {
    font-size: 18px;
  }

  .activity-about__eyebrow {
    font-size: 18px;
  }
}

@media only screen and (max-width: 1439px) {

  .activity-about__title,
  .activity-rates__title {
    font-size: 48px;
  }

  .activity-about__text p {
    font-size: 16px;
  }

  .activities-package-card__heading {
    font-size: 32px;
  }
}

@media only screen and (max-width: 1365px) {

  .activity-about__title,
  .activity-rates__title {
    font-size: 44px;
  }
}

@media only screen and (max-width: 1279px) {

  .activity-about__title,
  .activity-rates__title {
    font-size: 40px;
  }

  .activities-package-card__heading {
    font-size: 28px;
  }

  .activity-about__eyebrow {
    font-size: 16px;
  }

  .activity-gallery-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 1023px) {
  .activity-gallery-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 801px) {
  .activity-about__eyebrow {
    font-size: 14px;
    letter-spacing: 1.12px;
  }

  .activity-about__title,
  .activity-rates__title {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .activity-about__text p {
    font-size: 14px;
    line-height: 22px;
  }

  .activities-package-card {
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
  }

  .activity-gallery-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 767px) {

  .activity-about__title,
  .activity-rates__title {
    font-size: 32px;
  }

  .activities-package-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    width: 100%;
    gap: 20px;
  }

  .activities-package-card__media {
    order: -1;
    flex: 0 0 auto;
    width: 100%;
  }

  .activities-package-card__body {
    justify-content: flex-start;
    padding: 0;
  }

  .activities-package-card__heading {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .activities-package-card__price {
    font-size: 16px;
  }

  .activities-package-card__media .slick-dots {
    bottom: 14px;
  }

  .activities-package-card__media .slick-dots li {
    width: 8px;
    height: 8px;
    margin: 0 5px;
  }

  .activities-package-card__media .slick-dots li button {
    width: 8px;
    height: 8px;
  }

  .activities-package-card__media .slick-dots li.slick-active {
    width: 28px;
    height: 8px;
  }

  .activities-package-card__media .slick-dots li.slick-active button {
    width: 28px;
    height: 8px;
  }
}

@media only screen and (max-width: 639px) {
  .activity-about-section {
    padding: 60px 0 30px;
  }

  .activity-rates-section {
    padding-bottom: 60px;
  }

  .activities-package-card__list li {
    font-size: 14px;
  }

  .activities-package-card__note {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .activity-gallery-strip-section {
    padding-bottom: 60px;
  }
}