/* Reset */
     * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
      background: #fdfdfd;
      color: #333;
      line-height: 1.6;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #fff;
      box-shadow: 0 2px 4px rgba(0,0,0,0.05);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: bold;
      font-size: 1.2rem;
      color: #e63946;
    }

    .logo img {
      height: 40px;
    }

    .hero {
      padding: 80px 20px;
      text-align: center;
      background-color: #fff0f0;
    }

    .hero h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: #e63946;
    }

    .hero p {
      font-size: 1.2rem;
      margin-bottom: 10px;
      color: #444;
    }

    .section {
      padding: 50px 20px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .section h3 {
      font-size: 1.8rem;
      color: #e63946;
      margin-bottom: 20px;
      text-align: center;
    }

    .section p {
      font-size: 1rem;
      color: #555;
      margin-bottom: 15px;
      text-align: center;
    }

    .footer {
      text-align: center;
      padding: 20px;
      font-size: 0.9rem;
      background: #ff6600;
      color: #888;
      border-top: 1px solid #eee;
    }

    #ham {
        display: none;
    }

    @media screen and (max-width: 500px) {
      .hero h2 {
        font-size: 1.7rem;
      }

      .hero p {
        font-size: 1rem;
      }

      .logo {
        font-size: 1rem;
      }

      .logo img {
        height: 30px;
      }

      .section h3 {
        font-size: 1.4rem;
      }

      .section p {
        font-size: 0.95rem;
      }
    }


/* Menu Section */
/* .menu {
  padding: 60px 20px;
  text-align: center;
}

.menu h2 {
  color: #e63946;
  font-size: 2rem;
  margin-bottom: 30px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

#ham {
        display: none;
    }

/* Gallery Section */
/* .gallery {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.gallery h2 {
  color: #e63946;
  font-size: 2rem;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 0 5%;
}

.gallery-grid img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

#ham {
        display: none;
    }


/* Testimonials */
/* .testimonials {
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  color: #e63946;
  margin-bottom: 30px;
}

.testimonial-grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial {
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}

.testimonial h4 {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: bold;
  color: #e63946;
}

#ham {
        display: none;
    } */

/* Contact Section */
/* .contact {
  padding: 60px 20px;
  text-align: center;
}

.contact h2 {
  font-size: 2rem;
  color: #e63946;
  margin-bottom: 15px;
}

.contact p {
  font-size: 1rem;
  color: #555;
}

#ham {
        display: none;
    } */ 

/* Footer */
/* .footer {
  background: #e63946;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
} */

/* WhatsApp Floating Button */
/* .whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99;
} */

/* .whatsapp-float img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}


.food-card a {
  display: inline-block;
  background: #e63946;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.food-card a:hover {
  background: #d62828;
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

section > div > .food1 {
    height: 47vh;
}

section > div > .food2 {
    height: 47vh;
}

section > div > .food6 {
    height: 47vh;
} */


/* Responsive */
/* @media (max-width: 500px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
} */



/* About Page Styles */
.about-page {
  padding: 60px 20px;
  background-color: #fff;
}

.about h2,
.why-choose-us h2 {
  text-align: center;
  color: #e63946;
  font-size: 2rem;
  margin-bottom: 30px;
}

.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto 60px;
  align-items: center;
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #555;
}

.about-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.why-choose-us {
  background-color: #f9f9f9;
  padding: 40px 20px;
}

.why-choose-us ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}

.why-choose-us li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  text-align: center;
}

#ham {
        display: none;
    }

/* Responsive */
@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-text, .about-image {
    width: 100%;
  }

}


/*< -- menu page --> */
/* .menu-page {
  padding: 40px 20px;
}

.menu-page .menu h2 {
  text-align: center;
  font-size: 2rem;
  color: #e63946;
  margin-bottom: 40px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 0 5%;
}

.food-card.no-image {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.food-card.no-image:hover {
  transform: translateY(-5px);
}

.food-card .info h3 {
  margin-bottom: 10px;
  color: #222;
  font-size: 1.2rem;
}

.food-card .info p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.food-card a {
  background: #e63946;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.food-card a:hover {
  background: #d62828;
  transform: scale(1.05);
} */

#ham {
        display: none;
    }


/* <-- gallery --> */
.gallery-page {
  padding: 60px 20px;
}

.gallery h2 {
  text-align: center;
  color: #e63946;
  font-size: 2rem;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 0 5%;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

#ham {
        display: none;
    }



/* <-- testimonia --> */

