/* Général */
body {
  background-color: #303030;
  margin: 0;
  font-family: Georgia, 'Times New Roman', Times, serif;

}

/* Titre */
#titre {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;            
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  box-sizing: border-box;
  z-index: 10;
}

#titre img {
  width: 120px;
}

#titre h1 {
  font-size: 2rem;
  margin: 0;
}
 /* Boutons du header */
.boutons {
  display: flex;
  gap: 10px;
}

.boutons button {
  background-color: #6d6d6d;
  color: white;
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  border: 5px solid #5b251e;
}
 /* Menu */
#side-menu {
  position: fixed;
  top: 150px;              
  left: 0;
  width: 150px;
  height: calc(100% - 150px);
  background: #515151;
  border: 6px solid #5b251e;
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  box-sizing: border-box;
  z-index: 9;
}

#side-menu a {
  color: #ffffff;
  text-decoration: none;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
  font-size: larger;
}

#side-menu a.active {
  background-color: #5b251e;
  font-weight: bold;
}

/* Contenu (plats, etc.) */
#contenu.fade {
  opacity: 0;
}

#contenu {
  transition: opacity 0.3s ease;
  position: fixed;
  top: 150px;       
  left: 150px;      
  right: 0;
  bottom: 0;
  overflow-y: auto; 
  padding: 2rem;    
  color: #fff;
  box-sizing: border-box;
}

/* Affichage des produits */
.produits {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.produit {
  text-align: center;
}

.produit .imgproduit {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  border: 4px solid #5b251e;
  margin-bottom: 0.5rem;
}

.produit .panier {
  width: 30px;
  height: 20px;
  
  margin-bottom: 0.5rem;
}