/* Custom style for Carousel */

/* Overlay default state */
.carousel-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    z-index: 1;
}

.carousel-caption {
    z-index: 2;
    transition: transform 0.3s ease-in-out;
    text-shadow: 0 0px 10px black;
}

.carousel-caption h5 {
    transition: transform 0.3s ease-in-out;
}

/* Hover effects */
.carousel-item:hover .carousel-caption {
    transform: translateY(-5px);
}

.carousel-item:hover .carousel-caption h5 {
    transform: scale(1.2);
}

.carousel-item img {
    transition: transform 0.3s ease-in-out;
}

.carousel-item:hover img {
    transform: scale(1.05);
}