
/* ===========================
   BANDES VERTICALES À GAUCHE
   =========================== */
.menu::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 100vh;
  background-color: var(--bleu2, #9ed6df);
  z-index: 1;
}

.menu::after {
  content: '';
  position: fixed;
  top: 0;
  left: 20px;
  width: 15px;
  height: 100vh;
  background-color: var(--bleu, #808bc5);
  z-index: 1;
}

/* ===========================
   LANG SWITCHER
   =========================== */
.lang-switcher {
  position: static;
  font-family: 'Actor', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.lang-switcher:hover {
  opacity: 0.7;
}

/* ===========================
   MENU
   =========================== */
.menu {
  padding: 0;
  margin-top: 0;
}

.menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 15px 30px 55px;
}

.menu__title {
  font-family: 'Actor', sans-serif;
  font-size: 50px;
  font-weight: 500;
  color: #f4ca28;
  margin: 0;
  flex: 1;
}

.menu__top-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu__close {
  position: static;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.menu__close img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu__close:hover {
  opacity: 0.7;
}

.menu__list {
  list-style: none;
  padding: 0 20px 20px 55px;
  margin: 0;
}

.menu__item {
  margin-bottom: 0;
}

.menu__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Cairo', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
  padding: 20px 10px;
  transition: background-color 0.3s ease;
}

.menu__link:hover {
  background-color: #f5f5f5;
}

.menu__arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-left: 15px;
}
