﻿/* === LOADER ÜMUMİ === */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.7s ease, visibility 0.7s ease;
    overflow: hidden;
}

/* === LOGO === */
.loader-logo img {
    height: 80px;
    max-width: 200px;
    margin-bottom: 25px;
    user-select: none;
    animation: fadeIn 1.2s ease-in-out infinite alternate;
}

/* === DÖVRƏ FİRLANAN HALQA === */
.loader-ring {
    width: 70px;
    height: 70px;
    border: 5px solid #e5671d; /* narıncı */
    border-top: 5px solid #522a8a; /* bənövşəyi */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* === ANİMASİYALAR === */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0.5;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* === YÜKLƏNMƏ TAMAMLANANDA GİZLƏNİR === */
body.loaded #loader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* === Səhifə yüklənərkən scroll deaktiv olsun === */
body:not(.loaded) {
    overflow: hidden;
}
