section {
    padding: 40px 0;
  }
  
  /* Section Headings */

  
  .delivery-categories h2 {
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    color: #5C0000;
    margin-left: 30px;
    margin-bottom: 30px;
    font-family: 'Urbanist', sans-serif;
    margin-right: 1180px;
  }

  
  .delivery-most-ordered {
    background-color: #5C0000;
    padding: 40px 20px;
  }
  
  /* H2 title (Most Ordered) */
  .delivery-most-ordered h2 {
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    color: white;
    margin-left: 30px;
    margin-bottom: 30px;
    font-family: 'Urbanist', sans-serif;
    margin-left: 90px;
  }
  
  /* Grid for cards */
  .ordered-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  
  /* Card styling */
  .menu-card {
    background-color: #F2E7D5;
    border-radius: 28px;
    width: 220px;
    text-align: center;
    padding: 20px 15px;
    font-family: 'Urbanist', sans-serif;
  }
  
  /* Dish image */
  .menu-card img {
    width: 100%;
    border-radius: 50%;
  }
  
  /* Dish name */
  .menu-card h3 {
    font-size: 14px;
    font-weight: 600;
    margin: 10px 0 4px;
    color: #000;
  }
  
  /* Dish description */
  .menu-card p {
    font-size: 13px;
    font-weight: 400;
    margin: 2px 0;
    color: #333;
  }
  
  /* Price */
  .menu-card .price {
    font-size: 14px;
    font-weight: 700;
    color: #5C0000;
    margin-top: 6px;
    
  }
  
  /* Add to Cart button */
  .add-to-cart {
    background-color: #5C0000;
    color: white;
    border: none;
    border-radius: 18px;
    padding: 6px 16px;
    font-size: 12px;
    margin-top: 10px;
    cursor: pointer;
  }

  /* Background color for Most Ordered */
  .delivery-most-ordered {
    background-image: url('Images/Red\ background-05-05-05-05.png');
    background-size: cover;
    background-position: center;
    
  }
  
  /* Most Ordered - Card Layout */
  .ordered-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0 40px;
  }
  
  .menu-card {
    background-color: #f2e7d5;
    border-radius: 30px;
    padding: 20px;
    text-align: center;
    width: 220px;
  }
  
  .menu-card img {
    width: 100%;
    border-radius: 20px;
  }
  
  .menu-card h3 {
    font-weight: bold;
    margin: 10px 0 0;
  }
  
  .menu-card p {
    margin: 5px 0;
  }
  
  .price {
    color: #5C0000;
    font-weight: bold;
  }
  
  .add-to-cart {
    background-color: #5C0000;
    color: #fff;
    padding: 8px 16px;
    margin-top: 10px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
  }
  
  .delivery-categories {
    background-image: url('Images/background\ fish-01.png');
    background-size: cover;
    background-position: center;
    padding: -200px 20px;
    padding-top: 20px;
    padding-bottom: 200px;
    text-align: center;
  
    
  }
  
  .categories-title {
    font-size: 26px;
    font-style: italic;
    color:#5C0000;
    margin-left: 30px;
    margin-bottom: 30px;
    font-family: 'Urbanist', sans-serif;
    font-weight: bold;
    margin-left: 90px;
  
  }
  
  .category-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 60px;
  }
  
  .category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .category-card img {
    width: 250px;          
    height: 250px;         
    background-color: #5C0000;
    padding: 40px;        
    border-radius: 50px;
  }
  
  .category-btn {
    margin-top: 20px;
    background-color: #5C0000;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-family: 'Urbanist', sans-serif;
    cursor: pointer;
  }
  
  .category-btn:hover {
    background-color: #FFD700; /* Yellow */
    color: #000; /* Optional: black text for contrast */
  }