body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  line-height: 1.6;
  color: #333;
}

.hero {
  background: url('../images/hero.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 3rem;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #e67e22;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 15px;
}

.section {
  padding: 60px 20px;
  text-align: center;
}

.menu-grid, .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.menu-item {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 8px;
}

.footer {
  background: #222;
  color: white;
  padding: 40px 20px;
  text-align: center;
}
