@import './mainHeader.css';

.container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(#e8ebf1 20%, rgb(68, 68, 222), rgb(70, 215, 157));
}
.contact-cartes{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 13rem;
}
.contact-carte-item{
    width: 270px;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: #fff;
    border-radius: 20px;
    padding: 10px;
    transition: all 0.4s;
}
.contact-carte-item:hover{
    transform: scale(1.1);
}

.title-carte{
    font-size: 19px;
    text-transform: uppercase;
}

.email-text,
.numero-text,
.adresse-paragraphe{
    text-align: center;
    font-size: 17px;
    color: lightblue;
}

.formulaire{
    width: 80%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    align-items: center;
    gap: 10px;
    padding: 15px;
    font-size: 20px;
}
.form{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #fff;
}
.form-message{
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.form-message-item{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.form-message-item input{
    background: none !important;
    border: none;
    border-bottom: 2px solid #fff;
    padding: 10px 8px;
    outline: none;
    color: #fff;
    font-size: 16px;
}
textarea{
    background: none;
    border: none;
    border-bottom: 2px solid #fff;
    padding: 10px 8px;
    outline: none;
    resize: none;
    color: #fff;
    font-size: 16px;
}
::placeholder{
    color: rgba(205, 205, 205, 0.645);
}
.button{
    width: 100%;

}
.button button{
    width: 100%;
    padding: 15px;
    border-radius: 20px;
    border: none;
    font-size: 17px;
    letter-spacing: 4px;
    cursor: pointer;
    transition: all 0.4s;
}
.button button:hover{
    background: rgb(10, 196, 112)
}

.form-info{
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 10px;
    text-align: center;
}
.form-info span{
    font-size: 18px;
    text-align: justify;
    font-weight: bold;
    font-style: italic;
}
.info-text{
    font-size: smaller;
}

.link-reseaux{
    display: flex;
    width: 70%;
    gap: 25px;
    align-items: center;
}
.link-reseaux svg{
    width: 60px;
    padding: 5px;
}
.linkedin{
    color: #066cd2;
    transition: .3s;
}
.github{
    color: #1a1d21;
    transition: .3s;
}
.youtube{
    color: #f20000;
    transition: .3s;
}

@media (max-width: 950px) {
    .formulaire{
        display:flex;
        flex-direction: column-reverse;
    }
    .link-reseaux{
        display: flex;
        width: 100%;
        gap: 10px;
        align-items: center;
        justify-content: center;
    }
    .link-reseaux svg{
        width: 50px;
        padding: 5px;
    }
}