@font-face {
    font-family: 'Orpheus Pro';
    src: url('fonts/OrpheusPro-Bold.woff2') format('woff2'),
        url('fonts/OrpheusPro-Bold.woff') format('woff'),
        url('fonts/OrpheusPro-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('fonts/MyriadPro-Regular.woff2') format('woff2'),
        url('fonts/MyriadPro-Regular.woff') format('woff'),
        url('fonts/MyriadPro-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Bold';
    src: url('fonts/Gotham-Bold.woff2') format('woff2'),
        url('fonts/Gotham-Bold.woff') format('woff'),
        url('fonts/Gotham-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Orpheus Pro';
    src: url('fonts/OrpheusPro.woff2') format('woff2'),
        url('fonts/OrpheusPro.woff') format('woff'),
        url('fonts/OrpheusPro.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('fonts/Gotham-Medium.woff2') format('woff2'),
        url('fonts/Gotham-Medium.woff') format('woff'),
        url('fonts/Gotham-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Book';
    src: url('fonts/Gotham-Book.woff2') format('woff2'),
        url('fonts/Gotham-Book.woff') format('woff'),
        url('fonts/Gotham-Book.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


body {
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: hidden;
}

.left-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 50vw;
    padding: 20px 100px;
    box-sizing: border-box;
    background-color: #C6D4CC;
}

.brand-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 5px;
}

.brand-header p {
    font-family: 'Gotham Book';
    text-align: center;
    font-size: 16px;
}

.brand-header span {
    font-family: 'Gotham';
}

.logo {
    width: 250px;
    height: auto;
}

.mobile-img {
    display: none;
    visibility: hidden;
}

.content-form {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    row-gap: 30px;
}

.opening-soon {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
}

.opening-soon h1 {
    font-family: 'Orpheus Pro';
    text-align: center;
    font-size: 60px;
    margin-bottom: 0;
    margin-top: 0;
}

.opening-soon h2 {
    font-family: 'Orpheus Pro';
    text-align: center;
    font-size: 40px;
    margin-bottom: 0;
    margin-top: 0;
}

.opening-soon .subtitle {
    font-family: 'Gotham';
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
    margin-top: 0;
}

.form {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
}

.form p {
    font-family: 'Gotham Book';
    font-size: 14px;
    margin: 0;
    text-align: center;
}

#subscription-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.form-line {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 100%;
}

.form-input:first-child {
    flex: 4; /* 30% pour le prénom */
}

.form-input:last-child {
    flex: 6; /* 70% pour l'email */
}

.form-input input {
    box-sizing: border-box;
    padding: 5px 10px;
    border: 1px solid #92A49A;
    width: 100%;
    height: 40px;
    border-radius: 0px;
}

input::placeholder {
    font-family: 'Gotham Book';
    color: #92A49A;
    font-size: 14px;
    font-weight: 300;
}

button {
    background-color: #92A49A;
    color: white;
    border: 1px solid;
    border-color: #92A49A;
    padding: 12px;
    text-transform: uppercase;
    font-family: 'Gotham';
    font-size: 14px;
    cursor: pointer;
}

button:hover {
    background-color: white;
    color: #92A49A;
}

.form-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    align-self: baseline;
    padding: 0;
}

.form-checkbox label {
    font-family: 'Gotham Book';
    font-size: 12px;
    color: black;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    border-radius: 0px;
}

.socials {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.socials p{
    font-family: 'Gotham';
    font-size: 14px;
    font-weight: 500;
}

.social-icons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 90%;
}

.social-icons i{
    font-size: 30px;
}

a {
    text-decoration: none; /* Enlève le soulignement */
    color: inherit; /* Garde la couleur de l'icône */
}

a:hover {
    cursor: pointer;
}

.right-col {
    width: 50vw;
}

.brand-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

@media screen and (max-width: 768px) {
    /* Styles mobile */
    body {
        min-height: 100vh;
        width: 100vw;
        overflow-x: hidden;
        overflow-y: auto;
        height: auto;
        padding: 0;
    }

    .left-col {
        width: 100vw;
        box-sizing: unset;
        padding: 20px 0px;
        justify-content: flex-start;
        gap: 30px;
    }

    .brand-header {
        padding: 0 20px;
    }

    .brand-header p {
        font-size: 14px;
    }

    .mobile-img {
        display: unset;
        visibility: unset;
        height: 150px;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }  

    .content-form {
        padding: 0 20px;
    }

    .opening-soon h1 {
        font-size: 45px;
    }

    .form-input:first-child {
        flex: 5; /* 50% pour le prénom */
    }

    .form-input:last-child {
        flex: 5; /* 50% pour l'email */
    }

    .form-checkbox {
        align-items: center;
    }

    .form-checkbox input[type="checkbox"] {
        width: 20px;
        height: 20px;
    }

    .right-col {
        display: none;
    }
}


@media screen and (max-width: 1024px) {
    /* Styles tablets */
    body {
        min-height: 100vh;
        width: 100vw;
        overflow-x: hidden;
        overflow-y: auto;
        height: auto;
        padding: 0;
    }

    .left-col {
        width: 100vw;
        box-sizing: unset;
        padding: 20px 0px;
        gap: 25px;
    }

    .brand-header {
        padding: 0 20px;
    }

    .mobile-img {
        display: unset;
        visibility: unset;
        height: 150px;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }

    .content-form {
        padding: 0 20px;
    }

    .form-input:first-child {
        flex: 5; /* 50% pour le prénom */
    }

    .form-input:last-child {
        flex: 5; /* 50% pour l'email */
    }

    .form-checkbox {
        align-items: center;
    }

    .form-checkbox input[type="checkbox"] {
        width: 20px;
        height: 20px;
    }

    .right-col {
        display: none;
    }
}


@media screen and (max-width: 1280px) {
    /* Styles desktop */
}

