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

body {
  font-family: "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #333;
}
.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  padding: 2rem 0;
}

.hero {
  background-image: url(images/pexels-janetrangdoan-769969.jpg);
  background-size: cover;
  color: black;
  text-align: center;
  padding: 4rem 2rem;
}

.hero h1 {
  font-size: 3rem;
}

.cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.2rem;
  background-color: #f1faee;
  color: #1d3557;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.about,
.menu,
.contact {
  background-color: #f8f9fa;
  padding: 3rem 2rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.menu-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3%;
  margin: 0 auto;
  min-width: 100%;
  height: auto;
}

.item h3 {
  margin-bottom: 0.5rem;
}

.item {
  background: whitesmoke;
  padding: 2%;
  border-radius: 10px;
  width: 25%;
  text-align: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: black;
  border: solid 0.4rem var(--accent-dark);
}
.item img {
  height: auto;
  max-width: 100%;
  border-radius: 5px;
  margin: 0 auto;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #1d3557;
  color: white;
}

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

@media (max-width: 768px) {
  .item {
    width: 80%;
  }
}
