/* ── Destination cards (district tiles) — image with dark overlay
   and a coloured pill at the bottom. Used on: HomePage.
   Vibrant on purpose to give the home page visual identity.
   ──────────────────────────────────────────────────────────────────────── */
.dest-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--bd-radius-lg);
    aspect-ratio: 4 / 3;
    display: block;
    text-decoration: none !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: transform .2s ease, box-shadow .2s ease;
    background: var(--bd-primary);
}
.dest-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.6rem 1.2rem rgba(31, 79, 120, 0.18);
}
.dest-card img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}
.dest-card:hover img { transform: scale(1.05); }
.dest-card .dc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(15, 30, 38, 0.85) 0%,
        rgba(15, 30, 38, 0.18) 55%,
        transparent 100%);
}
.dest-card .dc-inland {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1F7A57 0%, #2D6FA1 100%);
}
.dest-card .dc-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1rem 1rem 0.9rem;
}
.dest-card .dc-count {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 0.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 99px;
    font-size: 0.7rem;
    font-weight: 500;
    color: #fff;
    padding: 0.2rem 0.7rem;
    margin-bottom: 0.4rem;
}
.dest-card .dc-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.dest-card .dc-arrow {
    position: absolute;
    top: 0.85rem; right: 0.85rem;
    width: 30px; height: 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85rem;
    transition: background .2s;
}
.dest-card:hover .dc-arrow { background: rgba(255, 255, 255, 0.32); }
