
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

body {
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
}

h1, h2 {
    text-align: center;
    color: #2c3e50;
}

p {
    text-align: center;
    color: #555;
    line-height: 1.6;
}


nav {
    background: #2286B8;
    height: 80px;
    width: 100%;
    z-index: 1000;
}

label.logo img {
    vertical-align: middle;
    height: 50px;
    width: auto;
    margin: 15px;
}

nav ul {
    float: right;
    margin-right: 20px;
}

nav ul li {
    display: inline-block;
    line-height: 80px;
    margin: 0 10px;
}

nav ul li a {
    color: white;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 7px 10px;
    border-radius: 5px;
    transition: background 0.3s;
}

nav ul li a:hover {
    background: #18638A;
}

.checkbtn {
    font-size: 22px;
    color: white;
    float: right;
    line-height: 80px;
    margin-right: 30px;
    cursor: pointer;
    display: none;
  }
  
  #check {
    display: none;
  }


  @media (max-width: 890px) {
    .checkbtn {
      display: block;
    }

    label.logo {
      font-size: 22px;
    }
    nav {
      width: 100vw;
    }
    nav ul {
      position: fixed;
      width: 100%;
      height: 100vh;
      background: #2c3e50;
      top: 80px;
      left: -100%;
      text-align: center;
      transition: all .5s;
      z-index: 10000;
    }
  
    nav ul li {
      display: block;
      margin: 50px 0;
      line-height: 30px;
    }
  
    nav ul li a {
      font-size: 20px;
    }
  
  
  
    #check:checked~ul {
      left: 0;
    }
  }

  
  .food-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px auto;
    width: 90%;
    max-width: 1200px;
}

.food-card {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.food-card:hover {
    transform: scale(1.02);
}

/* Responsive Image Gallery */
.image-gallery {
    text-align: center;
    margin: 40px 0;
}

.image-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.gallery-image {
    width: 30%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
}


@media (max-width: 1024px) {
    .gallery-image {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .gallery-image {
        width: 90%;
    }
}

/* YouTube Video Section */
.youtube-video {
    text-align: center;
    margin: 40px 0;
}

.youtube-video iframe {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

