/* Tour Nile Cruise Page Styles */
.read-more-wrapper .read-more-content {
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.read-more-wrapper .read-more-content.expanded {
    max-height: none !important;
}

.read-more-toggle {
    cursor: pointer;
}

.tour-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Button hover effect when hovering on tour card */
.tour-card .btn--primary {
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

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

/* Overlay hover effect */
.tour-card:hover .tour-media-overlay {
    opacity: 1;
    visibility: visible;
}

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