/* Page Loader Styles */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

#page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    animation: slideIn 0.6s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.loader-logo {
    animation: logoRotate 3s linear infinite;
    filter: drop-shadow(0 0 20px rgba(212, 202, 202, 0.4));
    width: 150px;
    height: 180px;
}

.loader-logo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

@keyframes logoRotate {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.loader-text-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.loader-text {
    color: #d4caca;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInOut 2s infinite;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.loader-dots {
    display: flex;
    gap: 0.6rem;
}

.loader-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d4caca;
    animation: dotBounce 1.4s infinite;
    box-shadow: 0 0 5px rgba(212, 202, 202, 0.5);
}

.loader-dot:nth-child(1) {
    animation-delay: 0s;
}

.loader-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotBounce {
    0%, 80%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    40% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .loader-logo {
        width: 120px;
        height: 145px;
    }
    
    .loader-container {
        gap: 2rem;
    }
    
    .loader-text {
        font-size: 0.95rem;
    }
    
    .loader-dot {
        width: 8px;
        height: 8px;
    }
}
    
    .loader-text {
        font-size: 0.9rem;
    }

