
/* Seyyah Preloader Styles */
#seyyah-preloader {
    transition: opacity 0.8s ease-out;
}

.seyyah-preloader-fadeout {
    opacity: 0 !important;
}

/* Preloader için ek stiller */
.seyyah-preloader-title {
    animation: fadeInUp 1s ease-out;
}

.seyyah-preloader-subtitle {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.seyyah-year-display {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.seyyah-timeline-container {
    animation: fadeInUp 1s ease-out 0.9s both;
}

.seyyah-year-markers {
    animation: fadeInUp 1s ease-out 1.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
