body {
        background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
      }
      .hero-img {
        object-fit: cover;
        width: 100%;
        max-height: 400px;
        border-radius: 15px;
        margin-bottom: 20px;
      }
      .menu-section {
        margin-bottom: 40px;
      }
      .menu-title {
        color: #b85c38;
        margin-top: 30px;
        margin-bottom: 20px;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 2px;
      }
      .menu-item {
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        padding: 20px;
        margin-bottom: 20px;
      }
      .menu-item strong {
        color: #b85c38;
        font-size: 1.1rem;
      }
    
      .imghero {
        background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)), url(./images/heromenu.webp) center/cover no-repeat;
        border-radius: 15px;
        min-height: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 70vh;
      }

      .btn-primary{
        background-color: #b85c38;
        border: 1px solid #f8f9fa;
      }

      .btn-primary:hover{
        background-color: #d86c41;
        border: 1px solid #f8f9fa;
        transition: .5s ease;
      }

      .btn-outline-primary{
        border: 1px solid #b85c38;
        color: #b85c38;
        font-weight: bold;
      }

      .btn-outline-primary:hover{
        background-color: #d86c41;
        color: #000000;
        font-weight: bold;
        transition: .5s ease;
        border: 1px solid #ffffff;
      }

      /* Améliorations pour les animations */
      .menu-item {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
      }

      .menu-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(184, 92, 56, 0.15);
      }

      .card-title {
        transition: all 0.3s ease;
      }

      /* Animation pour le texte du hero */
      .imghero h2 {
        opacity: 0;
        animation: fadeIn 0.8s ease 0.5s forwards;
      }

      @keyframes fadeIn {
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }

      /* Amélioration des boutons */
      .btn {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
      }

      .btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
      }

      .btn:hover::before {
        width: 300px;
        height: 300px;
      }

      /* Scroll smooth */
      html {
        scroll-behavior: smooth;
      }

      /* Amélioration de la lisibilité */
      body {
        line-height: 1.6;
      }

      /* Animation des sections */
      .menu-section {
        opacity: 0;
        transform: translateY(20px);
        animation: slideInUp 0.8s ease forwards;
      }

      .menu-section:nth-child(2) { animation-delay: 0.2s; }
      .menu-section:nth-child(3) { animation-delay: 0.4s; }
      .menu-section:nth-child(4) { animation-delay: 0.6s; }

      @keyframes slideInUp {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }