/* ═══════════════════════════════════════════════════════════
   DESTINATION SUBPAGE STYLES — destination.css
   ═══════════════════════════════════════════════════════════ */

/* ── HERO ─────────────────────────────────────────────────── */
.dest-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  background-image: var(--dest-img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: var(--nav-h);
}

.dest-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,13,11,0.15) 0%,
    rgba(13,13,11,0.55) 60%,
    rgba(13,13,11,0.85) 100%
  );
}

.dest-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  color: var(--white);
}

.dest-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.dest-breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color 0.25s;
}

.dest-breadcrumb a:hover {
  color: var(--gold);
}

.dest-breadcrumb span[aria-hidden] {
  color: rgba(255,255,255,0.3);
}

.dest-hero-region {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.dest-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--white);
}

.dest-hero-intro {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  max-width: 620px;
  margin-bottom: 28px;
}

/* ── MAIN CONTENT GRID ────────────────────────────────────── */
.dest-main {
  background: var(--cream);
  padding-bottom: 80px;
}

.dest-content-grid {
  max-width: 1160px;
  margin: 0 auto;
  padding: 72px 40px 0;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

/* ── BODY SECTIONS ────────────────────────────────────────── */
.dest-body {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.dest-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dest-section h2 i {
  font-size: 1rem;
  color: var(--gold);
  width: 20px;
  text-align: center;
}

.dest-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #3a3830;
}

/* ── SIDEBAR ──────────────────────────────────────────────── */
.dest-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dest-cta-box {
  background: var(--dark);
  color: var(--white);
  border-radius: 4px;
  padding: 28px 24px;
  border-top: 3px solid var(--gold);
}

.dest-cta-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.dest-cta-box p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}

.dest-cta-trust {
  font-size: 0.72rem !important;
  color: rgba(255,255,255,0.4) !important;
  text-align: center;
  margin-top: 10px !important;
  letter-spacing: 0.04em;
}

.dest-guides-box {
  background: white;
  border-radius: 4px;
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--gold);
}

.dest-guides-box h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 14px;
}

.dest-guides-box ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dest-guides-box a {
  font-size: 0.85rem;
  color: var(--text);
  display: block;
  transition: color 0.2s;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding-bottom: 10px;
}

.dest-guides-box a:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.dest-guides-box a:hover {
  color: var(--gold);
}

.dest-back-box a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.dest-back-box a:hover {
  color: var(--gold);
}

/* ── RELATED DESTINATIONS ─────────────────────────────────── */
.dest-related {
  max-width: 1160px;
  margin: 80px auto 0;
  padding: 0 40px;
}

.dest-related h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 32px;
}

.dest-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.dest-related-card {
  position: relative;
  display: block;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  color: var(--white);
  text-decoration: none;
}

.dest-related-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.dest-related-card:hover img {
  transform: scale(1.06);
}

.dest-related-card span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ── DEST READ MORE LINK (index cards) ───────────────────── */
.dest-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 16px;
  background: #1a6fc4;
  color: #ffffff !important;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(26,111,196,0.35);
  transition: background 0.22s, box-shadow 0.22s, transform 0.18s;
}

.dest-read-more:hover {
  background: #155da0;
  box-shadow: 0 4px 14px rgba(26,111,196,0.45);
  transform: translateY(-1px);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .dest-content-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 48px 24px 0;
  }

  .dest-sidebar {
    position: static;
  }

  .dest-related {
    padding: 0 24px;
    margin-top: 56px;
  }

  .dest-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dest-hero {
    min-height: 55vh;
    padding-bottom: 48px;
  }

  .dest-hero-content {
    padding: 0 24px;
  }
}

@media (max-width: 540px) {
  .dest-related-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .dest-hero {
    min-height: 50vh;
  }
}

/* ── ENHANCED DESTINATION PAGE STYLES ────────────────────── */

/* H3 subsections inside content */
.dest-section h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 28px 0 10px;
}

.dest-section h3:first-of-type {
  margin-top: 20px;
}

/* Highlight boxes */
.dest-tip-box {
  background: linear-gradient(135deg, #fffaf0 0%, #fdf6e3 100%);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
  padding: 16px 20px;
  margin-top: 16px;
}

.dest-tip-box p {
  font-size: 0.9rem !important;
  color: #5a4a2a !important;
}

.dest-tip-box strong {
  color: #3a2e10;
}

/* Safety box */
.dest-safety-box {
  background: #fff8f8;
  border-left: 3px solid #c0392b;
  border-radius: 0 4px 4px 0;
  padding: 16px 20px;
  margin-top: 16px;
}

.dest-safety-box p {
  font-size: 0.9rem !important;
  color: #4a2020 !important;
}

/* Inline CTA banner */
.dest-cta-inline {
  background: var(--dark);
  color: var(--white);
  border-radius: 4px;
  padding: 24px 28px;
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 3px solid var(--gold);
}

.dest-cta-inline p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

.dest-cta-inline strong {
  color: var(--gold);
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.dest-cta-inline a {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.25s;
}

.dest-cta-inline a:hover {
  background: var(--gold-light);
}

/* Activity list */
.dest-activity-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}

.dest-activity-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.dest-activity-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.dest-activity-item p {
  font-size: 0.93rem !important;
  line-height: 1.65;
}

.dest-activity-item strong {
  color: var(--text);
}

/* DE keyword badge */
.dest-de-kw {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 2px;
  margin-left: 8px;
  vertical-align: middle;
}

/* Quick facts bar */
.dest-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1px;
  background: var(--cream-2);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 48px;
  border: 1px solid rgba(0,0,0,0.08);
}

.dest-fact {
  background: white;
  padding: 16px 18px;
  text-align: center;
}

.dest-fact-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 4px;
}

.dest-fact-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

/* Guide upsell card inside body */
.dest-guide-upsell {
  background: var(--cream-2);
  border-radius: 4px;
  padding: 20px 22px;
  margin-top: 20px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dest-guide-upsell p {
  font-size: 0.88rem !important;
  color: var(--text) !important;
  margin: 0;
}

.dest-guide-upsell a {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 10px 18px;
  border-radius: 2px;
  transition: background 0.2s;
}

.dest-guide-upsell a:hover {
  background: var(--gold-light);
}

/* Responsive adjustments */
@media (max-width: 700px) {
  .dest-cta-inline {
    flex-direction: column;
    text-align: center;
  }

  .dest-guide-upsell {
    flex-direction: column;
  }

  .dest-facts {
    grid-template-columns: repeat(2, 1fr);
  }
}
