/* COULEURS */
:root {
  --roseFonce: rgba(138, 39, 64, 1);
  --roseClair: rgba(180, 101, 101, 1);
  --bleuClair: rgba(243, 248, 255, 1);
}


/* PAGE */

html, body {
  font-family: "Montserrat Regular", sans-serif;
  background-color: var(--bleuClair);
  scroll-behavior: smooth;
}

.strong_regular {
  font-family: "Montserrat Regular", sans-serif;
}

.strong_semibold {
  font-family: "Montserrat SemiBold", sans-serif;
}

.arrow-up {
  z-index: 1;
  fill: var(--roseFonce);
  right: 4%;
  bottom: 4%;
}


/******************************* ORDINATEUR *******************************/

/*NAVBAR*/

.navbar{
  width: 58vw;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 9vh;
  transition: .3s all;
}

.navbar_element{
  color: var(--roseClair);
  font-size: 2vh;
  background: linear-gradient(to top, var(--roseClair) 0%, var(--roseClair) 0.1vh, transparent 0) no-repeat;
  background-size: 0 100%;
  transition: background-size 0.3s;
}

.navbar_element:hover{
  color: var(--roseClair);
  text-decoration: none;
  background-size: 100% 100%;
}

.menu, .menu_navbar {
  display: none;
}


/*HEADER*/

#header{
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.header_txt {
  display: flex;
  flex-direction: column;
  padding-top: 20vh;
  padding-left: 5vw;
}

.header_title{
  font-size: 6vw;
  color: var(--roseFonce);
  font-family: "Montserrat SemiBold", sans-serif;
}

.header_subtitle {
  font-size: 1.9vw;
  color: var(--roseClair);
  font-family: "Montserrat ExtraLight", sans-serif;
  margin-top: -1vh;
}

.button{
  color: var(--bleuClair);
  background-color: var(--roseFonce);
  font-size: 1.3vw;
  padding: 1rem 1rem;
  margin-top: 4vh;
  display: inline-flex;
  justify-content: center;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  border: none;
  cursor: pointer;
}

.button:hover{
  text-decoration: none;
  color: var(--roseFonce);
  background-color: var(--bleuClair);
  border: 1px solid var(--roseFonce);
  box-shadow: none;
}

#button_mail{
  width: 23vw;
}

.header_background {
  z-index: 3;
  background-color: var(--roseFonce);
  height: 100vh;
  width: 35vw;
  right: 0;
  position: absolute;
}

.header_photo {
  z-index: 5;
  height: 65vh;
  position: absolute;
  bottom: 17vh;
  right: 9vw;
}

.header_style {
  z-index: 4;
  height: 65vh;
  width: 43vh;
  border: 3px solid var(--roseClair);
  position: absolute;
  bottom: 23vh;
  right: 12vw;
}

.links_icon {
  display: flex;
  align-items: center;
  z-index: 6;
  position: absolute;
  bottom: 3vh;
  right: 2vw;
}

.links_icon_li {
  margin: 10px;
}

.links_icon_svg {
  width: 40px;
}


/*MAIN*/

.section{
  padding: 10vh 5vw;
}

.section_title{
  font-size: 3vw;
  font-family: "Montserrat SemiBold", sans-serif;
  text-transform: uppercase;
  color: var(--bleuClair);
  background-color: var(--roseFonce);
  text-align: center;
  width: 40vw;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section_title::before {
  content: "";
  border: solid 2px var(--roseFonce);
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.section_title_reverse{
  font-size: 3vw;
  font-family: "Montserrat SemiBold", sans-serif;
  text-transform: uppercase;
  color: var(--bleuClair);
  background-color: var(--roseClair);
  text-align: center;
  width: 40vw;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section_title_reverse::before {
  content: "";
  border: solid 2px var(--roseClair);
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.links {
  color: var(--bleuClair);
  background: linear-gradient(to top, var(--bleuClair) 0%, var(--bleuClair) 0.1vh, transparent 0) no-repeat;
  background-size: 0 100%;
  transition: background-size 0.3s;
}

.links:hover {
  color: var(--bleuClair);
  text-decoration: none;
  background-size: 100% 100%;
}

.links_mentionslegales {
  color: var(--roseFonce);
  background: linear-gradient(to top, var(--roseFonce) 0%, var(--roseFonce) 0.1vh, transparent 0) no-repeat;
  background-size: 0 100%;
  transition: background-size 0.3s;
}

.links_mentionslegales:hover {
  color: var(--roseFonce);
  text-decoration: none;
  background-size: 100% 100%;
}


/* QUI SUIS-JE ? */

#elea {
  background-color: var(--roseFonce);
}

.description {
  padding: 5vh 10vw;
  font-size: 1.5vw;
  text-align: justify;
  color: var(--bleuClair);
}


/*SERVICES*/

.services_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3vh;
}

.services_items {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  height: 350px;
  width: 350px;
  padding: 6vh 1vw;
  margin: 4vh 2vw;
  background-color: white;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);
  transition: 0.3s;
}

.services_items:hover{
  transform: translateY(-10px);
}

.services_title {
  color: var(--roseFonce);
  font-size: 2rem;
  text-transform: uppercase;
}

.services_description {
  color: var(--roseClair);
  font-size: 1.5rem;
  text-align: center;
}

.services_prix {
  color: var(--roseFonce);
  font-size: 2.5rem;
  text-align: center;
  font-family: "Montserrat Black", sans-serif;
}


/*CONTACT*/

#contact {
  background-color: var(--roseFonce);
}

