:root {
  --main-bg: #fff7f0;
  --accent: #8b4513;
  --text-dark: #2e2e2e;
  --text-light: #777;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--main-bg);
  color: var(--text-dark);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 40px 0;
}

.hero {
  background: url('https://images.unsplash.com/photo-1509042239860-f550ce710b93') no-repeat center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
}

.hero p {
  font-size: 1.2rem;
  margin: 20px 0;
}

.btn {
  background: var(--accent);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn:hover {
  background: #5a2e0f;
}

.about, .menu, .newsletter {
  text-align: center;
}

.menu .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: white;
  padding: 30px;
  width: 300px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
}

.newsletter form {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.newsletter input {
  padding: 10px;
  width: 300px;
  border: 1px solid #ccc;
  border-radius: 4px 0 0 4px;
  outline: none;
}

.newsletter button {
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

footer {
  background: #222;
  color: #eee;
  text-align: center;
  padding: 20px;
}