/* style.css */
@font-face {
    font-family: poppins;
    src: url('../assets/font/Poppins-Black.ttf');
}
/* Style global */
body {
    font-family: Arial, sans-serif;
    background-color: rgb(24 26 26);
    margin: 0;
    padding: 0;
}

/* Style du Header */
header {
    background-color: rgb(30, 33, 34);
    display: flex;
    justify-content: center;
}

header a, footer a{
    text-decoration: none;
    color: rgb(245, 245, 245); /* Blanc cassé */
    transition: 0.5s;
}

header a:hover{
    color: rgb(221, 160, 221);
    transition: 0.3s;
}

header h1 {
    margin: 0;
    font-family: poppins;
    font-style: italic;
    color: rgb(221, 160, 221); /* Lavande douce */
}

header .nav{
    display: flex;
    align-items: center;
}

header .nav .signupcolor {
    background-color:rgb(221, 160, 221);
    padding: 8px 12px 8px 12px;
    border-radius: 25px;
    color: black;
    margin-right: 13px;
}

header .nav .signupcolor:hover {
    background-color:rgb(184, 108, 184);
    transition: 0.2s;
}

header .ToutElementHeader{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    margin: 15px;
}

.profil-img {
    width: 30px;
    height: 30px;
    border-radius: 34%;
    object-fit: cover;
    border: 1px solid #fff;
    cursor: pointer;
}


main{
    display: flex;
    justify-content: center;
}

.blockUnIndex{
    width: 80%;
}


/* Style du Footer */
footer {
    background-color: rgb(30, 33, 34);
    color: rgb(232, 230, 227);
    text-align: center;
    padding: 10px 0;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

footer p {
    margin: 0;
    text-align: left;
}

footer h1{
    font-size: 18px;
}

footer section.ElementFooter{
    width: 80%;
    display: flex;
    justify-content: space-between;
}

footer .bloc1{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 25%;
}

footer .bloc1 h1 {
    font-family: poppins;
    font-style: italic;
    color: rgb(221, 160, 221); /* Lavande douce */
}

footer .bloc2, footer .bloc3 {
    display: flex;
    flex-direction: column;
    width: 25%;
}

footer .bloc3{
    display: flex;
    align-items: flex-end;
}

div.formulaire label{
    color: rgb(232, 230, 227);
}


.blockunevideo{
    width: 35%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.video-controls{
    margin: 15px;
    display: flex;
    width: 90%;
    justify-content: space-around;
}

.boutonPause, .unmuteBtn{
    padding: 7px 15px;
    background-color:rgba(221, 160, 221, 0.894);
    color: rgb(232, 230, 227);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.boutonPause:hover, .unmuteBtn:hover{
    transition: 0.2s;
    background-color:rgb(184, 108, 184);
    color: rgb(232, 230, 227);
}

.video{
    width: 100%;
}

.BlockMainIndex{
    width: 80%;
}


.formulaire{
    width: 25%;
    background-color: rgb(30, 33, 34);
    border-radius: 15px;
    text-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 55px;
}

.formulaire h1{
    text-align: center;
    font-size: 20px;
    color: rgb(245, 245, 245);
}

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

.formulaire article{
    width: 80%;
    padding: 11px 0px;
}

.formulaire input{
    width: 100%;
}

.formulairePtDeux{
    width: 85%; 
}

.formulaire input.BoutonForm{
    width: 25%;
}