/* typos */
@font-face{
    font-family: 'SainteCroix-Poster';
    src: url('fonts/SainteCroix-Poster.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face{
    font-family: 'SainteCroix-Regular';
    src: url('fonts/SainteCroix-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

/* style du site */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'SainteCroix-Regular', sans-serif;
}

body{
    color: #333333;
    background-color: #ffffff;
    overflow-x: hidden;
}

html{
    scroll-behavior: smooth;
}

/* header */
header{
    background: linear-gradient(to bottom, #a1a1a1, #ffffff);
    padding: 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo img{
    width: 150px;
}

.header-droite{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-right: 75px;
}

.header-droite li{
    list-style: none;
}

.header-droite a{
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}

.header-droite a:hover{
    color: #016DFF;
}

.instagram-link i{
    font-size: 25px;
    color: #ffffff;
}

.instagram-link i:hover{
    color: #016DFF;
}

/* big mac */
.menu-burger{
    display: none;
    font-size: 29px;
    color: #ffffff;
    cursor: pointer;
    position: absolute;
    right: 40px;
    top: 20px;
    z-index: 1100;
}

/* cta et titre */
.cta{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    text-align: center;
    padding: 20px;
}

.cta h1{
    color: #016DFF;
    font-size: 64px;
    margin-bottom: 20px;
    font-family: 'SainteCroix-Poster', sans-serif;
}

.cta .bouton{
    display: inline-block;
    margin-top: 20px;
    background-color: #ffffff;
    color: #016DFF;
    border: 2px solid #016DFF;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta .bouton:hover{
    background-color: #014aa1;
    color: #ffffff;
    border: none;
}

/* vidéo seule */
.video{
    margin: 40px auto;
    max-width: 800px;
    text-align: center;
}

/* description */
.texte{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40vh;
    text-align: center;
}

.texte p{
    font-size: 19px;
    line-height: 1.5;
    max-width: 800px;
}

/* newsletter */
.newsletter{
    background: linear-gradient(90deg, #016DFF, #004A9F);
    padding: 50px 20px;
    text-align: center;
    color: #ffffff;
}

.newsletter h2{
    font-size: 32px;
    margin-bottom: 15px;
}

.newsletter p{
    font-size: 16px;
    margin-bottom: 30px;
}

.newsletter form{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.newsletter input{
    padding: 15px;
    max-width: 600px;
    width: 100%;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    outline: none;
}

.newsletter button{
    background-color: #ffffff;
    color: #016DFF;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.newsletter button:hover{
    background-color: #014aa1;
    color: #ffffff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* footer */
footer{
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 20px;
}

/* téléphone */
@media (max-width: 768px){
    /* header */
    header{
        padding: 20px 30px;
        flex-wrap: wrap;
    }

    /* big mac */
    .menu-burger{
        display: block;
        position: absolute;
        right: 10px;
        top: 10px;
    }

    .header-droite{
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: #016DFF;
        padding: 20px;
        text-align: center;
        z-index: 999;
        width: 100%;
    }

    .menu-ouvert .header-droite{
        display: flex;
    }

    .header-droite li{
        margin: 10px 0;
    }

    .header-droite a{
        font-size: 16px;
        color: #ffffff;
        text-decoration: none;
    }

    .header-droite a:hover{
        color: #000000;
    }

    /* vidéo */
    .video{
        margin: 20px auto 10px;
    }

    .video iframe{
        height: 250px;
    }

    /* description */
    .texte{
        padding: 0 10px;
        min-height: 30vh;
    }

    .texte p{
        font-size: 1rem;
        line-height: 1.4;
    }

    /* newsletter */
    .newsletter{
        padding: 30px 15px;
    }

    .newsletter h2{
        font-size: 24px;
    }

    .newsletter p{
        font-size: 14.4px;
        margin-bottom: 20px;
    }

    .newsletter input{
        padding: 12px;
        font-size: 14.4px;
    }

    .newsletter button{
        font-size: 14.4px;
        padding: 10px 20px;
    }
}