/* Global */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background: #fdf6f0;
  color: #333;
}

h1, h2, h3 {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Hero Section */
.hero {
  background: url('https://images.unsplash.com/photo-1550258987-190a2d41a8ba?fit=crop&w=1200&q=80') center/cover no-repeat;
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero .overlay {
  background: rgba(0,0,0,0.5);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

/* Menu Section */
.menu-section {
  padding: 40px 20px;
  text-align: center;
}

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

.menu-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 160px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.menu-card:hover {
  transform: translateY(-5px);
}

/* Promotions Section */
.promotions-section {
  background: #fff5e6;
  padding: 30px 20px;
  text-align: center;
  margin: 30px 0;
  border-radius: 12px;
}

/* Review Section */
.review-section {
  padding: 30px 20px;
  text-align: center;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
  font-size: 0.9em;
}

/* Responsive */
@media(max-width: 600px) {
  .menu-cards {
    flex-direction: column;
    gap: 15px;
  }

  .menu-card {
    width: 80%;
    margin: 0 auto;
  }
}
