body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

header {
  background: #3e2723;
  color: #fff;
  padding: 1rem 2rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
}

.nav-links a.active {
  border-bottom: 2px solid #ffc107;
}

.hero {
  background: url("../images/banner.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 6rem 2rem;
}

.hero h1 {
  font-size: 3rem;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.5rem;
  background: #ffc107;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
}

.featured {
  padding: 2rem;
  text-align: center;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.card {
  background: #f8f8f8;
  padding: 1rem;
  border-radius: 8px;
  width: 200px;
}

.card img {
  width: 100%;
  border-radius: 8px;
}

.page-header {
  text-align: center;
  padding: 2rem;
  background: #f4f4f4;
}

.menu, .about, .contact {
  padding: 2rem;
}

.about {
  display: flex;
  gap: 2rem;
}

.about img {
  width: 300px;
  border-radius: 8px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
}

form input, form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  padding: 0.8rem;
  border: none;
  background: #3e2723;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
}

footer {
  background: #3e2723;
  color: #fff;
  text-align: center;
  padding: 1rem;
}
