/* destinationlisting.css */

/* Destination Page Hero */
.destination-hero {
    height: 85vh !important;
    min-height: 550px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.destination-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.destination-hero .container {
    z-index: 2;
}

.destination-hero .hero-title {
    font-size: 4.5rem;
    font-weight: 500;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.destination-hero .hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.95;
    max-width: 700px;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .destination-hero .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 767px) {
    .destination-hero {
        height: 70vh !important;
        min-height: 480px;
    }
    .destination-hero .hero-title {
        font-size: 2.8rem;
    }
    .destination-hero .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* Uniform Destination Cards (Overriding the standard dest-card bounds for a regular grid) */
.dest-card.dest-uniform {
    height: 350px !important;
    width: 100% !important;
    display: block;
}

@media (max-width: 991px) {
    .dest-card.dest-uniform {
        height: 300px !important;
    }
}

@media (max-width: 767px) {
    .dest-card.dest-uniform {
        height: 320px !important;
    }
}
