/* Hero Carousel Text Overlay */
.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

/* Destination Card Hover */
.destination-card:hover .overlay {
    opacity: 1;
}

/* Cards Rounded */
.card {
    border-radius: 12px;
}

/* Testimonials Cards */
#testimonials .card {
    border-radius: 12px;
}

/* Banner CTA */
#banner-cta .btn {
    font-weight: bold;
}
/* Destination Card */
.destination-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.destination-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Zoom effect */
.destination-card:hover img {
    transform: scale(1.1);
}

/* Overlay */
.destination-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
    
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transition: 0.4s ease;
}

.destination-card:hover .overlay {
    opacity: 1;
}

/* Text */
.destination-card .overlay h4 {
    color: #fff;
    font-weight: bold;
    font-size: 22px;
    text-align: center;
    transform: translateY(20px);
    transition: 0.4s;
}

.destination-card:hover .overlay h4 {
    transform: translateY(0);
}