/* Barre du haut */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background-color: #f5f5f5;
  flex-wrap: wrap;
}
.top-bar a {
  margin-right: 15px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}
.top-bar .logo {
  height: 40px;
}

/* Menu principal avec icônes */
.menu-icones {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #fff;
  padding: 10px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90px;
  text-decoration: none;
  margin: 10px 8px;
  color: #333;
  font-size: 14px;
  transition: transform 0.2s ease;
}
.menu-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 5px;
}
.menu-item:hover {
  transform: scale(1.05);
  color: #00695c;
}

/* Responsive */
@media screen and (max-width: 600px) {
  .menu-item {
    width: 25%;
    font-size: 13px;
  }
  .menu-item img {
    width: 36px;
    height: 36px;
  }
}
