@charset "UTF-8";
@font-face {
  font-family: 'Satoshi-Variable';
  src: url('../fonts/Satoshi-Variable.ttf') format('truetype');
  font-weight: 300 900;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Gambarino-Regular';
  src: url('../fonts/Gambarino-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Satoshi-Variable';
}

main {
  width: 100%;
}

.section__subtitle {
  display: block;
  text-align: center;
  font-size: 28px;
  margin-top: 80px;
}

.section__title {
  display: block;
  text-align: center;
  font-size: 40px;
  color: #8DD385;
  margin-bottom: 50px;
}

@keyframes apparition {
  from {
    height: 0;
  }
  to {
    height: 80px;
  }
}

@keyframes apparition_text {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  margin-top: 80px;
  opacity: 0.6;
}

#banniere {
  position: relative;
}

#banniere div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  text-shadow: 0 4px black;
  font-family: 'Gambarino-Regular';
}

#banniere div h1 {
  font-size: 70px;
  color: #8DD385;
}

#banniere div h2 {
  font-size: 50px;
  color: #404b3e;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  background-color: #F6F8FF;
}

.nav-links {
  display: none;
}

.nav-links.mobile-menu {
  background-color: #F6F8FF;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  position: absolute;
  width: 100%;
  height: 80px;
  top: 80px;
  display: flex;
  justify-content: end;
  animation: 0.5s ease apparition;
}

.nav-links.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: end;
  list-style: none;
  margin-right: 20px;
  animation: 1s ease apparition_text;
}

.nav-links ul li, #reseaux a {
  font-size: 1.2em;
}

.nav-links ul li a, #reseaux a {
  font-size: x-large;
  color: black;
  font-family: 'Satoshi-Variable';
  font-weight: 500;
}

#reseaux a {
  display: none;
}

.navbar .nav-links ul li.active a {
  color: #8DD385;
  font-family: 'Satoshi-Variable';
  font-weight: 900;
}

.nav-links.mobile-menu {
  display: block;
}

.navbar .menu-hamburger {
  display: block;
  width: 35px;
  margin-right: 15px;
}

.navbar a {
  color: black;
  text-decoration: none;
}

.navbar .logo {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
}

.navbar .logo img {
  width: 150px;
}

.navbar #linkedin {
  width: 50px;
}

#presentation {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 80vw;
  margin-top: 30px;
}

#presentation p {
  font-size: 30px;
  margin-top: 30px;
}

#presentation p span {
  color: #8DD385;
}

#propos {
  margin-top: 100px;
  margin-bottom: 100px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
}

#presentation h1 {
  font-size: 50px;
}

#propos #rond {
  width: 350px;
  height: 350px;
  border-radius: 100%;
  border: 5px solid #8DD385;
  background-image: url("../images/088A9532-petit.jpg");
  background-size: cover;
  box-shadow: rgb(0, 0, 0) 0px 10px 60px -40px;
}

#propos a {
  text-decoration: none;
  width: 200px;
  height: 50px;
  color: #F6F8FF;
  background-color: #8DD385;
  margin-top: 50px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  font-weight: 700;
}

/*Softskills*/

.skills__container{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 2rem;
  column-gap: 10rem;
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: rgba(0, 0, 0, 0.05);
}

.skills__content{
  width: 350px;
  padding: 30px;
  background-color: white;
  border-radius: 25px;
  box-shadow: rgb(0, 0, 0) 0px 10px 50px -40px;
}

.skills__title{
  font-size: 22px;
  font-weight: 700;
  color: #8DD385;
  text-align: center;
  margin-bottom: 1.5rem;
}

.skills__box{
  display: flex;
  justify-content: center;
  column-gap: 2.5rem;
}

.skills__group{
  display: grid;
  align-content: flex-start;
  row-gap: 1rem;
}

.skills__data{
  display: flex;
  column-gap: .5rem;
}

.skills .skills__icon{
  font-size: 1.5rem;
  color: #8DD385;
}

.skills__name{
  font-weight: 500;
}

.services__modal-description {
  font-size: 20px;
  line-height: 1.4;
  margin-top: 25px;
  margin-bottom: 25px;
}

.services__modal-item{
  display: flex;
  align-items: flex-end;
  margin-bottom: 25px;
}

.services__modal-icon{
  font-size: 1.5rem;
  color: #8DD385;
}

.services__modal-info{
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
}

/*Projets*/

#portfolio {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  background-color: rgba(0, 0, 0, 0.05);
}

#portfolio .projet {
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-radius: 25px;
  margin: 50px;
  padding: 25px;
  background-color: #F6F8FF;
  color: black;
  max-width: 400px;
  box-shadow: rgb(0, 0, 0) 0px 10px 50px -40px;
}

#portfolio .projet img {
  width: 100%;
  border-radius: 20px;
}

