/* ================================================
   TTA SINGLE DESTINATION PAGE STYLES
   Clean, immersive storytelling layout
   ================================================ */

:root {
  --section-padding: 4rem 0;
}

/* ------------------------------------------------
   HERO SLIDER
------------------------------------------------ */
.destination-hero-slider {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.destination-hero-slider .swiper-slide {
  background-size: cover;
  background-position: center;
  position: relative;
  height: 90vh;
}

.destination-hero-slider .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.65));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 2rem;
}

.destination-hero-slider .hero-text h1 {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.destination-hero-slider .hero-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-inline: auto;
  color: #f5f5f5;
}

.destination-hero-slider .tta-btn-primary {
  background: var(--tta-sunset);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--tta-radius);
  text-transform: uppercase;
  font-weight: 600;
  transition: background var(--tta-transition);
}

.destination-hero-slider .tta-btn-primary:hover {
  background: var(--tta-forest);
}

/* ------------------------------------------------
   QUICK FACTS
------------------------------------------------ */
.destination-facts {
  background: var(--tta-sand);
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.facts-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1rem;
}

.facts-grid li {
  background: #fff;
  box-shadow: var(--tta-shadow);
  border-radius: var(--tta-radius);
  padding: 1rem 1.5rem;
  min-width: 250px;
  text-align: center;
}

/* ------------------------------------------------
   SECTIONS BASE
------------------------------------------------ */
.destination-section {
  padding: var(--section-padding);
  position: relative;
}

.destination-section.alt-bg {
  background: #fffdf9;
}

.destination-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--tta-earth);
}

.destination-section p {
  max-width: 800px;
  margin: 0.5rem auto 1rem auto;
  text-align: center;
  color: var(--tta-muted);
  line-height: 1.7;
}

.destination-section .container {
  max-width: 1100px;
}

