* {
  margin: 0;
  padding: 0;
}

/* Pour les Daltoniens */
#page_c {
  filter: grayscale(100%);
}

body {
  min-block-size: 300%;
  font-family: system-ui, sans-serif;
  font-family: Arial, sans-serif;
  background-color: tan;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

header {
  backdrop-filter: blur(10px);
  padding-top: 10%;
  background-color: rgba(0, 0, 0, 0.539);
  padding: 10px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 10;
  display: block;
  margin-bottom: 50px;
}

/* Avoir un barre qui reste en haut de page et un arrière plan flou*/
.header-container {
  top: 0;
  padding: 0px 80px 15px 15px;
  height: 15vh;
  white-space: nowrap;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  z-index: 10;
}

#scroll {
  overflow: visible;
  overflow-y: hidden;
}

.header-container img {
  margin-top: 25%;
  margin-right: 1.5rem;
  height: 6rem;
  width: 6rem;
  object-fit: contain;
}

ul {
  margin-top: 3%;
  margin-left: 1.5%;
  position: center;
  display: flex;
  gap: 2%;
}

li {
  list-style-type: none;
  position: relative;
}

li a {
  color: red;
  text-decoration: none;
  justify-content: space-between;
}

/* Effet sur les bouttons pour changer de page */
.link {
  color: #090909;
  padding: 0.7em 1.7em;
  font-size: 18px;
  border-radius: 0.5em;
  background: #af8316;
  cursor: pointer;
  border: 1px solid #af8316;
  transition: all 0.3s;
  box-shadow: 6px 6px 12px #af841698;
  height: 50px;
  margin-left: 2%;
}

.link:hover {
  color: #000;
  box-shadow: 4px 4px 12px #c7a658, -4px -4px 12px #684f13;
}

/* Effet différent sur le boutton de la page actuelle */
.act {
  padding: 0.7em 1.7em;
  font-size: 18px;
  border-radius: 0.5em;
  background: #af8316;
  cursor: pointer;
  transition: all 0.3s;
  color: #000;
  box-shadow: inset 4px 4px 12px #9e7f35, inset -4px -4px 12px #684f13;
  margin-left: 2%;
}

.act:hover {
  color: #000;
  box-shadow: inset -4px -4px 12px #c7a658, inset 4px 4px 12px #684f13;
}

#floatingImage {
  position: relative;
  width: 40%;
  height: auto;
  animation: moveUpDown 11s ease-in-out infinite;
  z-index: 0;
  padding-bottom: 70px;
}

/* Animation pour déplacer l'image de haut en bas */
@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(2vh);
  }
  50% {
    transform: translateY(1vh);
  }
  70% {
    transform: translateY(2vh);
  }
  100% {
    transform: translateY(0);
  }
}

/* Agit comme une boîte, délimitée par les traits noir horizontaux */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px 20% 20px 20%;
}

/* Centre les textes concernant notre entreprise*/
.box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: white;
  padding: 1%;
  margin: 3% auto;
  width: 80%;
  height: auto;
  border-radius: 10px;
  border: #000000 solid 2px;
}

.box p {
  font-size: 1.1em;
  text-align: justify;
  padding: 15px;
}

.box img {
  width: 12%;
  height: auto;
  object-fit: contain;
}

