 * { margin:0; padding:0; box-sizing:border-box; }
    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #f9f5f0;
      color: #2c1e0f;
      line-height: 1.6;
    }
    header {
      background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.75)), url('https://thegrandkhulna.com/wp-content/uploads/2025/08/rsz_2dsc00701.jpg');
      background-size: cover;
      background-position: center;
      color: white;
      text-align: center;
      padding: 130px 20px 100px;
    }
    header h1 {
      font-size: 3.8rem;
      margin-bottom: 12px;
      text-shadow: 3px 3px 12px #000;
    }
    header p {
      font-size: 1.5rem;
      opacity: 0.95;
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .menu-section {
      margin: 70px 0;
      background: white;
      border-radius: 15px;
      box-shadow: 0 12px 35px rgba(0,0,0,0.12);
      overflow: hidden;
    }
    .menu-section h2 {
      background: #674702;
      color: white;
      padding: 22px 30px;
      font-size: 2.2rem;
      text-align: center;
    }
    .menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
      gap: 30px;
      padding: 35px;
    }
    .item {
      background: #fffef8;
      border-radius: 12px;
      padding: 20px;
      border: 1px solid #eee;
      transition: all 0.3s ease;
      text-align: center;
    }
    .item:hover {
      transform: translateY(-10px);
      box-shadow: 0 18px 40px rgba(0,0,0,0.15);
      border-color: #8b0000;
    }
    .item img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 15px;
    }
    .item-name {
      font-size: 1.45rem;
      font-weight: 700;
      color: #2c180f;
      margin-bottom: 8px;
    }
    .item-desc {
      color: #555;
      font-size: 1rem;
      margin-bottom: 10px;
    }
    .price {
      font-weight: bold;
      color: #8b0000;
      font-size: 1.35rem;
    }
    .dessert-section h2 { background: #926d07; }
    footer {
      text-align: center;
      padding: 60px 20px;
      background: #2c1e0f;
      color: #ccc;
      margin-top: 80px;
    }
    @media (max-width: 700px) {
      header h1 { font-size: 2.8rem; }
      header { padding: 90px 15px 70px; }
      .menu-grid { grid-template-columns: 1fr; }
    }