main{
    font-family: 'satoshi';
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6.62rem;
    padding: 4.5rem 5rem 4rem 5rem;
}

@media(max-width:550px){
    main{
        padding: 2.31rem 2.63rem 2.31rem 2.5rem;
        gap: 4.44rem; 
    }
}

main{
    font-size: 16px
}

@media(max-width:850px){
    main{
        font-size: 15px
    }
}

@media(max-width:550px){
    main{
        font-size: 14px
    }
}

@media(max-width:350px){
    main{
        font-size: 13px
    }
}

@media(max-width:320px){
    main{
        font-size: 11px
    }
}

:root{
	--colorText:#B84D35;
    --colorBack: #FBECD8;
}


h1{
    color: #B84D35;
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    flex: 1 0 0;
    font-family: "Cabinet Grotesk Variable";
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2.8125rem;
    margin:0;
}


/*TEXTE CONTACT*/

#messageContainer{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
    max-width: 57.5625rem;
 
}

@media(max-width:550px){
    #messageContainer{
        gap: 2.5rem;
        width:100%;
    }
}


/*conteneur texte de contact*/

.contactTexte{
    display:flex;
    width: 100%;
}

.contactTexte p {
    font-family: "Satoshi Variable";
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.5rem;
    width: 100%;
}




/* FORMULAIRE */

/*CONTENEUR PARTIE DROITE*/
.conteneurFormulaire {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
    margin-left: 16.67%;
    width: 58.33%;
}

.conteneurFormulaire svg{
    align-self: center;
}

@media(max-width:850px){
    .conteneurFormulaire{
        margin-left: 0;
        width: 80%;
        align-self: center;
    }
}

@media(max-width:550px){
    .conteneurFormulaire{
        width:100%;
        gap:2rem;
    }
}

.group-label{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    align-self: stretch;
}

label{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
    font-family: "Cabinet Grotesk Variable";
    font-size: 2rem;
    font-style: normal;
    font-weight: 800;
    line-height: 2rem;
}

.textField{
    color: #000;
    font-family: "Satoshi Variable";
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
}

input, textarea{
    border-radius: 8px;
    border: 2px solid rgba(97, 59, 8, 0.30);
    background: #FFF;
    width: 647px;
    height: 2.5rem;
    display: flex;
    width: 100%;
    padding: 1rem;

    color: #0A0A0A;
    font-family: "Satoshi Variable";
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 2rem; /* 150% */
}

textarea{
    height: 28.3125rem;
}

@media(max-width: 550px){
    textarea{
        height: 14rem;
    }
}

.devis-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    align-self: stretch;
    
}






.envoi {
    display: flex;
    height: 3.125rem;
    padding: 0.5rem 1.25rem;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    align-self: stretch;
    border-radius: 1.46rem;
    background: #613B08;
    color: #FFF;
    font-family: "Satoshi Variable";
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.62rem; /* 129.601% */
    letter-spacing: 0.125rem;
    text-transform: uppercase;
    border: none;
    cursor:pointer;
}






@media (max-width: 750px) {
    #menu-toggle {
        display: block; /* Afficher le bouton hamburger */
    }
}







#messageFeedback {
            display: none; /* Masqué par défaut */
            padding: 15px;
            margin: 20px 0;
            border-radius: 5px;
            font-size: 16px;
            font-weight: bold;
            text-align: center;
            width: 500px;
        }
        /* Styles pour un message de succès */
#messageFeedback.success {
            background-color: #dff0d8;
            color: #3c763d;
            border: 1px solid #3c763d;
        }
        /* Styles pour un message d'erreur */
#messageFeedback.error {
            background-color: #f2dede;
            color: #a94442;
            border: 1px solid #a94442;
        }



.footer-nav a{
    color:#B84529;
}