* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #f8f3ed;
  color: #4b2e2e;
}

header {
  background-color: #4b2e2e;
  padding: 15px 50px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  color: #fff;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

nav ul li a:hover, .active {
  color: #d4a373;
}

.hero {
  height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.hero-text h2 {
  font-size: 3rem;
}
span{
  color:black;
}

.btn {
  background-color: #322417;
  color: #cab6b6;
  padding: 10px 20px;
  text-decoration: none;
  margin-top: 20px;
  display: inline-block;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #c18f5c;
}

.menu-section, .contact-section, .about {
  padding: 50px;
  text-align: center;
}

.menu-grid {
  margin-top: 50px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  width: 250px;
  transition: transform 0.3s;
}

.card img {
  width: 100%;
  border-radius: 10px;
}

.card:hover {
  transform: scale(1.05);
}

.price {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #d4a373;
}

form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: auto;
  gap: 10px;
  margin-top: 30px;
}

form input, form textarea, form button {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  background-color: #4b2e2e;
  color: white;
  cursor: pointer;
}

form button:hover {
  background-color: #d4a373;
}

footer {
  background-color: #4b2e2e;
  color: white;
  text-align: center;
  padding: 10px;
  margin-top: 30px;
}

