/* Preloader Container */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #cbd0c8;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Logo spinning */
.logo-container {
    text-align: center;
}

.prelogo {
    width: 300px;
    /* animation: spin 2s linear infinite; */
}

/* Text animation */
.text-prelogo {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.text-prelogo span {
    font-size: 1.5rem;
    font-weight: bold;
    opacity: 0;
    animation: fade-in 0.5s ease forwards;
}

.text-prelogo span:nth-child(1) { animation-delay: 0.5s; }
.text-prelogo span:nth-child(2) { animation-delay: 1s; }
.text-prelogo span:nth-child(3) { animation-delay: 1.5s; }
.text-prelogo span:nth-child(4) { animation-delay: 2s; }
.text-prelogo span:nth-child(5) { animation-delay: 2.5s; }
.text-prelogo span:nth-child(6) { animation-delay: 3s; }

@keyframes fade-in {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Hide scrollbar while loading */
body.loading {
    overflow: hidden;
}