body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: #fff9f2;
    color: #2c1e0f;
  }
  header {
    background: #ff4d00;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    margin-right: 0px;
  }
  nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  nav ul li{
    width: 50%;
    padding: 10px;
  }
  h1{
    color: #1100ff;
  }
  .pop{
    color: #2bff00;
    text-decoration: underline;
    letter-spacing: 5px;
  }
  nav ul li:hover{
    background-color: aqua;
    border-radius: 5px;
  }
  nav a {
    text-align: center;
    text-decoration: none;
    color: white;
    font-weight: 500;
  }
  .hero {
    text-align: center;
    background: url("CHEESE.jpeg") no-repeat center/cover;
    color: white;
    padding: 6rem 2rem;
  }
  .hero h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
  }
  .btn {
    background: #ffd700;
    color: #2c1e0f;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
  }
  #menu {
    padding: 3rem 2rem;
    background: #bbd6d6;
  }
  .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  }
  .item {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  .item > img{
    height: 250px;
    border-radius: 10px;
    width: 100%;
  }
  #contact {
    padding: 3rem 2rem;
    background: #ffe5b4;
  }
  .whatsapp {
    display: inline-block;
    margin-top: 1rem;
    background: #25d366;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
  }
  footer {
    text-align: center;
    padding: 1rem;
    background: #ff4d00;
    color: white;
  }