/* Import Font */
@font-face {
  font-family: "Lato";
  src: url("../police/Lato-Bold.woff2") format("woff2");
}

/* Couleurs */
.jaune {
  color: #fdc50e;
}

.noir {
  color: black;
}

.gris {
  color: #646464;
}

.blanc {
  color: white;
}

/* Commun */
html {
  scroll-behavior: smooth;
}

body {
  color: black;
  font-family: "Lato";
  margin: 0;
  background-color: white;
}

header {
  background-color: white;
  border-bottom: 1.5vh solid #fdc50e;
  position: fixed;
  top: 0;
  z-index: 5;
  width: 95vw;
  padding: 2.5vw;
}

main {
  margin-top: 7.5vh;
}

strong {
  color: #646464;
}

footer {
  background-color: white;
  border-top: 1.5vh solid #fdc50e;
  height: 6vh;
  z-index: 5;
  padding: 2.5vw;
}

/* CSS Équipe */
.section-1-equipe {
  padding: 15vh 5vw 1vh 5vw;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.section-1-equipe h1 {
  font-size: 1.3rem;
}

.section-1-equipe img {
  width: 50vw;
  margin: auto;
  border: 5px solid #fdc50e;
}

.btn-section-membre-equipe {
  display: none;
}

/* Section BG vidéo */
.section-2-equipe {
  text-align: center;
}

.section-2-equipe h2 {
  font-size: 1.5rem;
}

.section-2-equipe button {
  display: none;
}

.section-2-equipe video {
  display: none;
}

.ligne-membre-equipe {
  display: flex;
}

.div-membre-equipe {
  border: 5px solid #fdc50e;
  max-width: 50%;
  padding: 3vw;
}

.div-membre-equipe img {
  width: 90%;
  border: 2px solid #fdc50e;
}

/* Version ordinateur */
@media screen and (min-width: 700px) {
  /* Commun */
  header {
    border-bottom: 0.5vh solid #fdc50e;
    height: 3vh;
    width: 97vw;
    padding: 1.5vw;
  }

  footer {
    border-top: 0.5vh solid #fdc50e;
    height: 3vh;
    padding: 0 0 7vh 0;
  }

  /* CSS Équipe */
  .section-1-equipe {
    border-bottom: #fdc50e 5px solid;
  }

  .div-contenu-section-1 {
    text-align: start;
    display: flex;
    flex-direction: row-reverse;
    gap: 10vw;
    width: 85%;
  }

  .div-contenu-section-1 h1 {
    text-align: center;
    font-size: 1.5rem;
  }

  .div-contenu-section-1 img {
    width: 25vw;
    margin-left: 5vw;
  }

  .btn-section-membre-equipe {
    display: block;
    width: 3vw;
    margin: auto;
    z-index: 2;
    margin-bottom: 2vh;
  }

  .btn-defilement-img-index {
    fill: #fdc50e;
  }

  /* Section BG Vidéo */
  .background-equipe {
    position: static;
    width: 100%;
    height: 110%;
    overflow: hidden;
    z-index: -2;
  }

  .background-equipe video {
    position: relative;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
  }

  .contenu-equipe {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: black;
  }

  .contenu-equipe h2 {
    font-size: 2rem;
    white-space: nowrap;
    margin-bottom: 8vh;
  }

  .liste-membre-equipe {
    display: flex;
    gap: 3vw;
  }

  .ligne-membre-equipe {
    gap: 3vw;
  }

  .div-membre-equipe {
    background-color: white;
    width: calc(70vw / 4);
    padding: 1.5vw;
  }
}
