@charset "UTF-8";
body {
  background: black;
}

.bio_home {
  width: 15%;
  position: fixed;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8); /* Fond semi-transparent noir */
  color: white;
  font-size: 12px;
  margin: 0;
  padding: 0;
}

@media only screen and (max-width: 900px) {
  .bio_home {
    width: 75%;
    position: relative;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    margin-top: 10%;
  }
}
.bold {
  font-weight: bold;
}

.thin {
  font-weight: 100; /* Ajustez la valeur selon la finesse désirée */
}

.italic {
  font-style: italic;
}

nav {
  display: flex;
  flex-direction: row;
  justify-content: center; /* Centrer horizontalement */
  align-items: center; /* Centrer verticalement */
  width: 100%; /* Ajuster la largeur à 100% */
  gap: 20px;
}

button {
  color: white;
  background: black;
  border: none;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent; /* Définir la bordure par défaut */
  transition: border-bottom 1s ease, transform 1s ease; /* Ajouter une transition fluide à la bordure et à la mise à l'échelle */
  font-size: 15px;
}

button:hover {
  font-style: italic;
  transform: scale(1.5); /* Utiliser transform pour mettre à l'échelle l'élément */
  border-bottom: 2px solid white; /* Appliquer le border bottom au survol */
}

.nav-button {
  background: none; /* Si vous voulez un bouton transparent */
  border: none; /* Supprimez les bordures pour un look plus moderne */
  color: grey; /* Couleur par défaut du texte */
  cursor: pointer;
  font-size: 16px; /* Taille de police */
  padding: 10px 20px; /* Espacement autour du texte */
  transition: color 0.3s ease, text-shadow 0.3s ease; /* Animation douce */
}
.nav-button:hover {
  color: white; /* Change la couleur au survol */
}

.nav-button.active {
  color: white; /* Couleur du texte pour la section active */
  text-shadow: 0 0 10px white, 0 0 20px white; /* Effet de brillance */
}

.projet-content {
  display: flex;
  flex-direction: column;
  float: right;
  text-align: end;
  align-self: flex-end;
  width: 100%;
  gap: 20px;
  position: relative;
}

.projet_content_item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1); /* Couleur blanche semi-transparente */
  border-radius: 10px;
  backdrop-filter: blur(10px); /* Flou pour l'effet verre */
  -webkit-backdrop-filter: blur(10px); /* Compatibilité Safari */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Ombre subtile */
  border: 1px solid rgba(255, 255, 255, 0.2); /* Légère bordure transparente */
  overflow: hidden;
  height: 100px; /* Hauteur compacte par défaut */
  transition: height 0.5s ease, box-shadow 0.5s ease;
  position: relative;
}

.projet_content_item:hover {
  height: 300px; /* Se déplie au hover pour révéler le contenu */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Ombre plus forte au hover */
}

.projet_content_item h3 {
  font-size: 20px; /* Taille réduite dans la version repliée */
  font-weight: 100;
  margin: 0;
  white-space: nowrap;
  overflow: visible;
  transition: color 0.5s ease;
}

.projet_content_item a {
  text-decoration: none;
  color: white;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.5s ease;
}

.projet_content_item a:hover {
  font-style: italic;
  border-bottom: 2px solid #61dafb;
}

.projet_content_item:hover h3 {
  font-size: 36px; /* Le titre grandit lorsque la carte se déplie */
  color: #61dafb; /* Change la couleur du titre au hover */
}

.projet_details {
  display: none; /* Caché par défaut */
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 20px;
}

.projet_content_item:hover .projet_details {
  display: flex; /* Affiché au hover */
}

.projet_details img {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}

.projet_details p {
  font-size: 16px;
  color: #b0b0b0;
  transition: opacity 0.5s ease;
}

@media only screen and (max-width: 900px) {
  .projet-content {
    width: 100%;
  }
  .projet_content_item {
    width: 100%;
  }
  .projet_content_item:hover {
    height: auto;
  }
  .projet_details img {
    max-width: 100%;
  }
}
.section_title {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 35%;
  padding-top: 5%;
}

.infos_content {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  text-align: center;
  gap: 20%;
  margin: 5% 15% 5% 15%;
  border-radius: 10px;
  background: white;
  color: black;
  opacity: 0.7;
}

