* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex-grow: 1;
}

header {
  background-color: #d9c6a1;
  color: #5d4e2e;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  display: flex;
  align-items: center;
}

header .logo a {
  text-decoration: none;
  color: #5d4e2e;
  display: flex;
  align-items: center;
}

header .logo-img {
  width: 100px;
  height: auto;
  margin-right: 15px;
}

header .logo h1 {
  margin-bottom: 0;
  font-size: 2rem;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  display: inline;
  margin: 0 15px;
}

nav ul li a {
  color: #5d4e2e;
  text-decoration: none;
}

.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: #5d4e2e;
}
.banner {
  background: #ede8dd;
  color: #5d4e2e;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  margin: 2rem auto;
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 2rem; /* Space between image and text */
  justify-content: center;
}

.banner-image {
  width: 60%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
}

.banner-text {
  width: 40%;
  text-align: left;
}

.banner-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.banner-text p {
  font-size: 1.2rem;
  text-align: justify;
}

/* Responsive adjustments for medium and small screens */
@media screen and (max-width: 1024px) {
  .banner-content {
    flex-direction: column; /* Stack text and image on medium screens */
    align-items: center;
  }

  .banner-image {
    width: 80%; /* Adjust image size for medium screens */
  }

  .banner-text {
    width: 80%; /* Adjust text width for medium screens */
    text-align: center; /* Center text on medium screens */
  }

  .banner-text h2 {
    font-size: 1.8rem; /* Adjust heading size */
  }

  .banner-text p {
    font-size: 1rem; /* Adjust paragraph font size */
  }
}

@media screen and (max-width: 768px) {
  .banner-content {
    flex-direction: column; /* Stack content on mobile screens */
    align-items: center;
  }

  .banner-image {
    width: 90%; /* Adjust image width for small screens */
  }

  .banner-text {
    width: 90%; /* Adjust text width for small screens */
    text-align: center;
  }

  .banner-text h2 {
    font-size: 1.6rem; /* Adjust heading size further for smaller screens */
  }

  .banner-text p {
    font-size: 1rem; /* Adjust paragraph font size */
  }
}

.menu {
  text-align: center;
  padding: 2rem;
  background: #f1eeddfa;
  color: #5d4e2e;
}

.menu h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.menu-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-items: center;
}

.menu-item {
  text-align: center;
}

.menu-item img {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-bottom: 1rem;
}

.menu-item h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Responsive adjustments for medium and small screens */
@media screen and (max-width: 1024px) {
  .menu-images {
    grid-template-columns: repeat(
      2,
      1fr
    ); /* Adjust to 2 columns for medium screens */
  }

  .menu-item img {
    max-width: 300px; /* Resize images for medium screens */
  }

  .menu-item h3 {
    font-size: 1.3rem; /* Adjust heading size */
  }
}

@media screen and (max-width: 768px) {
  .menu-images {
    grid-template-columns: 1fr; /* Stack items in a single column on mobile screens */
  }

  .menu-item img {
    max-width: 100%; /* Make images responsive to screen size */
  }

  .menu-item h3 {
    font-size: 1.2rem; /* Adjust heading size for small screens */
  }
}

.hmenu {
  text-align: center;
  padding: 3rem; /* Increased padding */
  background: #f9f5ee;
  color: #5d4e2e;
}

.hmenu h2 {
  font-size: 2.5rem; /* Larger heading size */
  margin-bottom: 3rem;
}

.hmenu-container {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(400px, 1fr)
  ); /* Larger item width */
  gap: 2rem; /* Increased gap between items */
  max-width: 1100px;
  margin: 0 auto;
}

.hmenu-item {
  display: flex;
  align-items: center;
  gap: 1.5rem; /* Increased gap between image and text */
  background: #fff;
  padding: 2rem; /* Increased padding */
  border-radius: 12px;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1);
}

.hmenu-img {
  width: 50%; /* Increased width */
  max-width: 250px; /* Increased max-width */
  height: auto;
  border-radius: 8px;
}

.hmenu-text {
  width: 50%; /* Adjusted to balance image size */
  text-align: left;
}

.hmenu-text h3 {
  font-size: 2rem; /* Increased heading size */
  margin-bottom: 1rem;
}

.hmenu-text p {
  font-size: 1.3rem; /* Increased font size for description */
  color: #5d4e2e;
  text-align: justify;
}

/* Responsive: Stack items in a single column on smaller screens */
@media screen and (max-width: 768px) {
  .hmenu-container {
    grid-template-columns: 1fr;
  }

  .hmenu-item {
    flex-direction: column;
  }

  .hmenu-img {
    width: 80%; /* Adjusted image width on smaller screens */
    max-width: 100%;
  }

  .hmenu-text {
    width: 100%; /* Take full width on smaller screens */
  }
}

footer {
  text-align: center;
  background-color: #d9c6a1;
  color: #5d4e2e;
  padding: 1rem;
  width: 100%;
  margin-top: auto;
}

.about,
.contact {
  background-color: #e1cea7;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 800px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about h2,
.contact h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}
.about p {
  text-align: justify;
}
.about p,
.contact p {
  font-size: 1.2rem;
  color: #5d4e2e;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.social-links a {
  font-size: 30px;
  color: #5d4e2e;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.social-links a:hover {
  transform: scale(1.2);
  color: #b88b4a;
}

/* Responsive styles for the hamburger menu */
@media screen and (max-width: 768px) {
  nav ul {
    display: none; /* Hide the menu by default */
    flex-direction: column;
    background-color: #d9c6a1;
    position: absolute;
    top: 60px; /* Adjust this value based on your header height */
    right: 0;
    width: 100%;
    text-align: center;
  }

  nav ul li {
    margin: 10px 0;
  }

  .hamburger {
    display: block; /* Show the hamburger icon */
  }

  /* Add this rule to display the menu when the .open class is applied */
  nav ul.open {
    display: flex;
  }
}