/* ------------------------------------------------
   WHY GO SECTION
------------------------------------------------ */
.reason-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.reason-list li {
  background: #fff;
  border-radius: var(--tta-radius);
  box-shadow: var(--tta-shadow);
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.reason-list li:hover {
  transform: translateY(-5px);
}

.reason-list h3 {
  font-size: 1.3rem;
  color: var(--tta-earth);
  margin-bottom: 0.5rem;
}

.reason-list p {
  color: var(--tta-text);
  text-align: left;
}

/* ------------------------------------------------
   WHERE TO GO SECTION
------------------------------------------------ */
.tta-where-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.where-item {
  background: #fff;
  border-radius: var(--tta-radius);
  box-shadow: var(--tta-shadow);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.where-item:hover {
  transform: translateY(-5px);
}

.where-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.where-content {
  padding: 1.5rem;
}

.where-content h3 {
  color: var(--tta-earth);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.where-content p {
  text-align: left;
  color: var(--tta-muted);
}

.where-content .tta-btn-secondary {
  margin-top: 0.75rem;
  display: inline-block;
}

/* ------------------------------------------------
   WHEN TO GO SECTION
------------------------------------------------ */
.season-grid {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.season-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.season-row:nth-child(even) {
  direction: rtl;
  text-align: left;
}

.season-row:nth-child(even) .season-text {
  direction: ltr;
}

.season-text h3 {
  color: var(--tta-earth);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.season-text p {
  color: var(--tta-muted);
}

/* ------------------------------------------------
   GALLERY
------------------------------------------------ */
.gallery-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-grid figure {
  overflow: hidden;
  border-radius: var(--tta-radius);
  box-shadow: var(--tta-shadow);
  background: #fff;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.05);
}

.gallery-grid figcaption {
  text-align: center;
  font-size: 0.95rem;
  color: var(--tta-muted);
  padding: 0.5rem;
}

/* ------------------------------------------------
   RELATED TOURS
------------------------------------------------ */
.tta-tour-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.tta-tour-card {
  background: #fff;
  border-radius: var(--tta-radius);
  box-shadow: var(--tta-shadow);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.tta-tour-card:hover {
  transform: translateY(-5px);
}

.tta-tour-info {
  padding: 1rem 1.25rem;
}

.tta-tour-info h3 {
  color: var(--tta-earth);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.tta-tour-info p {
  font-size: 0.95rem;
  color: var(--tta-muted);
}

/* ------------------------------------------------
   CTA FOOTER
------------------------------------------------ */
.destination-cta {
  background: var(--tta-forest);
  color: #fff;
  text-align: center;
  padding: 4rem 1rem;
}

.destination-cta h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.destination-cta p {
  max-width: 700px;
  margin: 0 auto 1.5rem auto;
  color: #eaeaea;
}

.destination-cta .tta-btn-primary {
  background: var(--tta-sunset);
  border-radius: 30px;
  padding: 0.8rem 1.8rem;
  font-weight: 600;
  transition: background var(--tta-transition);
	color: var(--tta-sand);
}

.destination-cta .tta-btn-primary:hover {
  background: var(--tta-accent);
}

/* ------------------------------------------------
   RESPONSIVE
------------------------------------------------ */
@media (max-width: 768px) {
  .destination-hero-slider .hero-text h1 {
    font-size: 2rem;
  }

  .season-row {
    grid-template-columns: 1fr;
  }

  .destination-section {
    padding: 3rem 1rem;
  }

  .reason-list,
  .tta-where-grid,
  .gallery-grid,
  .tta-tour-grid {
    grid-template-columns: 1fr;
  }

  .facts-grid li {
    min-width: 100%;
  }
}
/* Apply to all destination sections with an ID */
.tta-destination section[id] {
  scroll-margin-top: 121px; /* 70 + 51 */
	margin:0 auto;
	padding: 2rem;
}
/* ============================= */
/* DESTINATION FACTS – SAND VARIANT */
/* ============================= */
.destination-facts.facts-sand {
  background: var(--tta-sand);
  padding: 2.5rem 0;
  border-top: 4px solid var(--tta-forest);
  border-bottom: 4px solid var(--tta-forest);
  position: relative;
  overflow: hidden;
}

.destination-facts.facts-sand::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--tta-forest), var(--tta-sand), var(--tta-forest));
  opacity: 0.2;
}

.destination-facts.facts-sand .facts-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 100%;
  font-size: 1.05rem;
}

.destination-facts.facts-sand .facts-grid li {
  background: var(--tta-forest);
  color: var(--tta-sand);
  border-radius: var(--tta-radius);
  padding: 1rem 1.75rem;
  min-width: 260px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(46, 83, 57, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-facts.facts-sand .facts-grid li strong {
  display: block;
  color: var(--tta-sand);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.destination-facts.facts-sand .facts-grid li:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(46, 83, 57, 0.25);
}


/* ============================= */
/* DESTINATION FACTS – FOREST VARIANT */
/* ============================= */
.destination-facts.facts-forest {
  background: var(--tta-forest);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.destination-facts.facts-forest::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--tta-sand), var(--tta-forest), var(--tta-sand));
  opacity: 0.25;
}

.destination-facts.facts-forest .facts-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0 auto;
  padding: 0;
/*   max-width: 900px; */
  font-size: 1.05rem;
}

.destination-facts.facts-forest .facts-grid li {
  background: var(--tta-sand);
  color: var(--tta-forest);
  border-radius: var(--tta-radius);
  padding: 1.25rem 1.75rem;
  min-width: 260px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.destination-facts.facts-forest .facts-grid li strong {
  display: block;
  color: var(--tta-forest);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.destination-facts.facts-forest .facts-grid li:hover {
  transform: translateY(-4px);
  background: #fffdf8;
  box-shadow: 0 8px 18px rgba(0,0,0,0.35);
}

.destination-facts.facts-forest::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* ============================= */
/* RESPONSIVE TWEAK */
/* ============================= */
@media (max-width: 768px) {
  .destination-facts .facts-grid {
    flex-direction: column;
    align-items: center;
  }
  .destination-facts .facts-grid li {
    width: 90%;
  }
}
