/* NAVIGATION */

nav {
  background-color: var(--color-blue);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  background-color: #292558;
  height: 12vh;
}

.menu-logo {
  width: 25%;
  height: 25%;
}

.menu-logo img {
  width: 18%;
  height: 18%;
}

nav li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
  transition: 0.3s ease;
  color: white;
  padding: 10px;
  font-size: 15px;
}

nav .current {
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  margin: 0 -10px;
  transition: 0.3s ease;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-evenly;
}

.bloc-nav {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  height: 100%;
  gap: 40px;
}

.bloc-nav_menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  margin-left: 1%;
  margin-right: 1%;
}

.menu-id {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-id_row-2 {
  display: flex;
  gap: 10px;
}nu-link

#logo {
  width: 70px;
  height: auto;
}

.nav-footer {
  display: flex;
  justify-content: space-between;
  background-color: #292558;
  width: 100%;
  align-items: center;
  height: 8vh;
  position: fixed;
  bottom: 0;
  z-index: 9997;
}

.menu-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  scale: 0.9;
  width: 600px;
}

.nav-bar {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 1;
  gap: 30px;
}

.nav-link {
  position: relative;
}

.nav-bar-highlight {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: rgba(255, 255, 255);
  /* opacity 0.3 par défaut */
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.nav-bar-highlight-unique {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: rgba(255, 255, 255);
  opacity: 0.5;
}

.nav-link:hover .nav-bar-highlight {
  opacity: 1;
}