/* 
 * Loading Screen Styles
 * Стили для экрана загрузки
 */

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFF9F2 0%, #F1EAE2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.loading-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-logo-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.loading-logo-icon {
    width: 50px;
    height: 50px;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-logo-img {
    width: 50px;
    height: 50px;
}

.loading-logo-text {
    width: 165px;
    height: 38px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 16px;
    line-height: 19px;
    color: #3056D3;
    flex: none;
    text-align: left;
    display: flex;
    align-items: center;
}


/* Убираем старую анимацию пара */
.teapot-animation {
    display: none;
}

/* Адаптивные стили - точно как в header */
@media (max-width: 767px) {
    .loading-logo-content {
        gap: 8px;
    }
    
    .loading-logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .loading-logo-img {
        width: 40px;
        height: 40px;
    }
    
    .loading-logo-text {
        width: 140px;
        height: 32px;
        font-size: 14px;
        line-height: 17px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .loading-logo-content {
        gap: 8px;
    }
    
    .loading-logo-icon {
        width: 45px;
        height: 45px;
    }
    
    .loading-logo-img {
        width: 45px;
        height: 45px;
    }
    
    .loading-logo-text {
        width: 150px;
        height: 35px;
        font-size: 15px;
        line-height: 18px;
    }
}

@media (min-width: 1024px) {
    .loading-logo-content {
        gap: 8px;
    }
    
    .loading-logo-icon {
        width: 50px;
        height: 50px;
    }
    
    .loading-logo-img {
        width: 50px;
        height: 50px;
    }
    
    .loading-logo-text {
        width: 165px;
        height: 38px;
        font-size: 16px;
        line-height: 19px;
    }
}