.infos_content_article {
  display: flex;
  flex-direction: column;
  padding-top: 10px;
  padding-bottom: 10px;
  justify-content: center;
  gap: 2px;
}

.skills_item {
  position: relative; /* Position relative pour contenir la barre de compétence et l'étiquette */
  width: 100%;
}

.skills_label {
  color: white;
  width: 120%;
  position: absolute; /* Position absolue pour superposer l'étiquette sur la barre de compétence */
  left: 0; /* Aligner l'étiquette à gauche */
  text-align: start;
  margin-left: 15px;
}

.skills_bar {
  width: 100px; /* Largeur de la barre de compétence */
  height: 20px; /* Hauteur de la barre de compétence */
  background-color: white;
}

.skills_progress {
  height: 100%;
  background-color: black;
  opacity: 1;
  float: left;
}

#prog_part {
  display: flex;
  flex-direction: column;
  float: right;
  right: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 2px;
}
#prog_part .skills_progress {
  float: right;
}
#prog_part .skills_label {
  margin-left: 40px;
}

@media only screen and (max-width: 900px) {
  .infos_content {
    margin: 0 auto;
    width: 100%;
    gap: 100px;
  }
}
/* Carte de visite */
#Contact.section {
  flex-direction: column;
  justify-content: center; /* Centre verticalement */
  align-items: center; /* Centre horizontalement */
  margin: 0 auto;
  width: 80vh;
  height: 100vh; /* Occuper toute la hauteur de la fenêtre */
}

.contact-card {
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.profile-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: url("../assets/profil_pic.jpg") no-repeat center center;
  background-size: cover;
}

.contact-info h3 {
  color: #fff;
  font-size: 24px;
}

.location {
  color: #fff;
  font-size: 18px;
}

.social-media-wrapper {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.social-icon {
  color: #fff;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.2);
}

/* Formulaire de contact */
.contact-form {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  color: #fff;
  font-size: 16px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border-radius: 5px;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 16px;
}

.contact-form button {
  padding: 10px;
  border-radius: 5px;
  border: none;
  background-color: #007bff;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 1s ease transform 1s ease;
}

.contact-form button:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

#particles-js {
  width: 100%;
  height: 100%;
  background: black;
  z-index: -100000;
  position: fixed;
}

#dinoGame {
  position: absolute;
  left: 5%;
  border: 2px solid white;
  display: block;
  margin: 20px auto;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  height: 300px;
  width: 60%;
  margin: 50px auto;
  border-radius: 10px;
}
.carousel-container .carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  height: 100%;
  position: relative;
}
.carousel-container .carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.carousel-container .carousel-slide {
  border-radius: 10px;
  min-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  transform: scale(0.95);
  opacity: 0;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
.carousel-container .carousel-slide.active {
  transform: scale(1);
  opacity: 1;
}
.carousel-container .carousel-slide img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0 auto;
  z-index: 1;
  border-radius: 10px;
}
.carousel-container .carousel-slide h3,
.carousel-container .carousel-slide p,
.carousel-container .carousel-slide a {
  z-index: 2;
  margin: 10px 0;
  position: relative;
  color: white;
}
.carousel-container .carousel-slide a {
  text-decoration: none;
  color: #4a90e2;
}
.carousel-container .carousel-slide a:hover {
  text-decoration: underline;
}
.carousel-container .carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: black;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1000;
}
.carousel-container .carousel-button.prev {
  left: 10px;
}
.carousel-container .carousel-button.next {
  right: 10px;
}

.diapo {
  position: relative;
}

.diapo_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 10px;
  z-index: 2;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  z-index: 2000;
}

.indicator {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  border-radius: 50%;
  background-color: grey;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}
.indicator.active {
  background-color: white;
  box-shadow: 0 0 10px white, 0 0 20px white;
}
.indicator:not(.active) {
  box-shadow: none;
}

body {
  color: white;
  font-family: "Roboto Mono";
  display: flex;
  flex-direction: column;
}

.section {
  display: none; /* Masquer toutes les sections par défaut */
}

#Home {
  display: block; /* Afficher la section Home par défaut */
}

h1,
h2 {
  margin: 10px;
}/*# sourceMappingURL=main.css.map */