@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,slnt,wdth,wght,GRAD,XTRA,YOPQ,YTAS,YTDE,YTFI,YTLC,YTUC@8..144,-10..0,25..151,100..1000,-200..150,323..603,25..135,649..854,-305..-98,560..788,416..570,528..760&display=swap");
@font-face {
  font-family: "compagnon-bold";
  src: url("/src/assets/font/compagnon-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: normal;
}
.nav-container {
  display: flex;
  margin-right: 8vw;
  align-items: center;
  color: black;
  flex-direction: row;
}

li.nav-item:nth-child(1) {
  display: flex;
  align-items: center;
}

li.nav-item:nth-child(2) {
  display: flex;
  align-items: center;
}

li.nav-item:nth-child(3) {
  display: flex;
  align-items: center;
}

li.nav-item:nth-child(4) {
  display: flex;
  align-items: center;
}

.menu-container {
  display: flex;
  align-items: center;
  margin-bottom: 2em;
  text-align: center;
  justify-content: center;
  margin-top: 2em;
}

.logo-container {
  display: flex;
  flex-grow: 1;
  margin-left: 8vw;
}

svg.logo {
  width: 15vw;
  filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0));
  fill: black;
  transition: 0.6s;
}
svg.logo:hover {
  filter: drop-shadow(0px 0px 10px rgb(255, 200, 1));
  fill: rgb(0, 0, 0);
  transition: 0.6s;
}

.navbar {
  display: grid;
  align-content: end;
}
.navbar a.nav-link {
  color: black;
  font-size: 1.7vw;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 900;
  font-stretch: 100%;
  margin-left: 2.5vw;
  margin-right: 2.5vw;
  color: rgb(0, 0, 0);
}
.navbar a.nav-link:hover {
  filter: drop-shadow(0px 0px 10px rgb(255, 200, 1));
  color: rgb(0, 0, 0);
  transition: 0.2s;
}

li.nav-item:nth-child(4) > a:nth-child(1) {
  margin-right: 0px;
}

.container-footer {
  background-color: rgb(255, 255, 255);
  margin-top: 5vh; /* Remplacez la valeur par la marge souhaitée */
  color: rgb(0, 0, 0);
  border: 5px solid rgb(255, 255, 255);
}

.txt-footer {
  text-align: center;
}

.bruit {
  font-family: "Roboto Flex", sans-serif;
  font-weight: 900;
  font-size: 1vw;
  text-align: center;
  font-stretch: 200%;
  font-variation-settings: "XTRA" 600;
}

p.txt-footer {
  font-size: 1vw;
  line-height: 1vw;
}

/* Largeur fixe et hauteur adaptative */
.fixed-width-img {
  width: 65%;
  max-width: 65%;
  height: auto;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}

/* Carousel conteneur */
#dynamicCarousel {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto; /* Laisse le contenu déterminer la hauteur */
  max-height: 70vh;
  overflow: visible;
  transition: 0.3s;
}
#dynamicCarousel:hover {
  filter: drop-shadow(0px 0px 35px rgba(255, 200, 1, 0.7));
  transition: 0.3s;
}

#dynamicCarousel .carousel-item img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 90%;
  transition: 0.3s;
}

#dynamicCarousel .carousel-item img:hover {
  width: 93%;
  transition: 0.3s;
}

.carousel-caption {
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 5px;
  font-size: 1rem;
}

.apropos-container {
  margin-top: 5vw;
  margin-left: 8vw;
  margin-right: 8vw;
  display: flex;
  flex-direction: row;
}

.liste {
  font-family: "Roboto Flex", sans-serif;
  font-weight: 900;
  font-size: 1.5vw;
  line-height: 2vw;
  width: 100%;
  margin-right: 6vw;
}

.apropos-txt {
  font-family: "Roboto Flex", sans-serif;
  margin-left: 12vw;
}

li {
  margin-bottom: 1vw;
}

.sections {
  font-family: "Roboto Flex", sans-serif;
  font-weight: 900;
  font-size: 1.5vw;
  line-height: 2vw;
}

