* {
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
}

/*whole content css*/
.container-content {
  display: flex;
  flex-direction: column;
}
/*navbar css*/
.logo {
  width: 45px;
}

.header-content {
  height: auto;
  width: 100%;
  background-color: black;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menuBtn {
  text-decoration: none;
  color: white;
  margin: 10px;
  cursor: pointer;
}

.menuBtn:hover {
  background-color: white;
  color: black;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 2px;
}

/*responsiveness code for navbar*/
@media screen and (max-width: 600px) {
  .header-content {
    flex-direction: column;
  }
  .menus {
    display: flex;
    flex-direction: column;
  }
  .menuBtn {
    background-color: white;
    color: black;
    margin: 10px 0px;
    padding: 5px 10px;
    text-align: center;
    border-radius: 2px;
    cursor: pointer;
  }
}

/*css of hero section */

.hero-section {
  background-image: url("./Images/res.avif");
  height: 330px;
  width: 100%;
  background-size: cover;

  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  color: #f5f5f5;
}

.hero-section h1 {
  font-weight: bolder;
  font-size: 2.5rem;
}

.hero-section p {
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .hero-section {
    height: 280px;
    background-size: cover;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .hero-section {
    height: 220px;
    background-size: cover;
  }
  .hero-section h1 {
    font-size: 1.5rem;
  }
  .hero-section p {
    font-family: 0.9rem;
  }
}

/*css for about section*/
.about-section {
  padding: 20px 10px;
  background-color: #f8f8f8;
  text-align: center;
}
.about-section h1 {
  margin-bottom: 10px;
  font-size: 2rem;
  color: #333;
}

.about-section p {
  font-size: 1rem;
  color: #555;
  line-height: 1.4;
  margin-bottom: 30px;
}

/* Dishes Section */

.dish-section {
  text-align: center;
  background-color: #f4f4f4;
}

.dish-section h1 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  color: #333;
}

.dishes {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.dish {
  width: 200px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  padding: 0.5rem;
}
.dish img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 0.5rem;
}

.dish h3 {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 0.5rem;
}
.dish p {
  font-size: 0.9rem;
  color: #555;
}

/*css for contact section*/

.contact-section {
  padding: 1.8rem;
  text-align: center;
  background-color: #f4f4f4;
}
.contact-section h1 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  color: #333;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.contact-form,
.contact-info {
  width: 45%;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 5px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.contact-form button {
  background-color: black;
  color: white;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
}
.contact-info p {
  font-size: 1rem;
  color: #333;
  margin: 5px 0;
}

@media screen and (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-form,
  .contact-info {
    width: 80%;
    padding: 15px;
  }
}

@media screen and (max-width: 480px) {
  .contact-container {
    flex-direction: column;
  }
  .contact-form,
  .contact-info {
    width: 100%;
    padding: 15px;
  }
}

/*css for footer*/

.footer-content {
  background-color: #333;
  color: white;
  padding: 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  text-decoration: none;
  color: white;
  font-size: 0.9rem;
}
.footer-links a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    margin-top: 10px;
  }
}
