
/* Global */
body {
    margin: 0;
    font-family: 'Montserrat', 'Arial', sans-serif;
    background-color: #fff;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    flex-direction: column;
}

/* Logo */
.logo img {
    max-width: 220px; /* Ajuste la taille du logo */
    height: auto;
    margin-bottom: 60px; /* Espace entre le logo et le compte à rebours */
}

/* Compte à rebours */
.countdown-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.countdown {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 20px;
    padding: 20px;
   
}

.message {
    font-size: 20px;
    opacity: 0.7;
    font-style: italic;
}

/* Section texte */
.site-description {
    margin-top: 30px;
    font-size: 18px;
    max-width: 600px;
    padding: 20px;
    font-style: italic;
    line-height: 1.5;
}

/* Menu bas */
.footer-menu {
    position: fixed;
    bottom: 0;
    width: 100%;
    
    color: #000;
    text-align: center;
    padding: 15px 0;
    
}

.footer-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
}

.footer-menu li {
    margin: 0 15px;
}

.footer-menu a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #ffa500;
}

/* Modals (Popups) */
.modal {
    display: none; /* Cacher les popups par défaut */
    position: fixed;
    z-index: 1; /* Assurer que la popup est au-dessus du contenu */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7); /* Fond sombre */
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    color: #333;
    padding: 30px;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 25px;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 600px) {
    .countdown {
        font-size: 40px;
        padding: 15px;
    }

    .message {
        font-size: 18px;
    }

    .site-description {
        font-size: 16px;
    }

    .footer-menu a {
        font-size: 14px;
    }
}
