@import url('https://fonts.googleapis.com/css2?family=Corinthia:wght@700&display=swap'); 
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');

html{
    scroll-behavior: smooth;
}

body{
    margin: 0;
    padding: 0;
    font-family: "Corinthia", sans-serif;
}

/* NAVIGATION */

nav{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-bottom: 5px solid #6f6f6f;
    overflow: hidden;
    position: fixed;
    width: 100%;
    background-color: #343131;
}

nav h1{
    color: #ffffff;
    font-family: "Corinthia", sans-serif;
    font-size: 20px;
}

nav .onglets{
    margin-top: -3px;
    margin-left: 400px;
}

nav .onglets a{
    text-decoration: none;
    color: #ffffff;
    margin-right: 10px;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 5px;
}

/* HEADER */

header{
    display:flex;
    flex-direction: column;
    align-items: center;
    background: url('image/black-1072366_1920.jpg');
    background-size: cover;
    color: #fff;
    padding: 0;
    font-size: 20px;
}

header h1{
    font-family: "Corinthia", sans-serif;
    font-size: 45px;
    margin-top: 50px;
}

header h4,
header h5{
    font-family: "Caveat", sans-serif;
    font-size: 15px;
    text-align: center;
}

header h4{ margin-top: -20px; }
header h5{ margin-top: 10px; }

header button{
    cursor: pointer;
}

/* SECTIONS */

section h2{
    font-family: "Corinthia", sans-serif;
    font-size: 40px;
    text-align: center;
    margin-top: 30px;
}

.h2b{
    font-size: 40px;
    margin-top: 40px;
    border-bottom: 2px solid #000000;
    width: 30%;
    margin-left: 35%;
}

.pb{
    color: #393838;
    font-size: 29px;
    text-align: center;
    margin-top: 50px;
}

section p{
    font-size: 25px;
    text-align: center;
}

.main{
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* CARDS */

.main .content .card{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 70px;
}

.main .content .card .left{
    flex: 0 0 30%;
    padding: 20px;
    background-color: #3c3c3c;
    color: #fff;
    font-family: "Caveat", sans-serif;
}

.main .content .card .right{
    flex: 0 0 70%;
}

.main .content .card .right img{
    height: 400px;
    width: 280px;
    margin-top: 5px;
}

/* CONTACT */

footer{
    background: url('image/black-1072366_1920.jpg');
}

.contactp{
    color: #ffffff;
    font-size: 35px;
    text-align: center;
    margin-top: 50px;
}

.contacth2{
    border-bottom: 2px solid #ffffff;
    width: 50%;
    margin-left: 25%;
    color: #fff;
    margin-top: 73px;
}

/* FORMULAIRE */

form{
    margin: 50px auto;
    max-width: 900px;
}

input, textarea, button{
    width: 30%;
    padding: 10px;
    margin: 10px 30px;
    font-size: 1.2em;
    font-family: "Caveat", sans-serif;
    border-radius: 8px;
    border: none;
}

textarea{
    height: 100px;
}

button{
    font-size: 1.3em;
    background-color: #ffffff;
    color: #000000;
    cursor: pointer;
}

/* COPYRIGHT */

.copy{
    color: #fff;
    text-align: center;
    font-family: "Corinthia", sans-serif;
    font-size: 20px;
}

/* 🔥 FORCE TOUS LES LIENS DU FOOTER EN BLANC */

footer a,
footer a:visited,
footer a:active{
    color: #ffffff !important;
    text-decoration: none !important;
}

footer a:hover{
    color: #ffffff !important;
    text-decoration: underline !important;
}

/* RESEAUX */

.insta,
.tiktok{
    color: #fff;
    display: inline-block;
    font-size: 1.5em;
    margin: 0 10px;
}

.insta1,
.tiktok1{
    color: #fff;
    display: inline-block;
    font-size: 0.9em;
    margin: 0 5px;
}

/* RESPONSIVE */

@media screen and (max-width:680px){
    nav .onglets{
        margin-left: 0;
        margin-bottom: 20px;
    }
}















