/* Tour Category Page Styles */
.tour-card {
    cursor: default;
    transition: 0.3s ease;
    padding-bottom: 8px !important;
}

.tour-media {
    position: relative;
    
    border-radius: 8px 8px 0 0;
    cursor: pointer;
}

.tour-media img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.tour-media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    text-decoration: none;
    z-index: 2;
    cursor: pointer;
}

.tour-card:hover .tour-media-overlay {
    opacity: 1;
}

.tour-card:hover .tour-media img {
    transform: scale(1.05);
}

.tour-category_title a {
    color: #f48b5c !important;
    transition: color 0.3s ease;
    text-decoration: none;
}

.tour-card:hover .tour-category_title a {
    color: #265471 !important;
}

.view-trips-btn {
    background-color: #f48b5c !important;
    border-color: #f48b5c !important;
    color: #fff !important;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.tour-card:hover .view-trips-btn {
    background-color: #265471 !important;
    border-color: #265471 !important;
}

.tour-category {
    padding-bottom: 12px !important;
    margin-bottom: 0 !important;
}

.tour-category .mt-auto {
    margin-bottom: 0 !important;
}

.view-trips-btn {
    margin-bottom: 0 !important;
}