body {
      font-family: 'Segoe UI', sans-serif;
      margin: 0;
      background: #f9f9f9;
    }

    .header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #fff;
      box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-img {
      height: 40px;
    }

    .nav a {
      margin-left: 20px;
      text-decoration: none;
      color: #333;
      font-weight: 500;
    }

    .testimonials-page {
      padding: 60px 20px;
    }

    .testimonials h2 {
      text-align: center;
      font-size: 2rem;
      color: #e63946;
      margin-bottom: 40px;
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 30px;
      padding: 0 5%;
    }

    .testimonial-card {
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
      transition: transform 0.3s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-4px);
    }

    .testimonial-card p {
      font-size: 0.95rem;
      color: #333;
      margin-bottom: 15px;
      line-height: 1.5;
    }

    .testimonial-card h4 {
      font-weight: 600;
      color: #444;
      font-size: 0.9rem;
      padding: 0 100px;
    }

    .footer {
      text-align: center;
      padding: 20px;
      font-size: 0.9rem;
      background: #ff6600;
      margin-top: 60px;
      color: #888;
      border-top: 1px solid #eee;
    }

    #ham {
        display: none;
    }

    @media (max-width: 500px) {
      .nav a {
        margin-left: 10px;
        font-size: 0.9rem;
      }

      .testimonial-card {
        padding: 16px;
      }
    }




    /* Contact */
     body {
      font-family: 'Segoe UI', sans-serif;
      margin: 0;
      background: #f9f9f9;
    }

    .header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #fff;
      box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-img {
      height: 40px;
    }

    .nav a {
      margin-left: 20px;
      text-decoration: none;
      color: #333;
      font-weight: 500;
    }

    .contact-page {
      padding: 60px 20px;
    }

    .contact-page h2 {
      text-align: center;
      color: #e63946;
      font-size: 2rem;
      margin-bottom: 30px;
    }

    .contact-info {
      max-width: 600px;
      margin: 0 auto;
      background: #fff;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    }

    .contact-info p {
      font-size: 1rem;
      margin-bottom: 15px;
      color: #333;
    }

    .contact-info strong {
      display: inline-block;
      width: 100px;
      color: #555;
    }

    .contact-info a {
      color: #e63946;
      text-decoration: none;
    }

    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 55px;
      height: 55px;
      border-radius: 50%;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      z-index: 999;
    }

    .whatsapp-float img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .footer {
      text-align: center;
      padding: 20px;
      font-size: 0.9rem;
      background: #ea9355;
      margin-top: 60px;
      color: black;
      border-top: 1px solid #eee;
    }

    #ham {
        display: none;
    }

    @media screen and (max-width: 500px) {
  .nav a {
    margin-left: 10px;
    font-size: 0.9rem;
  } 

  .logo-img {
    height: 30px;
  }

  .logo span {
    font-size: 1rem;
  }

  .contact-info {
    padding: 20px;
    font-size: 0.95rem;
  }

  .contact-info p {
    font-size: 0.9rem;
  }

  .contact-page h2 {
    font-size: 1.5rem;
  }

  .header{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .nav {
    display: flex;
     flex-wrap: wrap;
    gap: 10px;
    display: none;
  }

  header #ham {
display: flex;
position: absolute;
right: 20px;
top: 13px;
color: brown;
}

.show {
    display: flex;
    justify-content: flex-end;
}

header > nav {
    width: 100%;
    flex-flow: column;
    align-items: flex-end;
}

}




/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  padding: 20px;
  background-color: #fefefe;
  color: #333;
}

/* HEADER */
.header {
  display: flex;
   justify-content: space-between; 
   align-items: center; 
   padding: 10px 20px;  
  background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
  position: sticky;
  top: 0; 
 z-index: 1000; 
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 40px;
  height: 60px;
   border-radius: 50%; 
  object-fit: cover;
}

.nav {
  display: flex;
  gap: 15px;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.nav a:hover {
  color: #e63946;
}

/* Hamburger */
#ham {
  display: none;
  cursor: pointer;
}

/* MENU GRID */
.menu-page h2 {
  text-align: center;
  margin: 30px 0 20px;
  color: #e63946;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* MENU CARD */
.food-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}

.food-card:hover {
  transform: scale(1.02);
}

.food-card h3 {
  margin-bottom: 10px;
  font-size: 16px;
}

/* BUTTON */
button {
  background-color: #ff6600;
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #e65c00;
}

/* CART */
.cart-section {
  margin-top: 40px;
  padding: 20px;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.cart-section h2 {
  margin-bottom: 15px;
  text-align: center;
}

#cart {
  list-style: none;
  padding-left: 0;
  margin-bottom: 10px;
}

#cart li {
  margin-bottom: 5px;
  font-size: 15px;
}

#total {
  font-weight: bold;
  text-align: center;
  font-size: 16px;
  margin-bottom: 10px;
}

.place-order {
  display: block;
  width: 100%;
  background-color: green;
  font-size: 16px;
  margin-top: 10px;
}

.place-order:hover {
  background-color: darkgreen;
}

.footer {
      text-align: center;
      padding: 20px;
      font-size: 0.9rem;
      background: #e92636b7;
      margin-top: 60px;
      color: black;
      border-top: 1px solid #eee;
    }

/* ✅ MEDIA QUERY FOR SMALL SCREENS */
@media screen and (max-width: 500px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .food-card {
    width: 100%;
  }

  .nav {
    position: absolute;
    top: 60px;
    right: 0;
    background: white;
    flex-direction: column;
    width: 100%;
    text-align: center;
    display: none;
    padding: 10px 0;
  }

  .nav.show {
    display: flex;
  }

   #ham {
    display: block;
  } 

  .place-order, button {
    width: 100%;
  }
}
