
/* Hero Banner */
.destination-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('../images/destination-banner.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    margin-bottom: 30px;
}

/* Filter Sidebar */
.filter-header {
    background-color: #6cbd46;
    color: white;
    padding: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.list-group-item {
    border-left: 0;
    border-right: 0;
    transition: all 0.3s ease;
    padding: 0.75rem 1.25rem;
}

.list-group-item:not(.active):hover {
    background-color: #f8f9fa;
}

.list-group-item.active {
    background-color: #6cbd46;
    color: white;
    border-color: #6cbd46;
}

/* Destination Cards */
.popular-destination-card,
.destination-card {
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.popular-destination-card:hover,
.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.popular-img-container,
.destination-img {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.popular-img-container img,
.destination-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.popular-destination-card:hover .popular-img-container img,
.destination-card:hover .destination-img img {
    transform: scale(1.05);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 20px;
}

.destination-overlay h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

/* Badges */
.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    background-color: #6cbd46;
    color: white;
}

.flight-badge {
    background-color: #f8f9fa;
    color: #212529;
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    border-radius: 0.25rem;
}

/* Buttons */
.explore-btn {
    border-color: #6cbd46;
    color: #6cbd46;
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

.explore-btn:hover {
    background-color: #6cbd46;
    color: white;
}

.tagline {
    color: #6cbd46;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

/* Title Styling */
.title-1 h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.title-1 p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .col-lg-3 {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .destination-hero {
        padding: 80px 0;
    }

    .popular-img-container,
    .destination-img {
        height: 150px;
    }
    
    .col-md-6, .col-lg-4 {
        margin-bottom: 1rem;
    }
}