/* Special Offer Index Page Styles */
.tour-card {
    cursor: default;
    transition: 0.3s ease;
}

.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;
    border-radius: 8px 8px 0 0 !important; /* Only top corners */
}

.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);
}

/* TITLE COLORS - Applied to the anchor tag */
.tour-title a {
    /* color: #f48b5c !important; */
    transition: color 0.3s ease;
    text-decoration: none;
}

/* .tour-card:hover .tour-title a {
    color: #265471 !important;
} */

/* BUTTON COLORS - Stronger specificity */
.tour-card .btn--primary.custom-btn.view-tour-btn,
.tour-card .btn.btn--primary.custom-btn.view-tour-btn {
    background-color: #f48b5c !important;
    border-color: #f48b5c !important;
    color: #fff !important;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.tour-card:hover .btn--primary.custom-btn.view-tour-btn,
.tour-card:hover .btn.btn--primary.custom-btn.view-tour-btn {
    background-color: #265471 !important;
    border-color: #265471 !important;
    color: #fff !important;
}
