/* Réinitialisation légère */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #333;
    background-color: #fafafa;
}

.background-logo {
     position: fixed;
    inset: 0;

    background-image: url("MaisonKimo-Logo.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40vh;

    opacity: 0.06;

    pointer-events: none;
    z-index: -1;
}

/* En-tête */
header {
    text-align: center;
    margin-top: 25vh;
}

h1 {
    font-size: 5rem;
    font-weight: 600;
}

.subtitle {
    margin-top: 10px;
    font-size: 2rem;
    color: #777;
}

/* Centre de page */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.construction {
    font-size: 1.4rem;
    font-style: italic;
    color: #555;
}

.bienvenue {
    max-width:600px;
    font-size:1.4rem;
    text-align:center;
}

/* Pied de page */
footer {
    text-align: center;
    padding: 20px;
    font-size: 0.95rem;
    color: #666;
}