/* ==========================================================================
   Hosting Lovers — Destination page styles
   Extends /assets/css/style.css — editorial romantic aesthetic
   ========================================================================== */

.breadcrumb {
  padding: 7rem 0 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.breadcrumb a {
  color: var(--muted);
  transition: color 0.3s var(--ease);
}
.breadcrumb a:hover { color: var(--coral-deep); }

/* ---------- Destination hero ---------- */
.dest-hero {
  position: relative;
  padding: 3rem 0 5rem;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
  text-align: center;
}
.dest-hero .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
  opacity: 0.4;
  pointer-events: none;
}
.dest-hero .blob-coral { background: var(--coral-soft); }
.dest-hero .blob-teal { background: rgba(201,168,117,0.35); }

.dest-hero .container { position: relative; z-index: 2; }

.dest-flag {
  display: inline-block;
  font-size: 3.6rem;
  line-height: 1;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.08));
}
.dest-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  letter-spacing: -0.035em;
  margin-bottom: 1.1rem;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}
.gradient-text {
  font-style: italic;
  font-variation-settings: 'SOFT' 100, 'opsz' 144;
  color: var(--coral);
  font-weight: 500;
}
.dest-tagline {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.55;
}

.dest-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 760px;
  margin: 0 auto;
}
.dest-meta-item {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  min-width: 180px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.dest-meta-item .meta-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-deep);
  font-weight: 600;
}
.dest-meta-item .meta-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

/* ---------- Generic section on dest pages ---------- */
.dest-section {
  padding: var(--section) 0;
}
.dest-section.warm { background: var(--cream-warm); }
.dest-section.deep { background: var(--cream-deep); }

.section-header {
  max-width: 760px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.section-emoji {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral-deep);
  font-weight: 600;
  margin-bottom: 0.7rem;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  margin-bottom: 0.7rem;
}

/* ---------- Write-up ---------- */
.dest-writeup {
  max-width: 740px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--ink);
}
.dest-writeup p {
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.dest-writeup p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.6rem;
  line-height: 0.9;
  font-weight: 500;
  color: var(--coral);
  float: left;
  margin: 0.2rem 0.7rem 0 0;
  letter-spacing: -0.02em;
}

/* ---------- Highlights grid ---------- */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  max-width: 1160px;
  margin: 0 auto;
}
.highlight-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--coral-soft);
}
.highlight-card:hover::before { transform: scaleX(1); }

.highlight-card .hl-emoji {
  display: block;
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
}
.highlight-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.highlight-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ---------- Stay22 section ---------- */
.stay22-section {
  padding: var(--section) 0;
}
.stay22-subtitle {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 0.5rem;
  line-height: 1.6;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.stay22-wrap {
  max-width: 1160px;
  margin: 2.5rem auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  background: var(--card);
}
.stay22-wrap iframe {
  display: block;
  width: 100%;
  height: 560px;
  border: 0;
}

/* ---------- Excursion (e.g. Medellín → Guatapé) ---------- */
.excursion-section {
  padding: var(--section) 0;
  background: var(--cream-warm);
}

/* ---------- Nearby destinations ---------- */
.nearby-section {
  padding: var(--section) 0;
}
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  max-width: 1160px;
  margin: 0 auto;
}
.nearby-card {
  display: block;
  padding: 2rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.nearby-card::after {
  content: '→';
  position: absolute;
  bottom: 1rem;
  right: 1.25rem;
  color: var(--coral);
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.35s var(--ease);
}
.nearby-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--coral-soft);
}
.nearby-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}
.nearby-card .nearby-flag {
  display: block;
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 1rem;
}
.nearby-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
}
.nearby-card p {
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 720px) {
  .dest-hero { padding: 2rem 0 4rem; }
  .dest-meta-item { min-width: unset; width: 100%; }
  .stay22-wrap iframe { height: 480px; }
  .dest-writeup p:first-of-type::first-letter { font-size: 2.8rem; }
}
