/* ═══════════════════════════════════════
   PÁGINAS DE DESTINO — Barú Boats
═══════════════════════════════════════ */

/* ── Hero ── */
.dest-hero {
  position: relative;
  height: 72vh;
  min-height: 420px;
  overflow: hidden;
}
.dest-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.dest-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,30,60,0.25) 0%, rgba(11,30,60,0.65) 100%);
}
.dest-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px clamp(24px,6vw,72px);
}
.dest-hero-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 12px;
}
.dest-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 10px;
}
.dest-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.3px;
}

/* ── Main container ── */
.dest-main {
  padding-top: 64px;
  padding-bottom: 80px;
}

/* ── Sections ── */
.dest-section {
  margin-bottom: 56px;
}
.dest-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--turquoise);
  display: inline-block;
}

/* ── Description + Quick Facts ── */
.dest-desc-section {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}
.dest-lead {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
}
.dest-body-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
}

/* ── Quick Facts card ── */
.dest-quick-facts {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: sticky;
  top: 100px;
}
.dest-facts-title {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--turquoise);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dest-facts-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dest-facts-list li {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.dest-facts-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--turquoise);
  font-weight: 700;
}

/* ── Gallery ── */
.dest-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.dest-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.dest-gallery-item:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.dest-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.dest-gallery-item:hover img {
  transform: scale(1.05);
}
.dest-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,30,60,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.dest-gallery-overlay i {
  color: #fff;
  font-size: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.dest-gallery-item:hover .dest-gallery-overlay {
  background: rgba(11,30,60,0.35);
}
.dest-gallery-item:hover .dest-gallery-overlay i {
  opacity: 1;
}

/* ── CTA section ── */
.dest-cta-section {
  text-align: center;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 56px 40px;
  margin-top: 64px;
}
.dest-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.dest-cta-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 32px;
}
.dest-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.dest-btn-embarcaciones {
  background: var(--turquoise);
  color: var(--navy);
  font-size: 16px;
  padding: 16px 32px;
  font-weight: 700;
}
.dest-btn-embarcaciones:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,194,212,0.35);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  font-size: 15px;
  padding: 14px 28px;
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Lightbox ── */
.dest-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.dest-lightbox.active {
  display: flex;
}
.dest-lb-img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 4px;
}
.dest-lb-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.dest-lb-prev,
.dest-lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 32px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
}
.dest-lb-prev { left: 16px; }
.dest-lb-next { right: 16px; }
.dest-lb-counter {
  position: absolute;
  bottom: 20px;
  color: rgba(255,255,255,0.5);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .dest-desc-section {
    grid-template-columns: 1fr;
  }
  .dest-quick-facts {
    position: static;
  }
  .dest-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .dest-gallery-item:first-child {
    grid-column: span 2;
    aspect-ratio: 16/9;
  }
  .dest-cta-section {
    padding: 40px 24px;
  }
  .dest-lb-prev { left: 8px; }
  .dest-lb-next { right: 8px; }
}
@media (max-width: 480px) {
  .dest-gallery {
    grid-template-columns: 1fr;
  }
  .dest-gallery-item:first-child {
    grid-column: span 1;
  }
}
