/* Styles pour le préchargeur */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f8f9fa; /* Couleur de fond de votre choix */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-in-out;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-img {
    max-width: 250px; /* Taille maximale de l'image */
    animation: pulse 1.5s infinite; /* Animation simple */
}

/* Animation d'impulsion pour l'image */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Styles pour le contenu principal (initialement caché) */
#main-content {
    display: none;
}