.contact_p {
  font-size: 2vw;
  color: var(--bleuClair);
  display: flex;
  justify-content: center;
  padding: 5vh 0 2vh;
}

.contact_ul {
  display: flex;
  flex-direction: column;
  margin: 0 30vw;
}

.contact_li {
  display: flex;
  align-items: center;
  margin: 1.5vh 0;
  font-size: 1.2vw;
}

.contact_icon {
  width: 40px;
  margin-right: 2vw;
}


/*FOOTER*/

.footer{
  font-size: 2vh;
  color: var(--roseFonce);
  background-color: var(--bleuClair);
  height: 7vh;
  padding: 2vh 0;
  display: flex;
  justify-content: center;
}



/******************************* MOBILE *******************************/

@media screen and (max-width:1000px)
{

  /*HEADER*/

  .navbar {
    display: none;
  }

  .menu {
    stroke: var(--roseFonce);
    cursor: pointer;
    display: flex;
    position: fixed;
    left: 3%;
    top: 3%;
  }

  .menu_navbar{
    z-index: 7;
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: var(--roseFonce);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    transform: translateX(-100%);
    transition: .3s all;
  }

  .menu_navbar_active {
    transform: translateX(0%);
    transition: .3s all;
  }

  .menu_navbar_element{
    color: var(--bleuClair);
    font-size: 3vh;
    background: linear-gradient(to top, white 0%, white 0.1vh, transparent 0) no-repeat;
    background-size: 0 100%;
    transition: background-size 0.3s;
  }

  .menu_navbar_element:hover{
    color: var(--bleuClair);
    text-decoration: none;
    background: linear-gradient(to top, white 0%, white 0.1vh, transparent 0) no-repeat;
    background-size: 100% 100%;
  }

  .menu_cross{
    cursor: pointer;
    fill: var(--bleuClair);
  }

  .header_txt {
    padding: 12vh 8vw 0;
  }

  .header_title{
    font-size: 10vw;
  }

  .header_subtitle{
    font-size: 5vw;
  }

  .button {
    font-size: 4vw;
    padding: 0.5rem 1rem;
    margin-top: 1vh;
  }

  #button_mail{
    width: 70vw;
  }

  .header_background {
    height: 40vh;
    width: 100vw;
    bottom: 0;
  }

  .header_style {
    height: 46vh;
    width: 30vh;
    bottom: 18vh;
    right: 28vw;
  }

  .header_photo {
    height: 45vh;
    bottom: 14vh;
    right: 18vw;
  }

  .project_links {
    right: 10vw;
  }


  /*MAIN*/

  .section {
    padding: 5vh 5vw;
  }

  .section_title{
    font-size: 6vw;
    width: 75vw;
    padding: 0.7vh 0;
  }

  .section_title_reverse{
    font-size: 6vw;
    width: 75vw;
    padding: 0.7vh 0;
  }


  /* QUI SUIS-JE ? */

  .description {
    font-size: 3.5vw;
    padding: 5vh 5vw 2vh;
  }

  /*SERVICES*/

  .services_items {
    height: 300px;
    width: 300px;
    padding: 6vh 5vw;
  }


  /*CONTACT*/

  .contact_p {
    font-size: 3.5vw;
  }

  .contact_ul {
    margin: 0 20vw;
  }

  .contact_li {
    font-size: 2.5vw;
  }

  .contact_icon {
    width: 30px;
  }
}
