:root{
    --couleur-violet:#80276B;
    --couleur-violet-clair:#fcd4f2;
    --couleur-jaune:#FFA200;
    --couleur-jaune-clair:#ffeed2;
    --police-texte:'Roboto',sans-serif;
    --police-titre:"Labrada","Gloock",'Raleway',"Permanent Marker", "Roboto", sans-serif;
}

@font-face {
  font-family: "Roboto";
  src: url('../fonts/Roboto-Regular.ttf');
  font-display: swap
}

@font-face {
  font-family: "Gloock";
  src: url('../fonts/Gloock-Regular.ttf');
  font-display: swap
}

@font-face {
  font-family: "Labrada";
  src: url('../fonts/Labrada-Regular.ttf');
  font-display: swap
}

body 
{
    margin: 0;
}

/* Style du header */
header {
    font-family: var(--police-titre);
    position: fixed;
    width: 100%;
    margin-top: 0%;
    background-color: #fff;
    height: 80px;
    display: flex;
    flex-direction: row;
    justify-content:center;
    align-items: center;
    padding: 0 50px;
    padding-bottom: 10px;
    padding-top: 10px;
    z-index: 1000000;
  }

header nav{
  margin: auto;
  width: 60%;
  align-items: center;
  justify-content: center;
  text-align:center;
}
  
  /* Style des liens dans le header */
  header a {
    text-decoration: none;
    color: #333;
    font-size: 1.2vw;
    font-weight: bold;
    margin:auto;
    margin-left: 20px;
    margin-right: 20px;
    padding: 10px;
    transition: all .2s ease;
  }
  
  /* Style du lien actif dans le header */
  header a.active {
    color: var(--couleur-violet);
    border-bottom: 1px solid var(--couleur-violet);
  }

  header a:hover{
    color: white;
    background-color: var(--couleur-jaune);
    transition: all .2s ease;
  }

 #logo_menu_nav
  {
    height: 100%;
  }

  .ligne{
    margin-left: 12.5%;
    margin-right: 12.5%;
    border-bottom: solid 1px var(--couleur-violet);
  }
  
  /* Style des titres de section */
  h1 {
    font-size: 4em;
    color: var(--couleur-violet);
    font-family: var(--police-titre);
    /* text-shadow: 5px 5px var(--couleur-violet); */
  }

  h2 {
    font-size: 2.5em;
    color: var(--couleur-jaune);
    font-family: var(--police-titre);
    /* text-shadow: 5px 5px var(--couleur-violet); */
  }
  
  h3 {
    font-size: 1.5em;
    color: var(--couleur-violet);
    font-family: var(--police-titre);
    /* text-shadow: 5px 5px var(--couleur-violet); */
  }
  

  /* Style des paragraphes de texte */
  p {
    color: #666;
    font-size: 1em;
    line-height: 1.5;
    font-family: var(--police-texte);
  }
  
  /* Style des liens */
  a {
    font-size: 1em;
    color: #f3969a;
    text-decoration: none;
    font-weight: bold;
    font-family: var(--police-texte);
  }

  .bouton {
    background-color: var(--couleur-jaune);
color: #fff;
border-bottom: 1px solid var(--couleur-violet);
border-left: 1px solid var(--couleur-violet);
padding: 10px 20px;
font-size: 18px;
cursor: pointer;
box-shadow: -2px 2px var(--couleur-violet);
transition: all .2s ease;
  }

  .bouton:hover{
    background-color: var(--couleur-violet);
    transition: all .2s ease;
  }

footer{
  height: 25vh;
  width: 100%;
  padding-top: 3vh;
  background-color: var(--couleur-violet);
  display: flex;
  flex-direction: row;
  justify-content: center;
}

footer h3{
  color: white;
  margin-top: 0;
}

.footer_subsection{
  margin: auto;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer_subsection a{
  margin-left: 10%;
  margin-right: 10%;
}

.footer_subsection a .logo_contact_footer{
  height: 2em;
  filter: grayscale(100) contrast(0%) brightness(200%);
  transition: all .2s ease;
}

.footer_subsection a .logo_contact_footer:hover{
  filter: grayscale(0) contrast(100%);
  transition: all .2s ease;
}

@media screen and (max-width: 100vh) {
  header a {
    font-size: 2vw;
    margin: 0;
  }
}