* {
  margin: 0;
  padding: 0;
}

nav {
  height: 7vh;
  width: 100%;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  opacity: 0.5;
}

nav .logo img {
  width: 100px;
  height: auto;
}

nav .logo {
  margin-left: 1%;
}

nav .nav-links ul {
  font-family: "Poppins", serif;
  font-weight: 500;
  font-style: normal;
  gap: 25px;
}

a {
  text-decoration: none;
  color: inherit;
}

nav .nav-icons ul {
  gap: 20px;
}

nav .nav-icons {
  margin-right: 1%;
}

nav .menu-icon {
  display: none; /* Cacher le menu burger sur les grands écrans */
}

/* Styles pour les écrans de moins de 768px */
@media (max-width: 768px) {
  nav .nav-links {
    display: none;
  }

  nav .logo {
    order: 2;
  }

  nav .nav-icons {
    order: 3;
  }
  nav .menu-icon {
    display: block;
    cursor: pointer;
    order: 1;
    margin-left: 1%;
    font-size: 24px;
    opacity: 0.5;
  }

  nav .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 7vh;
    left: 0;
    right: 0;
    background-color: white;
    gap: 10px;
    padding: 10px 0;
  }

  nav .nav-links.active ul {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
}
