/* Fullscreen Carousel */
.carousel-item {
    height: 100vh;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    transition: transform 3s ease-in-out, opacity 3s ease-in-out;
}
    
.carousel-item.zoom {
    animation: zoomEffect 3s ease-in-out;
}
    
.carousel-fade .carousel-item {
    opacity: 0;
}
    
.carousel-fade .carousel-item.active {
    opacity: 1;
    transition: opacity 3s ease-in-out, transform 1.5s ease-in-out;
}
    
/* Text Animation */
.carousel-caption h1 {
    animation: fadeInText 2s ease-in-out;
    text-shadow: 0.1em 0.1em 0.2em black;
    font-size: 4rem;
    font-weight: bold;
    text-transform: uppercase;
}
.carousel-caption p {
    animation: fadeInText 2s ease-in-out;
    text-shadow: 0.1em 0.1em 0.2em black;
}
    
/* Keyframe for text animation */
@keyframes fadeInText {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}
    
/* Keyframe for zoom animation */
@keyframes zoomEffect {
    0% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}
    
/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 2.5rem;
    }
}