.grid {
  margin-top: 3vw;
  margin-left: 8vw;
  margin-right: 8vw;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

.cards {
  padding: 0px;
  overflow: hidden;
  height: 28vw; /* Ajustez la hauteur selon vos besoins */
}
.cards img {
  width: 100%;
  height: 90%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(1);
  transition: 0.8s;
  /* Centrage vertical de l'image */
}
.cards:hover {
  font-stretch: 105%;
  transition: font-stretch 200ms ease-in-out;
}
.cards:hover img {
  filter: grayscale(0);
  transition: 0.4s;
}

.ligne-separation {
  border-bottom: 2px solid rgb(0, 0, 0);
  opacity: 1; /* Ligne noire horizontale avec une épaisseur de 2 pixels */
}

.container-equipe {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 colonnes égales */
  justify-items: center; /* Centrer les éléments horizontalement */
  align-items: center; /* Centrer les éléments verticalement */
  gap: 20px; /* Espacement entre les éléments */
  margin-top: 5%;
}

.membre {
  display: flex;
  flex-direction: column;
  align-items: center; /* Centrer horizontalement */
  justify-content: flex-end; /* Aligner le contenu en bas */
  text-align: center; /* Centrer le texte */
}

.responsive {
  max-width: 60%; /* Ajuster la largeur de l'image */
  height: auto; /* Garder le ratio hauteur/largeur */
  filter: grayscale(1);
  transition: 0.8s;
}

.responsive:hover {
  filter: grayscale(0);
  transition: 0.8s;
}

.nom-equipe {
  font-family: "Roboto Flex", sans-serif;
  font-weight: 900;
  text-align: center;
}

.role {
  font-family: "compagnon", sans-serif;
  text-align: center;
}

.container-contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 8vw;
  -moz-column-gap: 5vw;
       column-gap: 5vw;
}

.infos p h1 {
  text-align: right;
}

h1 {
  font-size: 2em;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 900;
}

.container-contact form {
  width: 100%;
  max-width: 400px; /* Ajoutez une largeur maximale selon vos préférences */
}

.container-contact h2 {
  text-align: center;
}

iframe {
  width: 60vw;
  height: 25vw;
}

.container-projet {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: flex-start;
  margin-left: 8vw;
  margin-right: 8vw;
  margin-top: 2vw;
  margin-bottom: 2vw;
}

.container-images-projet {
  display: flex;
  flex-direction: column;
  height: auto;
  width: 120%;
  padding-right: 2rem;
}
.container-images-projet img {
  width: 100%;
  height: auto;
}

.imgprj {
  width: 100%;
  margin-bottom: 2rem;
}

.container-textes {
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  top: 10rem;
  width: 85%;
}

.titre-projet {
  margin-top: -1.5%;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 900;
  font-size: 4vw;
  height: -moz-fit-content;
  height: fit-content;
  line-height: 4.4vw;
}

.titre-projet-cards {
  font-family: "Roboto Flex", sans-serif;
  font-weight: 900;
  font-size: 3.5vw;
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-max-content;
  width: max-content;
  line-height: 4vw;
  transition: font-stretch 200ms ease-in-out;
}

.date-cards {
  font-family: "Roboto Flex", sans-serif;
  font-weight: 600;
  font-stretch: 200%;
}

p {
  font-family: "Roboto Flex", sans-serif;
  font-weight: 400;
  height: -moz-fit-content;
  height: fit-content;
  text-align: left;
  font-size: 1.3rem;
  line-height: 1.6rem;
}

a {
  color: inherit; /* Utilisez la couleur héritée du parent */
  text-decoration: none; /* Supprimez le soulignement par défaut */
}

/* Si vous voulez spécifier des styles pour les liens au survol, vous pouvez ajouter ce bloc de code */
a:hover {
  /* Styles au survol */
  text-decoration: none; /* Ajoutez un soulignement au survol si nécessaire */
}

.hamburger {
  display: none;
}
@media (max-width: 576px) {
  .hamburger {
    display: flex;
  }
}

#btn-en-savoir-plus {
  display: none;
}

#btn-fermer {
  display: none;
}

#haut-de-page {
  position: fixed;
  bottom: 20px; /* Position en bas de l'écran */
  right: 50px; /* Position à droite de l'écran */
  background-color: rgb(0, 0, 0);
  border-radius: 8px;
  padding: 8px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1.7em;
  color: rgb(255, 255, 255);
  border: 2px solid #000000;
  z-index: 999; /* Pour s'assurer que le bouton reste au-dessus des autres éléments */
}

@media (max-width: 576px) {
  #menu {
    display: none;
  }
}
@media (min-width: 576px) {
  #menu {
    display: flex;
    flex-direction: row;
  }
}
#menu.open {
  display: block !important;
}

