/* ── Destination Hero Card ───────────────────────────── */
.dh-card {
  position: relative;
  display: block;
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 16px;
  box-sizing: border-box;
}

/* Background image — separate div for animation */
.dh-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transition: transform 0.65s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}

/* Hover animations */
.dh-card--zoom:hover      .dh-card__img { transform: scale(1.08); }
.dh-card--zoom-out:hover  .dh-card__img { transform: scale(0.94); }
.dh-card--pan-left:hover  .dh-card__img { transform: translateX(-4%); }
.dh-card--pan-right:hover .dh-card__img { transform: translateX(4%); }
.dh-card--pan-up:hover    .dh-card__img { transform: translateY(-4%); }
.dh-card--none            .dh-card__img { transition: none; }

/* Gradient overlay */
.dh-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.05) 60%, transparent 100%);
  pointer-events: none;
}

/* Content body — bottom left */
.dh-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 20px 20px 24px;
  box-sizing: border-box;
}

/* Title */
.dh-card__title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.15;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

/* Description */
.dh-card__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin: 0 0 16px;
  line-height: 1.5;
}

/* Button */
.dh-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background .22s ease, border-color .22s ease, color .22s ease, transform .22s ease;
}
.dh-card__btn:hover {
  background: rgba(255,255,255,0.28);
  transform: translateY(-1px);
}
.dh-card__btn i { font-size: 12px; }

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