
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fff8e7;
  color: #333;
}

.hero {
  position: relative;
  background-image: url('hero-bg.jpg'); /* Simplified file name */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 100px 20px 60px 20px;
  text-align: center;
  z-index: 1;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.logo {
  max-width: 200px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 {
  font-size: 48px;
  margin: 0 0 10px 0;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 24px;
  background-color: #ffcc00;
  color: #000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.2s;
}

.btn:hover {
  background-color: #ff9100;
}

section {
  padding: 40px 20px;
  text-align: center;
}

.menu-preview {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.menu-preview img {
  width: 200px;
  border-radius: 8px;
}

footer {
  background: #111;
  color: #fff;
  padding: 20px;
  text-align: center;
}

/* Responsive design */
@media (max-width: 900px) {
  .hero {
    padding: 60px 10px 30px 10px;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero p {
    font-size: 16px;
  }
  .logo {
    max-width: 120px;
  }
  .menu-preview img {
    width: 130px;
  }
  section {
    padding: 24px 5px;
  }
}