@media only screen and (max-width: 576px) {
  body {
    font-family: "Roboto Flex", sans-serif;
    font-size: 14px;
  }
  button {
    display: block;
  }
  .menu-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 2em;
    margin-top: 2em;
  }
}
@media only screen and (max-width: 576px) and (max-width: 576px) {
  .nav-container {
    max-width: 100%;
    margin-right: 0;
    display: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 15px;
  }
}
@media only screen and (max-width: 576px) {
  .logo-container {
    grid-column-start: 1;
    grid-column-end: 1;
  }
  svg.logo {
    width: 100%;
    margin-bottom: 20%;
  }
  .navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .navbar a.nav-link {
    color: black;
    font-size: 2rem;
    margin: 3px 0;
    font-family: "Roboto Flex", sans-serif;
    color: rgb(0, 0, 0);
  }
  .navbar a.nav-link:hover {
    color: rgb(0, 0, 0);
    transition: 200ms;
  }
  .navbar-nav {
    --bs-nav-link-padding-x: 0;
    --bs-nav-link-padding-y: 0rem;
    --bs-nav-link-font-weight: ;
    --bs-nav-link-color: var(--bs-navbar-color);
    --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
    --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
  }
  li.nav-item:nth-child(4) > a:nth-child(1) {
    margin-right: 0px;
    display: block;
  }
  li.nav-item:nth-child(1) {
    display: block;
  }
  li.nav-item:nth-child(2) {
    display: block;
  }
  li.nav-item:nth-child(3) {
    display: block;
  }
  li.nav-item:nth-child(4) {
    display: block;
  }
  p {
    font-size: 1.2rem;
    line-height: 1.5rem;
    text-align: left;
  }
  button {
    background-color: rgb(255, 255, 255);
    border-radius: 8px;
    color: white;
    padding: 8px 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.7em;
    color: black;
    border: 2px solid #000000;
  }
  .fixed-width-img {
    width: 100%;
    max-width: 100%;
  }
  .container-textes > button:nth-child(3) {
    align-items: center;
  }
  .titre-projet-cards {
    font-size: 6vw;
    height: auto;
    width: auto;
    line-height: 6vw;
  }
  .titre-projet {
    font-size: 10vw;
    line-height: 11vw;
  }
  .cards {
    padding: 0px;
    height: 65vw; /* Ajustez la hauteur selon vos besoins */
  }
  .cards img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    filter: grayscale(0);
  }
  p.post-description {
    font-size: 1.2rem;
    line-height: 5.3vw;
  }
  .container-projet {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-left: 0%;
    margin-right: 0%;
    margin-top: 2vw;
    margin-bottom: 2vw;
  }
  .container-images-projet {
    height: 100%;
    width: 100%;
    padding: 1rem;
  }
  .imgprj {
    width: 100%;
    margin-bottom: 1rem;
  }
  .container-textes {
    display: flex;
    flex-direction: column;
    position: inherit;
    top: 10rem;
    width: 85%;
  }
  .container-equipe {
    display: flex;
    flex-direction: column;
    margin-top: 5%;
  }
  .responsive {
    filter: grayscale(0);
  }
  h4.bruit {
    font-size: 4vw;
  }
  p.txt-footer {
    font-size: 3vw;
    line-height: 3vw;
  }
  .apropos-container {
    margin-top: 5vw;
    margin-left: 8vw;
    margin-right: 8vw;
    display: flex;
    flex-direction: column;
  }
  .liste {
    font-family: "Roboto Flex", sans-serif;
    font-weight: 900;
    font-size: 8vw;
    line-height: 8.2vw;
    width: 100%;
    margin-bottom: 4rem;
  }
  .apropos-txt {
    font-family: "Roboto Flex", sans-serif;
    margin-left: 2vw;
  }
  li {
    margin-bottom: 10px;
  }
  .sections {
    margin-top: 12vw;
    font-size: 2rem;
    line-height: 2.2rem;
  }
  .container-contact {
    flex-direction: column;
  }
  .boutons-container {
    position: fixed;
    bottom: 100px; /* Vous pouvez ajuster cette valeur selon votre préférence */
    left: 20px; /* Vous pouvez ajuster cette valeur selon votre préférence */
    display: grid;
    grid-template-columns: 2fr 1fr;
  }
  #btn-fermer {
    grid-column-start: 1;
    bottom: 70px; /* Position en bas de l'écran */
    right: 200px;
    background-color: rgb(0, 0, 0);
    border-radius: 8px;
    padding: 15px 40px;
    width: 150px; /* Ajustement de la largeur du bouton */
    text-align: center; /* Cetrage du texte */
    line-height: 1; /* Ajustement de la hauteur de ligne pour centrer verticalement */
    color: white; /* Couleur du texte */
    font-size: 16px; /* Taille du texte */
    font-weight: bold; /* Poids de la police */
  }
  #fermer {
    text-align: center;
    margin-bottom: 0rem;
  }
  #haut-de-page {
    position: fixed;
    grid-column-start: 2;
    bottom: 70px; /* Position en bas de l'écran */
    right: 50px; /* Position à droite de l'écran */
  }
  #dynamicCarousel {
    height: 35vh;
  }
  .carousel-caption {
    font-size: 0.8rem;
  }
}/*# sourceMappingURL=styles.css.map */