/* ==========================================================================
   1. MAIN WRAPPERS & CONTAINERS
   ========================================================================== */
.destination-container-description {
  position: relative;
  z-index: 3;
  padding: 0 24px;
  margin-bottom: 80px;
}

.destination-description {
  max-width: 1200px;
  margin: 0 auto;
}

/* ==========================================================================
   2. ABOUT CONTENT & TYPOGRAPHY
   ========================================================================== */
.about-content {
  display: flow-root;
  margin-top: 30px;
  margin-bottom: 40px;
}

.about-content h2 {
  margin-bottom: 25px;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-primary-gold);
}

.about-content p {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--color-text-dark);
  text-align: justify;
}

/* ==========================================================================
   3. HERO SLIDER COMPONENT
   ========================================================================== */
.about-image-wrapper {
  position: relative;
  z-index: 10;
  float: right;
  width: 48%;
  margin: 10px 0 20px 40px;
}

/* Main Slider Outer Container */
.slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.slider-wrapper::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  z-index: -1;
  background-color: var(--color-primary-gold);
  border-radius: 20px;
}

/* Tiny Slider Viewport Masking */
.slider-wrapper .tns-outer,
.slider-wrapper .tns-ovh,
.slider-wrapper .tns-inner {
  border-radius: 16px !important;
  overflow: hidden !important;
  transform: translateZ(0) !important;
  -webkit-transform: translateZ(0) !important;
  -webkit-mask-image: -webkit-radial-gradient(white, black) !important;
  mask-image: -webkit-radial-gradient(white, black) !important;
}

/* Individual Slide Items */
.slide-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  transform: translateZ(0);
}

.slide-item img,
.my-main-slider img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
}

/* Slide Caption Overlay */
.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 40px 20px 20px 20px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.6) 45%,
    rgba(0, 0, 0, 0.2) 75%,
    transparent 100%
  );
  color: var(--color-text-light);
  pointer-events: none;
}

.slide-caption h3 {
  margin: 0 0 6px 0;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text-light);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.slide-caption p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--color-text-light);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  text-align: left;
}

/* Slider Controls (Prev/Next) */
.custom-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  box-sizing: border-box;
  transform: translateY(-50%);
  pointer-events: none;
}

.custom-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 12px;
  background: var(--color-text-light);
  color: #000;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  pointer-events: auto;
}

/* Thumbnail Navigation */
.thumbnail-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  padding: 0;
  list-style: none;
}

.thumbnail-nav li {
  width: 90px;
  height: 65px;
  border: 3px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.thumbnail-nav li img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail-nav li.tns-nav-active {
  border-color: #cda434;
}

/* ==========================================================================
   4. CALL TO ACTION (CTA) BUTTON
   ========================================================================== */
.CTA-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.75rem;
  border: 2px solid var(--color-primary-gold);
  border-radius: 20px;
  background-color: #0b1528;
  color: var(--color-text-light, #ffffff);
  font-family: var(--font-primary, inherit);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: inset 2px 3px 6px rgba(255, 255, 255, 0.25), 0px 6px 14px rgba(220, 160, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* ==========================================================================
   5. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {
  .about-image-wrapper {
    float: none;
    width: 100%;
    margin: 0 0 30px 0;
  }

  .about-content h2 {
    font-size: 36px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .about-content h2 {
    font-size: 28px;
  }

  .about-content p {
    font-size: 15px;
  }

  .my-main-slider img {
    height: 300px !important;
  }
}