/* =====================================================
   destinations-listing.css — Maris Vlora Boat Tours
   /destinations/ listing page. Requires shared.css.
   ===================================================== */

/* ── PAGE HEADER ── */
.dest-listing-hero {
  background: var(--navy);
  padding: 80px 0 56px;
}

.dest-listing-hero .tour-breadcrumb a,
.dest-listing-hero .tour-breadcrumb span {
  color: rgba(255,255,255,0.65) !important;
}

.dest-listing-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  color: var(--white);
  margin: 16px 0 14px;
}

.dest-listing-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  max-width: 580px;
}

/* ── GRID SECTION ── */
.dest-listing-grid-section {
  background: var(--cream);
  padding: 56px 0 72px;
}

.dest-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── DESTINATION CARD ── */
.dcard {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.dcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(13,27,42,0.14);
}

/* Card image */
.dcard-img-wrap {
  position: relative;
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.dcard-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease);
}

.dcard:hover .dcard-img-wrap img {
  transform: scale(1.04);
}

/* Badge */
.dcard-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  background: var(--orange);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.dcard-badge--history {
  background: var(--navy);
}

.dcard-badge--military {
  background: #4a5568;
}

.dcard-badge--hidden {
  background: var(--teal);
}

/* Card body */
.dcard-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dcard-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--teal);
  margin-bottom: 8px;
}

.dcard-title {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.4px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.dcard-title a {
  color: var(--navy);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

.dcard-title a:hover {
  color: var(--orange);
}

.dcard-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 16px;
}

/* Meta row */
.dcard-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.dcard-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.dcard-meta svg {
  color: var(--teal);
  flex-shrink: 0;
}

.dcard-cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* ── BOTTOM CTA STRIP ── */
.dest-listing-cta {
  background: var(--navy);
  padding: 48px 0;
}

.dest-listing-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.dest-listing-cta h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.dest-listing-cta p {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  max-width: 480px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .dest-listing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (max-width: 768px) {
  .dest-listing-hero {
    padding: 56px 0 40px;
  }

  .dest-listing-grid-section {
    padding: 36px 0 48px;
  }

  .dest-listing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .dest-listing-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .dest-listing-cta .btn-primary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .dcard-body {
    padding: 18px 16px 20px;
  }
}

.dest-listing-cta {
  background: var(--orange);
}

.dest-listing-cta h2,
.dest-listing-cta p {
  color: var(--white);
}

.dest-listing-cta .btn-primary {
  background: var(--white);
  color: var(--orange);
}

.dest-listing-cta .btn-primary:hover {
  background: var(--cream);
}

/* ── INTRO SECTION ── */
.dest-intro {
  background: var(--white);
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--gray-100);
}

.dest-intro h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.dest-intro p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 780px;
  margin-bottom: 14px;
}

.dest-intro p:last-child {
  margin-bottom: 0;
}