body {
  padding: 0;
  margin: 0;
  font-family: "regular";
  background: linear-gradient(0.25turn, #004357, #470017);
}

.menu {
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem 2rem 2rem;
}

img {
  height: 3.5rem;
}

input {
  font-family: "regular";
  color: white;
  background: rgba(255, 255, 255, 0.3);
  outline: none;
  padding: 0.5rem;
  border-radius: 10px;
  width: 20rem;
  text-align: center;
  border: 1px solid white;
}

::placeholder {
  font-family: "regular";
  color: #f5f5f5;
  font-style: italic;
  opacity: 1;
}

.iconbox {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
  text-decoration: none;
}

a.connecter {
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.3);
  padding: 0.5rem;
  border-radius: 10px;
  color: white;
  transition: 0.2s;
}

a.connecter:hover {
  transition: 0.2s;
  box-shadow: 0 0 11px rgba(0, 0, 0, 0.2);
  transform: scale(1.005);
}

/* style lien discord */

.link-home {
  opacity: 0.8;
  color: aliceblue;
  transition: 0.1s;
}

.link-home:hover {
  opacity: 1;
  transition: 0.1s;
}

/* -----------------style footer-----------------------  */

footer {
  margin-top: 100px;
  width: 100%;
  height: 100px;
  background-color: rgba(189, 189, 189, 0.3);
  /* border: 1px solid rgb(0, 0, 0); */
}

.footer-conteneur {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footerconteneur2 {
  display: flex;
  justify-content: center;
  align-items: center;
  /* flex-direction: column; */
  margin-left: 20px;
}

footer img {
  height: 50px;
  margin-top: 20px;
  opacity: 0.8;
  transition: 0.1s;
}

footer img:hover {
  opacity: 1;
  transition: 0.1s;
}

.footertext {
  font-family: "semibold";
  font-size: 1rem;
  color: aliceblue;
  margin-top: 20px;
  margin-left: 20px;
  text-align: left;
}

.contactus,
.tos,
.about,
.partners {
  font-family: "semibold";
  font-size: 1rem;
  color: aliceblue;
  margin-top: 10px;
  margin-left: 20px;
  opacity: 0.8;
  transition: 0.1s;
  text-align: center;
}

.contactus:hover,
.tos:hover,
.about:hover,
.partners:hover {
  opacity: 1;
  transition: 0.1s;
}

/* ---------------------------------responsive---------------------------------- */
@media screen and (min-width: 600px) {
  .input-mobile {
    display: none;
  }
}

@font-face {
  font-family: "regular";
  src: url("../fonts/Inter-Regular.ttf");
}

@font-face {
  font-family: "semibold";
  src: url("../fonts/Inter-SemiBold.ttf");
}

@media screen and (max-width: 600px) {
  /* -----------------style responsive footer !-----------------------  */
  /* ne pas afficher le mot"zikzone" a coté du logo sur version mobile */
  .menu p {
    display: none;
  }
  footer {
    margin-top: 100px;
    width: 100%;
    height: 180px;
    background-color: rgba(189, 189, 189, 0.3);
    /* border: 1px solid rgb(0, 0, 0); */
  }

  .footer-conteneur {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footerconteneur2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 10px;
  }

  footer img {
    height: 50px;
    margin-top: 20px;
    opacity: 0.8;
    transition: 0.1s;
  }

  footer img:hover {
    opacity: 1;
    transition: 0.1s;
  }

  .footertext {
    font-family: "semibold";
    font-size: 1rem;
    color: aliceblue;
    margin-top: 20px;
    margin-left: 20px;
    text-align: left;
  }

  .contactus,
  .tos,
  .about {
    font-family: "semibold";
    font-size: 1rem;
    color: aliceblue;
    margin-top: 10px;
    margin-left: 20px;
    opacity: 0.8;
    transition: 0.1s;
    text-align: center;
  }

  .contactus:hover,
  .tos:hover,
  .about:hover {
    opacity: 1;
    transition: 0.1s;
  }
}



/* style section social medias en bas de page sur les pages /about, /partners, /legal... */

.separateur {
  position: relative;
  text-align: center;
  margin-top: 20px;
}

.separateur::before {
  content: '';
  display: inline-block;
  width: 50%;
  height: 1px;
  background-color: hsla(0, 0%, 80%, 0.500);
  /* Couleur de la ligne = semi transparent */
  border-radius: 5px;
}

.reseaux-cont {
  display: flex;
  justify-content: center;
}

.reseaux {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  width: 50%;
}

.reseaux img {
  height: 40px;
}

.reseaux-ico {
  transition: 0.1s;
}

.reseaux-ico:hover {
  scale: 105%;
  transition: 0.2s;
}

@media screen and (max-width: 600px) {

  .reseaux {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    width: 100%;
  }

  input {
    display: none;
  }

}

