/******************************** PREMIÈRE PAGE RESTAU ********************************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #f8f9fa, #e4ecfa);
    color: #2c3e50;
    padding: 20px;
    overflow-x: hidden;
  }
  
  /* LAYOUT CONTAINER */
  .container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 30px;
  }
  
  @media (max-width: 1024px) {
    .container {
      grid-template-columns: 1fr;
    }
  }
  
  /* SIDEBAR: DAYS */
  .days {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .days h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
    color: #2c3e50;
  }
  
  .day {
    padding: 15px;
    margin-bottom: 15px;
    text-align: center;
    background: #f1f3fc;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
  }
  
  .day:hover {
    background: #4f83cc;
    color: #ffffff;
    transform: scale(1.05);
  }
  
  .day.active {
    background: #ff6f61;
    color: #ffffff;
  }
  
  /* MAIN MENU */
  .menu {
    text-align: center;
  }
  
  .menu h1 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #34495e;
  }
  
  .dishes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
  }
  
  .dish {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .dish:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
  }
  
  .dish-circle {
    color: rgb(19, 19, 19);
    font-size: 18px;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
  }
  
  .dish-price {
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
  }

  .dish img {
    width: 100%;
    height: 120px; /* Ajuste la hauteur selon tes besoins */
    object-fit: cover; /* Assure que les images remplissent leur conteneur sans distorsion */
    border-radius: 8px; /* Donne des coins arrondis aux images */
    margin-bottom: 15px; /* Ajoute un espacement sous l'image */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Optionnel : ajoute une ombre pour un effet visuel agréable */
  }
  

  
  /* DAILY MENU */
  .daily-menu {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .daily-menu h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #34495e;
  }
  
  .menu-section {
    margin-top: 20px;
  }
  
  .menu-section h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #4f83cc;
    text-transform: uppercase;
  }
  
  .menu-section ul {
    list-style: none;
  }
  
  .menu-section li {
    font-size: 16px;
    padding: 8px 0;
    border-bottom: 1px dashed #bdc3c7;
  }
  