/* --- PAGE EN CONSTRUCTION --- */
.construction-container {
    /* Utilise une hauteur minimum pour pousser le footer vers le bas */
    min-height: 70vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
    /*padding-bottom: 40px;*/
}

.construction-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 1000px; /* Empêche le texte de s'étaler sur tout l'écran */
    width: 100%;        
    margin: 0 auto;
    animation: fadeIn 0.8s ease-in-out; /* Petite apparition en douceur */
}

/* Le conteneur du SVG */
.construction-visual {
    width: 100%;
    max-width: 800px; /* Taille maximale idéale de l'image sur PC */
    margin: 0 auto 10px;
}

/* On force le SVG ou l'image à prendre la taille du conteneur */
.construction-visual img, 
.construction-visual svg {
    width: 100%;
    height: auto;
    display: block;
    /*max-height: 60vh;  
     Optionnel : petite ombre portée pour le détacher du fond sombre */
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5)); 
    border-radius: 5%;
}

.construction-content h1 {
    font-size: 2.5rem;
    color: var(--text-main);
    line-height: 1.2;
}

.construction-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}


/* Petite animation bonus pour faire propre */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* Ajustements pour mobile */
@media (max-width: 768px) {
    .construction-content h1 {
        font-size: 2rem;
    }
    .construction-visual {
        /*max-width: 250px;  Image un peu plus petite sur téléphone */
    }
}