/* Animation du boutton télécharger */
.effect {
  text-align: center;
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: #000000;
  text-transform: capitalize;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  padding: 1%;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

/* Boutton télécharger */
.button-effect {
  height: 100%;
  width: 100%;
  text-align: center;
  z-index: 4;
}

/* Animation du boutton télécharger après passage de la souris */
.effect.effect-4 {
  width: 10rem;
  height: 100%;
  transition: all 1s ease-in-out;
}

/* Animation de l'icon du boutton télécharger */
.effect.effect-4:before {
  content: "\f019";
  font-family: "Font Awesome 5 Free", "FontAwesome";
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 30px;
  transform: scale(0);
  opacity: 0;
  transition-delay: 0.5s;
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}

/* Animation du texte du boutton télécharger */
.effect.effect-4:hover {
  text-indent: -300%;
  transition: background-color 1s ease-in-out;
}

/* Affiche l'icon du bouton télécharger */
.effect.effect-4:hover:before {
  transform: scale(1);
  opacity: 1;
  transition-delay: 0.2s;
}

/* Centre l'icon du boutton télécharger */
.effect.effect-4:before {
  text-indent: 0;
}

.top {
  min-height: 88dvh;
}

footer {
  width: 100%;
  position: relative;
}

.jsp {
  min-height: 100dvh;
  grid: grid-rows-[auto_1fr_auto];
}
.footer-content {
  border-top: #000000 solid 1px;
  background-color: rgba(255, 255, 255, 0.718);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
}

/* Zone de bas de page pour le copy-right */
footer a {
  text-decoration: none;
  color: blue;
  font-size: 15px;
}

footer a:hover {
  color: rgba(255, 0, 0, 0.603);
  text-decoration: underline;
  cursor: pointer;
}

.trait {
  width: 95%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.51);
  margin: 50px auto;
}

.personnel {
  margin: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.box p {
  font-size: 1.1rem;
}

.personnel-informations {
  width: 30%;
}

.personnel img {
  height: 20%;
  width: 25%;
  border-radius: 10px;
  transition: transform 1.5s, box-shadow 0.7s;
  z-index: 0;
}

.personnel img:hover {
  transform: scale(1.06);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.419);
}

/* Conteneur principal regroupant les boîtes personnelles */
.box-workers {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  border-radius: 10px;
}

/* Boîte individuelle pour chaque personne */
.personnel-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  width: 200px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

/* Style de l'image */
.personnel-box img.personnel {
  width: 100%;
  height: auto;
  border-radius: 5px;
  object-fit: cover;
}

/* Style du texte */
.personnel-box p {
  margin-top: 10px;
  text-align: center;
  font-size: 2rem;
  color: #000;
}
select,
option {
  color: #000 !important;
  background-color: #fff;
}

/* Style de la drop down liste des langues */
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: #000; /* Text color */
  font-size: 16px;
  padding: 0.7em;
  border-radius: 0.5em;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 120px;
  text-align: center;
}

/* Colorblind mode */
#page {
  filter: grayscale(0%);
}

/* Style de la checkbox colorblindd*/
input[type="checkbox"].cool-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* Styliser le label comme un bouton */
.custom-label {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ccc;
  color: black;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

/* Changer l'apparence quand le checkbox est coché */
.cool-checkbox:checked + .custom-label {
  background-color: #af8316;
  color: white;
}

.Start-Download {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 5vh;
}

.DownloadImg {
  width: 100%;
  height: auto;
  transition: transform 0.8s ease;
  margin-bottom: 20px;
  background-color: rgba(0, 0, 0, 0.181);
  backdrop-filter: blur(10px);
  border-radius: 20px;
}

.DownloadImg:hover {
  animation: zoomInOut 5s infinite;
}

@keyframes zoomInOut {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

.DownloadBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 30%;
}

.DownloadBox2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0 10% 100px 10%;
}

.mainpage {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 25% 0 25%;
  text-align: center;
}

.mainpage p {
  font-size: 1.2em;
}

.buttonHome {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 1em 2em;
  font-size: 1.2em;
  color: #000;
  background: #af8316;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 30px auto; /* Ajoute un margin top et bottom de 50px */
  text-decoration: none; /* Enleve le texte souligné */
}

.buttonHome:hover {
  background: #c7a658;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.buttonHome:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.DownloadTextEnd {
  margin-left: 10%;
  margin-bottom: 50px;
}
.DownloadTextEnd p {
  font-size: 1.5em;
  color: #000;
  margin-top: 10px;
}

.manual-section {
  border-radius: 16px;
  padding: 2em;
  margin: 2em 0;
  margin-left: 10%;
}
