* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #f4f4f4;
  color: #222;
}

/* HERO */
.hero {
  height: 100vh;
  background: url("https://images.unsplash.com/photo-1544025162-d76694265947") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  background: rgba(0,0,0,0.65);
  padding: 40px;
  color: white;
  text-align: center;
  border-radius: 15px;
}

.hero-content h1 {
  font-size: 48px;
}

.phone {
  margin: 10px 0;
  font-size: 18px;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 30px;
  background: #e63946;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.btn:hover {
  background: #b71c1c;
}

/* SECTIONS */
section {
  padding: 60px 20px;
  text-align: center;
}

.cuisine-cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.cuisine-card {
  background: white;
  padding: 30px;
  width: 260px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* CTA */
.cta {
  background: #111;
  color: white;
}

/* MENU PAGE */
.menu-header {
  background: #111;
  color: white;
  padding: 40px;
  text-align: center;
}

.menu-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.menu-box {
  background: white;
  padding: 30px;
  width: 300px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.menu-box ul {
  list-style: none;
  margin-top: 15px;
}

.menu-box li {
  padding: 6px 0;
}

/* FOOTER */
footer {
  background: #000;
  color: white;
  text-align: center;
  padding: 15px;
}