
    * { 
        box-sizing: border-box; margin: 0; padding: 0;
     }
    body {
      font-family: Arial, sans-serif;
   
      color:  #0c111b;
      line-height: 1.6;
    }
    header {
      background:  #3e569b;
      color: white;
      padding: 20px 10%;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    header h1 {
      font-size: 24px;
      font-weight: bold;
    }
    nav a {
      margin-left: 20px;
      text-decoration: none;
      color: white;
      font-weight: 500;
      transition: 0.3s;
    }
    nav a:hover {
      text-decoration: underline;
    }
    .food{
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 50px 10%;
      background: white;
    }
    .food-text {
      max-width: 50%;
    }
    .food-text h2 {
      font-size: 36px;
      margin-bottom: 16px;
    }
    .food-text p {
      font-size: 16px;
      margin-bottom: 20px;
      color: #4a5364;
    }
    .btn {
      padding: 12px 24px;
      background: #8f3671;
      color: white;
      border: none;
      border-radius: 8px;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s ease;
    }
    .btn:hover {
      background: #a10546;
    }
    .food img {
      width: 400px;
      border-radius: 16px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }
    .menu{
      padding: 50px 10%;
      background: wheat;
      text-align: center;
    }
    .menu h2 {
      font-size: 28px;
      margin-bottom: 30px;
    }
    .menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
    }
    .menu-card {
      background:whitesmoke;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      transition: transform 0.3s ease;
    }
    .menu-card:hover {
      transform: translateY(-6px);
    }
    .menu-card img {
      width: 100%;
      height: 160px;
      object-fit: cover;
    }
    .menu-card h3 {
      font-size: 18px;
      margin: 12px;
    }
    .menu-card p {
      font-size: 14px;
      color: var(--muted);
      margin: 0 12px 12px;
    }
    footer {
      background: #1f2937;
      color: white;
      text-align: center;
      padding: 20px 10%;
      margin-top: 40px;
    }