/* 
    Style Header
*/
header {
  padding-top: 10px;
}
#nav-normal a {
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: medium;
  color: #a1a1a1;
  line-height: 30px;
}
#nav-normal a:hover {
  color: #eee !important;
}

#nav-normal {
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 800px) {
  #nav-burger {
    display: flex !important;
    height: 50px;
  }
  #nav-normal {
    display: none !important;
  }
}
/* ----- Bouton burger ----- */
#nav-burger {
  display: none;
  justify-content: center;
}
#burger-btn {
  position: relative;
  width: 50px;
  height: 50px;

  z-index: 1002;
  background: transparent;
  border: none;
  cursor: pointer;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

#burger-btn span {
  width: 34px;
  height: 3px;
  background: white;
  transition: 0.25s;
}

/* Transformation en croix */

#burger-btn.open span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
  position: fixed;
}

#burger-btn.open span:nth-child(2) {
  opacity: 0;
}

#burger-btn.open span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
  position: fixed;
}

/* ----- Menu ----- */

#burger-menu {
  display: none;

  position: fixed;
  inset: 0;

  width: 100vw;
  height: 100vh;

  background: #000;

  z-index: 1000;

  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#burger-menu.open {
  display: flex;
  flex-wrap: wrap;
}

/* ----- Liens ----- */

#burger-menu a {
  color: white;
  text-decoration: none;

  font-size: 35px;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.2;

  margin: 0.5em 0;
}
#burger-menu a:hover {
  color: #bdbdbd;
}
