﻿.loading-container {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: 9999;
    background-color: var(--loading-bg-color, rgba(0, 151, 230, 0.7));
    backdrop-filter: blur(10px); /* 🍃 blur effect */
    -webkit-backdrop-filter: blur(10px); /* Safari support */

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: 'Lexend', sans-serif;
    transition: opacity 0.3s ease-in-out;
}

.loading-logo img {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
    animation: fadeIn 1.5s ease-in-out;
}

.loading-spinner {
    border: 6px solid rgba(255, 255, 255, 0.2);
    border-top: 6px solid #ffffff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.loading-tagline {
    font-size: 1.2rem;
    opacity: 0.85;
    animation: fadeIn 2s ease-in-out;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

