/* GENERAL */
header {
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-bottom: 5rem;
}

header::after {
  content: "";
  background-color: #2a245b;
  opacity: 75%;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}

/* NAVBAR */

.navbar {
  position: fixed;
  padding: 0.3rem 0.5rem;
  border-bottom: 2px white solid;
  width: 100dvw;
  z-index: 50;
}

.background-nav {
  background-color: #423d6e;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.liens-container {
  display: flex;
  color: white;
  align-items: center;
  padding-right: 8px;
  gap: 1.5rem;
  transition: all 1s;
}

.liens-container > a {
  color: white;
}
.espace {
  text-decoration: none;
  transition: all 0.6s;
}

.espace:hover {
  text-decoration: none;
}

.inter-liens {
  border-right: 2px white solid;
  width: 0;
  height: 40%;
}

.mobile-input {
  display: none;
  color: white;
  margin: auto;
}

/* RESPONSIF NAVBAR */

@media screen and (max-width: 1200px) {
  .liens-container {
    flex-direction: column;
    background: #2a245b;
    backdrop-filter: blur(2px);
    justify-content: start;
    padding-top: 30px;
    align-items: center;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100vw;
    height: calc(100dvh - 70px);
  }

  .liens-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    opacity: 60%;
  }

  .liens-container.open-nav {
    transform: translate(0);
  }
  .liens-container.close-nav {
    transform: translate(100dvw, 0);
  }

  .liens-container > a:last-child {
    margin: 1rem 0 0 0;
  }
  .inter-liens {
    border-bottom: 2px white solid;
    width: 180px;
    height: 0%;
  }
  .mobile-input {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: end;
    font-size: 32px;
    margin-right: 8px;
    cursor: pointer;
  }
}

/* HEADER */

.header-container {
  display: flex;
  flex-direction: column;
  color: white;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 87.2px;
}

.header-container img {
  max-width: 350px;
  max-height: 450px;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

.colored-yellow {
  color: #d7a721;
}

.header-container a {
  margin-left: 2rem;
  margin-right: 0.5rem;
  background: #d7a721;
  padding: 0.5rem 1rem;
  transition: all 0.6s;
  color: white;
  border: 3px transparent solid;
  margin-top: 3rem;
}

.reseaux {
  margin-left: 1rem!important;
  margin-right: 1rem!important;
  padding: 0!important;
  background: transparent!important;
  transition: all 0.6s;
  color: white;
  border: 0px transparent solid!important;
  margin-top: 0rem!important;
}

.header-container a:hover {
  background: transparent;
  border: 3px solid #d7a721;
  text-decoration: none;
}

@media screen and (max-width: 1600px) {
  .header-container img {
    max-width: 300px;
    max-height: 400px;
  }
}
