/* Apply Work Sans font to all elements */
* {
    font-family: 'Work Sans', sans-serif;
}

/* Additional custom styles can go here */ 

.slideshow-container {
    position: relative;
    overflow: hidden;
}

.slideshow-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-text {
    transition: opacity 0.3s ease-in-out;
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Modal animation */
#infoModal {
    transition: opacity 0.3s ease-in-out;
}

#infoModal.flex {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.thumbnail-container {
    position: relative;
    transition: all 0.3s ease;
}

.thumbnail-container:hover {
    border-color: #ef4444; /* red-500 */
}

.thumbnail-label {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

/* Optional: Add active state for current thumbnail */
.thumbnail-container.active {
    border-color: #ef4444;
    transform: scale(1.1);
}
