* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #fffaf5;
  color: #333;
}

header {
  background-color: #ff6347;
  color: white;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  font-size: 2rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  text-align: center;
  padding: 60px 20px;
  background: url('https://source.unsplash.com/1200x400/?food') center/cover no-repeat;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
}

.menu {
  padding: 40px 20px;
  text-align: center;
}

.cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  width: 300px;
  padding: 20px;
}

.card img {
  width: 100%;
  border-radius: 5px;
}

footer {
  text-align: center;
  background-color: #333;
  color: white;
  padding: 20px;
}

footer a {
  color: #ff6347;
  text-decoration: none;
}
