/* --- Style général --- */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #e5e5e5;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* --- Contenu central --- */
.maintenance-container {
    padding: 40px 50px;
}

/* --- Titre en bleu --- */
.important {
    text-transform: uppercase;
    color: #257fc5;
    margin-bottom: 20px;
    font-size: min(12vw, 120px);
}

/* --- Texte --- */
p {
    color: #868686;
    margin-bottom: 30px;
}

/* --- Boutons --- */
/* Boutons côte à côte par défaut (déjà dans ton code) */
.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* --- Responsive : sur petit écran (<600px), on empile --- */
@media (max-width: 600px) {
    .buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .btn {
        width: 100%;
        max-width: 250px; /* optionnel pour limiter la largeur */
    }
}

.btn {
    text-decoration: none;
    font-size: 1rem;
    padding: 12px 25px;
    border-radius: 8px;
    background-color: #257fc5;
    color: white;
    width: 200px;
    transition: 0.2s ease;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn svg {
    flex-shrink: 0;
    color : white;
}

.btn:hover {
    background-color: #FFB600;
}