.menu-container {
  position: relative;
}

/* Bouton logo nuage */

.cloud-toggle {
  background: #00b7e5;
  border: none;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: box-shadow 0.2s;
}

.cloud-toggle img {
  width: 85px;
}

/* Menu vertical */

.vertical-menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  min-height: 350px;
  background: #00b7e5;
  border-radius: 60px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  display: none;
  flex-direction: column;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 10px;
  z-index: 99;
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 0.3s, transform 0.3s;
}

.vertical-menu.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.vertical-menu .menu-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vertical-menu .menu-logo img {
  width: 95px;
  margin-bottom: 5px;
}

.vertical-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.vertical-menu li {
  color: #fff;
  padding: 10px 0;
  text-align: center;
  cursor: pointer;
  font-size: 1em;
  transition: background 0.2s, color 0.2s;
  font-family: 'Ubuntu Sans';
  font-weight: 500;
}

.vertical-menu li.active, .vertical-menu li:hover {
  background: #005b82;
  color: #fff;
  border-radius: 22px;
  font-weight: 600;
  margin: 8px 24px;
}

@media (max-width: 600px) {
  .vertical-menu {
    width: 90vw;
    border-radius: 48px;
  }
}

.vertical-menu a {
  text-decoration: none;
}

