/* RESET MINIMUM */
body {
  margin: 0;
  font-family: Figtree, sans-serif;
}

/* NAVBAR */
.nav {
  background: #353148;
  padding: 15px;
  position: relative;
}

/* HAMBURGER */
.hamburger {
  width: 30px;
  cursor: pointer;
  z-index: 1001;
}

.bar {
  height: 4px;
  width: 100%;
  background: #ede6d3;
  margin: 6px 0;
  transition: 0.4s;
}

/* ANIMATION CROIX */
.hamburger.active .bar:nth-child(1) {
  transform: translateY(10px) rotate(-45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-10px) rotate(45deg);
}


/* MENU (caché au départ, au-dessus) */
.menu {
  position: absolute;
  top: 40px;           /* position finale */
  left: 0;
  width: 200px;
  background: none;
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  border-radius: 5px;
  font-family: Figtree, sans-serif;
  font-size: 14px;

  /* état caché */
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;

  transition: all 0.3s ease;
}

/* MENU VISIBLE */
.menu.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* LIENS */
.menu a {
  color: #ede6d3;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
}

.menu a:hover {
  background: #c9b27c;
}

