
[x-cloak] { display: none !important; }
.sonatur-green {
    background-color: #2B6A39;
}
.sonatur-green-hover:hover {
    background-color: #1e4c28;
}
/* Styles améliorés pour l'écran de chargement */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2B6A39;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: opacity 0.5s ease-out;
}

.loader-container {
    text-align: center;
}

.loader {
    width: 150px;
    height: 150px;
    border: 5px solid #ffffff;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1.5s linear infinite;
}

.loader-logo {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
    background-color: white;
}

.loading-text {
    color: white;
    font-size: 1.5rem;
    margin-top: 2rem;
    font-weight: 500;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards 0.5s;
}

.loading-dots:after {
    content: '.';
    animation: dots 2s steps(5, end) infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dots {
    0%, 20% {
        content: '.';
    }
    40% {
        content: '..';
    }
    60% {
        content: '...';
    }
    80% {
        content: '....';
    }
    100% {
        content: '.....';
    }
}
