:root {
    /* Couleurs */
    --titreEtBouton: #52735E;
    --ecriture:#383961;
    --bleuClair:#F9DC5C;
    --titreDeux:#ab4157;
    --fondSite:#F8F7F7;



    /* Polices */
    --font-ecriture: 'Roboto', verdana, sans-serif;
    --font-titre: 'verdana', sans-serif;

    /* Tailles */
    --miniature: 9px;
    --tresPetit: 12px;
    --petit: 14px;
    --normal: 16px;
    --normalPlus: 22px;
    --grand: 28px;
    --tresGrand: 45px;
    --tresTresGrand: 75px;
}

* {
    margin: 0;
    padding: 0;
    font-family: var(--font-ecriture);
    scroll-behavior: smooth;

}

html {
    scroll-padding-top: 40px;/* Permet de scroller jusqu'au titre en laissant un espace */
    line-height: 1.4;/* Better graphic style than the browser's */
}


/* Marges de sécurité de base */
body>*+* {
    margin-top: 130px;
    margin: 20px auto;
   /*  max-width: 160rem; */
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    
}
body{
    background-color: var(--fondSite);
}
/* Better line heights */

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.1;
    font-family: var(--font-titre);
    
}


hr {
    max-height: 0;
    line-height: 0;
    border: none;
    border-top: 2px solid var(--titreEtBouton);
    margin-top: 20px;
    margin-bottom: 10px;
}

h1 {
    text-align: left;
    font-size: var(--tresGrand);
    color:var(--titreEtBouton);
    margin-top: 150px;
    padding-top: 80px;
    padding-bottom: 50px;
}

h2 {
    text-align: left;
    font-size: var(--tresGrand);
    color:var(--titreDeux);
    padding-top: 70px;
    padding-bottom: 40px;
}

h3 {
    font-size: var(--grand);
    padding-bottom: 40px;
}

h4 {
    font-size: var(--normalPlus);
    padding-bottom: 30px;
}

p {
    font-size: var(--normalPlus);
    padding-bottom: 20px;
}

a {
    text-decoration: none;
    color:var(--ecriture);

}

a:hover {
    color: var(--titreDeux);
}


img {
    max-width: 100%;
}

.button {
    display: inline-block;
    border-radius: 35px;
    background-color: var(--titreEtBouton);
    border: none;
    text-align: center;
    font-size: 16px;
    padding: 10px;
    width: 180px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;

}

.button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
    color:var(--fondSite);

}

.button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -25px;
    transition: 0.5s;

}

.button:hover span {
    padding-right: 25px;


}

.button:hover span:after {
    opacity: 1;
    right: 0;
}
.premiereSection{
    margin-top:150px;
}
form{
    display: flex;
    flex-direction: column;
    gap:20px;
    width: 100%;
}
input, select, textarea{
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    overflow:hidden; 
    text-overflow:ellipsis; 
    white-space:nowrap;
}
.formulaireGroupe{
    display: flex;
    justify-content: space-between;
    gap:30px;
     flex-wrap: wrap;  
}
.formulaireGroupe .champ{
    display: flex;
    flex-direction: column;
    flex: 1 1 0;            /* prend la place dispo, peut rétrécir */
  min-width: 0; 
   
}
.formulaireGroupe > .boiteEcriture{
  flex: 0 0 100%;
}
.caseACocher{
    font-size: 12px;
}
.comFormulaire{
    font-size: var(--miniature);
    color:red;

}

.honeypot {
    display: none
}
@media (max-width:620px) {
    body>*+* {
        padding-left: 20px;
        padding-right: 20px;
    }
    .formulaireGroupe{
        flex-direction: column;
    }
    .formulaireGroupe .champ{
        max-width: 100%;
    }

}
@media (max-width:500px) {
h2 {
    font-size: var(--grand);
}


}