/*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);
}


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

/*HEADER*/

.project_header {
  background-color: var(--roseFonce);
  height: 24vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back {
  width: 40px;
  left: 2%;
  top : 3%;
  position: absolute;
}

.project_title {
  color: var(--bleuClair);
  font-family: "Montserrat SemiBold", sans-serif;
  font-size: 50px;
}


/*MAIN*/

.project_section_description {
  display: flex;
  justify-content: space-around;
  padding: 8vh 5vw;
}

.project_img {
  border-radius: 10px;
  width: 400px;
  height: fit-content;
}

.project_details {
  width: 50vw;
}

.project_category {
  font-size: 15px;
  color: var(--bleuClair);
  background-color: var(--roseClair);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  padding: 0.4rem 1rem 0.2rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  margin-right: 10px;
}

.project_description {
  font-size: 15px;
  margin: 10px 0;
}

.project_description_strong {
  font-family: "Montserrat Medium", sans-serif;
  color: var(--roseFonce);
}

.project_description_li {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 5px;
}

.project_description_padding {
  padding-bottom: 5px;
}

.project_description_recommandation {
  color: inherit;
  font-style: italic;
  display: inline-block;
  padding-top: 5px;
  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;
}

.project_description_recommandation:hover {
  color: inherit;
  text-decoration: none;
  background-size: 100% 100%;
}

.project_links {
  display: flex;
  align-items: center;
}

.project_links_li {
  margin: 5px;
}

.project_links_svg {
  width: 30px;
}


/*GALERIE*/

.indication {
  font-size: 12px;
  font-style: italic;
  padding: 0 5vw;
}

.project_section_gallery {
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 6vh 5vw;
}

.project_gallery {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);
  transition: 0.3s;
}

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

#project_gallery_orta_plats{
  grid-column: 1;
  grid-row: 2/3;
  max-width: 100%;
}

#project_gallery_orta_trend{
  grid-column: 2;
  grid-row: 2/3;
  max-width: 100%;
}

#project_gallery_big_offre{
  grid-column: 1;
  grid-row: 1/3;
  max-width: 100%;
}

#project_gallery_big_burger{
  grid-column: 2;
  grid-row: 1/3;
  max-width: 100%;
}

#project_gallery_big_trend{
  grid-column: 3;
  grid-row :1/3;
  max-width: 100%;
}

#project_gallery_agence_personnelle{
  grid-column: 1;
  grid-row :1/3;
  max-width: 100%;
}

br {
  padding-bottom: 10px;
}


/*FOOTER*/

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

.links {
  color: inherit;
  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: inherit;
  text-decoration: none;
  background-size: 100% 100%;
}


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

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

  /*HEADER*/

  .project_header {
    height: 15vh;
  }

  .project_title {
    font-size: 30px;
  }

  .back {
    top: 1%;
    width: 30px;
  }

  /*DESCRIPTION*/

  .project_section_description {
    display: block;
    padding: 5vh 10vw 10vh;
  }

  .project_img {
    display: none;
  }

  .project_details {
    width: auto;
  }

  .project_links_li {
    margin: 3px;
  }

  /*GALERIE*/

  .indication {
    padding: 0 10vw;
  }

  .project_section_gallery {
    display: block;
    padding: 1vh 10vw 8vh;
  }

  .project_gallery {
    margin: 20px 0;
  }

  #project_gallery_maci_logo_1, #project_gallery_maci_logo_2, #project_gallery_maci_logo_3{
    margin: 20px 0;
  }

  #project_gallery_tudigo{
    display: block;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);
  }

  /*Galerie Shooting mannequin*/
  .project_gallery_mannequin{
    margin: 20px 0;
  }

}
