/* ======================================================
   DESTINATION PAGE — WORLD CLASS MASTER
====================================================== */

:root {
  --radius-xl: 26px;
  --radius-pill: 999px;

  --navy: #0b2a4a;
  --navy-soft: #143b66;
  --accent-soft: #f1f5f9;

  --text-dark: #0f172a;
  --text-muted: #6b7280;
  --white: #ffffff;

  --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.10);
  --shadow-hover: 0 30px 70px rgba(15, 23, 42, 0.20);
}

/* ======================================================
   RESET
====================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, sans-serif;
  background: #ffffff;
  color: var(--text-dark);
  line-height: 1.7;
}

/* ======================================================
   HERO — CLEAN, PREMIUM, SAFE
====================================================== */

.destination-hero {
  position: relative;
  height: 85vh;
  min-height: 85svh;
  overflow: hidden;
}

.destination-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* subtle cinematic overlay */
.destination-hero-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0 24px;
  background:
    radial-gradient(circle at center, rgba(0,0,0,0.20), rgba(0,0,0,0.55)),
    linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.60));
}

.destination-hero-overlay h1 {
  font-size: clamp(2.6rem, 5vw, 3.9rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
}

.destination-hero-overlay p {
  margin-top: 14px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.90);
}

.destination-cta-btn {
  margin-top: 26px;
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.destination-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(11, 42, 74, 0.35);
}

/* ======================================================
   CONTAINER
====================================================== */

.destination-container {
  max-width: 1200px;
  margin: 96px auto;
  padding: 0 24px;
}

/* ======================================================
   INTRO
====================================================== */

.destination-intro p {
  font-size: 1.05rem;
  max-width: 820px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

/* ======================================================
   HIGHLIGHTS
====================================================== */

.destination-highlights h2 {
  margin-bottom: 18px;
  font-size: 1.4rem;
  color: var(--navy);
}

.destination-highlights ul {
  list-style: disc;
  padding-left: 20px;
  color: var(--text-muted);
}

/* ======================================================
   ITINERARY GRID — PREMIUM TRAVEL CARD DESIGN
====================================================== */

.itinerary-duration-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.itinerary-duration-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.itinerary-duration-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

/* image focus like premium travel sites */
.itinerary-duration-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.itinerary-duration-card:hover img {
  transform: scale(1.06);
}

/* content */
.itinerary-duration-overlay {
  padding: 22px;
}

.itinerary-duration-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy);
  text-transform: uppercase;
}

.itinerary-book-btn {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.itinerary-book-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(11, 42, 74, 0.35);
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 1024px) {
  .itinerary-duration-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .destination-hero {
    height: 70vh;
  }

  .itinerary-duration-grid {
    grid-template-columns: 1fr;
  }
}

/* ======================================================
   ACCESSIBILITY
====================================================== */

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}