body {
  margin: 0;
  font-family: "Arial, sans-serif";
  line-height: 1.6;
}

.hero {
  background-image: url("burger3.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  height: 100vh;
  text-align: center;
  position: relative;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ffa500;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  right: 35%;
}

.hero-text h2 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-text .cta {
  display: inline-block;
  padding: 10px 20px;
  background: #ffa500;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background (0.3s);
}

.hero-text .cta:hover {
  background: #ff8000;
}

.about,
.menu {
  padding: 40px 20px;
  text-align: center;
}

.about img {
  width: 100%;
  max-width: 600px;
  margin: 20px 0;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.479);
}

.menu-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.menu-item {
  max-width: 300px;
  text-align: center;
}

.menu-item img {
  width: 100%;
  border-radius: 10px;
}

.footer {
  background: rgb(92, 92, 92);
  color: #fff;
  padding: 10px 20px;
  text-align: center;
}
