/* =========================================================
   Coming Soon
   ========================================================= */

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
}

body {
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    color: #ffffff;
    background: #111111;
}

.coming-soon {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px 20px;

    text-align: center;

    background-image: url("bg.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
}

.content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 900px;

    margin-top: -10px;
}

.logo {
    display: inline-block;
    margin-bottom: 38px;
}

.logo img {
    display: block;
    width: auto;
    max-width: 220px;
    max-height: 110px;
}

h1 {
    margin: 0;

    font-size: clamp(42px, 5vw, 58px);
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: 8px;
}

p {
    margin: 28px auto 0;

    max-width: 650px;

    font-size: 17px;
    line-height: 1.8;
    font-weight: 400;

    color: rgba(255, 255, 255, 0.92);
}

.buttons {
    margin-top: 38px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 150px;
    min-height: 52px;
    padding: 12px 28px;

    border: 1px solid #F4A30C;    /*****************************/
    border-radius: 30px;

    background: #F4A30C; /*****************************/
    color: #ffffff;

    font-size: 16px;
    text-decoration: none;

    transition: all 0.25s ease;
}

.button:hover {
    background: transparent;
    color: #F4A30C;     /*****************************/
}

/* Réseaux sociaux à gauche */
.social {
    position: absolute;
    z-index: 3;

    left: 24px;
    top: 50%;

    display: flex;
    flex-direction: column;
    gap: 25px;

    transform: translateY(-50%);
}

.social a {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    min-width: 28px;

    color: #ffffff;
    text-decoration: none;

    font-size: 18px;
    font-weight: 700;

    transition: opacity 0.2s ease;
}

.social a:hover {
    opacity: 0.65;
}

/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 600px) {

    .coming-soon {
        padding: 30px 20px;
    }

    .content {
        margin-top: -5px;
    }

    .logo {
        margin-bottom: 30px;
    }

    .logo img {
        max-width: 170px;
        max-height: 90px;
    }

    h1 {
        font-size: 38px;
        letter-spacing: 5px;
    }

    p {
        margin-top: 22px;
        font-size: 15px;
        line-height: 1.7;
    }

    .buttons {
        margin-top: 30px;
    }

    .button {
        min-width: 140px;
        min-height: 48px;
        font-size: 15px;
    }

    .social {
        left: 14px;
        gap: 18px;
    }

    .social a {
        font-size: 15px;
    }
}
