/* Gallery Styling - Similar to Excursion Style */
.main-gallery-img {
    position: relative;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.gallery-overlay-new {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.gallery-arrows {
    border-bottom-right-radius: 15px;
}

.btn-teal-gallery {
    background-color: #2a9d8f;
    border-color: #2a9d8f;
}

.btn-teal-gallery:hover {
    background-color: #1f7b6d;
    border-color: #1f7b6d;
}

/* Thumbnail Gallery */
.gallery-thumb {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.gallery-thumb:hover,
.active-gallery-thumb {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.active-gallery-thumb {
    border: 3px solid #f37021;
}

/* Card Hover Effects */
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-gallery-img {
        height: 300px !important;
    }

    .gallery-overlay-new h4 {
        font-size: 1rem;
    }

    .gallery-thumb {
        height: 60px;
    }
}
