/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

body {
    background: #ffffff;
    color: #4a4a4a;
}

/* Layout principal */
.maintenance {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px;
    position: relative;
    overflow: hidden;
}

/* Zone texte */
.content {
    max-width: 60%;
    z-index: 2;
}

.logo {
    width: 120px;
    margin-bottom: 40px;
}

h1 {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #666;
}

.divider {
    width: 250px;
    height: 10px;
    background: #ff6a00;
    margin-bottom: 20px;
}

p {
    font-size: 25px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #999;
}

@media (max-width: 575.98px) {
    .logo {
        width: 60px;
        margin-bottom: 20px;
        float: left;
    }

    h1 {
        font-size: 30px;
        margin-top: 100px;
        text-align: left;
    }

    .divider {
        width: 200px;
        height: 5px;
        text-align: left;
        margin: 0px;
    }

    p {
        font-size: 18px;
        text-align: left;
    }
}

.thanks {
    margin-top: 20px;
    font-weight: 600;
}

/* Illustration */
.visual {
    max-width: 600px;
    z-index: 2;
}

.visual img {
    width: 100%;
    height: auto;
}

/* Vague décorative */
.wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .maintenance {
        flex-direction: column;
        padding: 40px;
        text-align: center;
    }

    .content {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .divider {
        margin: 20px auto;
    }
}
