body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #fafafa;
    overflow-x: hidden;
  }
  
  .menu-bg {
    background-image: url('../images/bgmenu.jpg');
    background-size: cover;
    background-position: center;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    opacity: .2;
    z-index: -1;
  }
  
  header {
    background: #ff5722;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  header nav a {
    color: white;
    margin-left: 1rem;
    text-decoration: none;
    font-weight: bold;
  }
  
  .menu-section {
    padding: 2rem;
  }
  
  .menu-section h2 {
    margin-top: 3rem;
    color: #333;
  }
  
  .menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
  }
  
  .card {
    background: white;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-10px);
  }
  
  .card img {
    height: 100px;
    object-fit: contain;
  }
  
  .card h3 {
    margin: 0.5rem 0;
  }
  
  .card p {
    font-weight: bold;
    color: #444;
  }
  
  .discount {
    text-decoration: line-through;
    color: grey;
    font-size: 0.8rem;
    margin-left: 0.5rem;
  }
  
  .labels {
    margin-top: 0.5rem;
    font-size: 0.8rem;
  }
  
  .veg, .nonveg {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 5px;
    border-radius: 50%;
  }
  
  .veg {
    background-color: green;
  }
  
  .nonveg {
    background-color: red;
  }
  
  button {
    margin-top: 0.8rem;
    background: #ff5722;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
  }
  