/* =========================
   NAVBAR
========================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.4);
  z-index: 10000;
}

.logo {
  font-weight: 600;
  color: #fff;
}

.navbar nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
}

.navbar nav a {
  text-decoration: none;
  color: #aaa;
  font-size: 14px;
  transition: 0.3s;
}

.navbar nav a:hover {
  color: #fff;
}

.navbar nav a.active {
  color: #ffaa00;
}

/* =========================
   BURGER
========================= */
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 10001;
}

.menu-btn span {
  width: 25px;
  height: 3px;
  background: #fff;
  display: block;
  transition: 0.3s;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {

  .navbar {
    padding: 20px 30px;
  }

  /* menu mobile */
  .navbar nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #0b0b0b;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: 0.4s ease;
    z-index: 9998;
  }

  .navbar nav.active {
    right: 0;
  }

  .navbar nav a {
    font-size: 20px;
    margin: 0;
  }

  .navbar nav a:hover {
    color: #ffaa00;
  }

  /* affichage burger */
  .menu-btn {
    display: flex;
  }
}