* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f8f4ef;
  color: #333;
}

header {
  background: #4e342e;
  color: white;
  padding: 15px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
}

.hero {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-content {
  text-align: center;
  color: white;
}

.hero h2 {
  font-size: 55px;
}

.hero p {
  margin: 20px 0;
  font-size: 20px;
}

.btn {
  display: inline-block;
  background: #d2691e;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
}

section {
  padding: 70px 10%;
}

section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.menu-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card span {
  display: block;
  margin-top: 15px;
  color: #d2691e;
  font-weight: bold;
}

#about,
#contact {
  text-align: center;
}

footer {
  background: #4e342e;
  color: white;
  text-align: center;
  padding: 20px;
}
