   /* ----------------------------------------------------
   NAVBAR PREMIUM
----------------------------------------------------- */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
}

/* Desktop */
.navbar img.logo {
    height: 85px; /* augmente la taille */
    width: auto;
}

/* Mobile */
@media (max-width: 768px) {
    .navbar img.logo {
        height: 70px; /* plus grand mais adapté au mobile */
    }
}


.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: white;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s;
}

.nav-links a:hover {
  color: var(--accent);
}

/* BURGER MENU */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 3px;
}

/* MOBILE */
@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 80px;
    right: 20px;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(6px);
    flex-direction: column;
    padding: 20px;
    border-radius: 12px;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .burger {
    display: flex;
  }
}

/* MENU MOBILE PREMIUM */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(10, 10, 10, 0.85),
    rgba(20, 20, 20, 0.75)
  );
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: none;
  flex-direction: column;
  padding: 30px;
  color: white;
}


.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-title {
  font-size: 1.6rem;
  font-weight: 700;
}

.close-menu {
  font-size: 2rem;
  cursor: pointer;
}

.mobile-menu-links {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mobile-menu-links a {
  color: white;
  font-size: 1.3rem;
  text-decoration: none;
  font-weight: 500;
}