#portfolio h1 {
  margin-top: 10px;
  color: #8DD385;
  text-align: center;
}

.site_button {
  text-decoration: none;
  text-align: center;
  padding: 12.5px 30px;
  border: 0;
  border-radius: 100px;
  background-color: #8DD385;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.site_button:hover {
  background-color: #98db92;
  box-shadow: 0 0 20px #8DD38550;
  transform: scale(1.05);
}

.site_button:active {
  background-color: #8DD385;
  transition: all 0.25s;
  -webkit-transition: all 0.25s;
  box-shadow: none;
  transform: scale(0.98);
}

/*Formulaire Contact*/

#contact {
  width: 90vw;
  max-width: 500px;
  box-shadow: 2px 2px 10px black;
  padding: 20px;
  border-radius: 10px;
  margin: 0 auto;
  margin-top: 60px;
  margin-bottom: 60px;
  font-family: "Roboto", serif;
  font-weight: 700;
  font-size: large;
}

#contact p {
  text-align: center;
}
 
#contact .champ_txt {
  width: 100%;
  height: 50px;
  border: 2px solid black;
  box-sizing: border-box;
  padding: 10px;
  margin-bottom: 10px;
  box-shadow: 3px 4px 0px 1px #8DD385;
  border-radius: 5px;
}

#message {
  width: 100%;
  height: 100px;
  border: 2px solid black;
  box-sizing: border-box;
  padding: 10px;
  margin-bottom: 10px;
  box-shadow: 3px 4px 0px 1px #8DD385;
  border-radius: 5px;
}

#contact .champ_txt:focus, #message:focus, #envoyer:focus {
  transform: translateY(4px);
  box-shadow: 1px 2px 0px 0px #8DD385;
  outline: none;
}

#divprenom {
  margin-right: 20px;
}

#en-tete div {
  width: 100%;
}

.label {
  display: block;
  margin-bottom: 5px;
  margin-top: 5px;
}

#email, #message, #envoyer {
  width: 100%;
}

#en-tete {
  display: flex;
}

#envoyer {
  background-color: black;
  color: white;
}

#oblig {
  margin: 7px;
}

#contact span {
  color: #8DD385;
}

#vert, #rouge {
  margin: 2px;
}

#vert {
  color: #00DA5A;
}

#rouge {
  color: red;
}

/*Footer*/

.footer {
  margin-top: 50px;
  padding: 40px 20px;
  text-align: center;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.footer-title {
  font-weight: bold;
  font-size: 32px;
  color: #333;
  margin-bottom: 10px;
}

.footer-subtitle {
  font-style: italic;
  color: #555;
  margin-bottom: 30px;
}

.home__social-link{
  width: max-content;
  background-color: #8DD385;
  color: white;
  padding: .25rem;
  border-radius: .25rem;
  display: flex;
  font-size: 25px;
  text-decoration: none;
}

.footer-divider {
  margin: 40px 0;
  border: none;
  border-top: 1px solid #ddd;
}

.footer-copy {
  color: #777;
  font-size: 14px;
}

/*Présentation*/

.presentation {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}

.exemple {
  width: 80vw;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding: 25px;
  background-color: #0056b3;
}

.exemple img {
  width: 90%;
}

.exemple div {
  width: 450px;
}

.plus_projet {
  margin: auto;
  margin-top: 150px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 80vw;
}

.titre_projet {
  text-align: center;
  font-size: 50px;
  color: #8DD385;
}

.description_projet {
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.under_gras {
  text-decoration: underline;
  font-weight: 600;
  color: #8DD385;
}

.plus_projet .images_projet{
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  margin-top: 20px;
  margin-bottom: 20px;
}

.plus_projet img {
  max-width: 600px;
}

.plus_projet .img_plus {
  margin-top: 20px;
  margin-bottom: 20px;
}

.plus_projet p {
  font-size: 20px;
}

.plus_projet ul {
  padding: 20px;
}

.plus_projet ul li {
  font-weight: 400;
  font-size: 20px;
}

.plus_projet a {
  background-color: #8DD385;
  padding: 15px 20px;
  border-radius: 20px;
  text-decoration: none;
  color: black;
  font-size: 20px;
  font-weight: 600;
}



/*Version ordinateur*/

@media screen and (min-width: 576px) {

  .nav-links, #reseaux{
    display: flex;
    align-items: center;
  }

  .nav-links ul {
    display: flex;
    list-style: none;
  }
  
  .nav-links ul li, #reseaux a {
    margin-right: 15px;
    margin-left: 15px;
  }
  
  .navbar .menu-hamburger {
    display: none;
  }

  .nav-links ul li a, #reseaux a {
    display: block;
  }

  .navbar .logo span {
    display: block;
    margin-right: 50px;
  }
}