body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background-color: #fffaf5;
  color: #333;
}

/* Header */
header {
  background-color: #8b4513;
  color: white;
  text-align: center;
  padding: 20px;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: #ffcc66;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 20px;
  background-size: cover;
  background-position: center;
  color: white;
  box-shadow: inset 0 0 0 1000px rgba(0,0,0,0.4);
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero button {
  background-color: #ffcc66;
  border: none;
  padding: 12px 25px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  transition: 0.3s;
}

.hero button:hover {
  background-color: #ffc04d;
}

/* Menu */
.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px;
}

.item {
  background-color: #fff3e0;
  border-radius: 10px;
  width: 220px;
  text-align: center;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.item:hover {
  transform: scale(1.05);
}

.item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.item h3 {
  color: #8b4513;
}

/* About */
.about {
  padding: 50px 20px;
  text-align: center;
}

.about h2 {
  color: #8b4513;
}

.about p {
  max-width: 700px;
  margin: 10px auto;
  line-height: 1.6;
}

.team {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px;
}

.team img {
  width: 200px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Contact */
.contact {
  padding: 50px 20px;
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: 30px auto;
  background: #fff3e0;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

form input,
form textarea {
  margin-bottom: 10px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
}

form button {
  background-color: #8b4513;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

form button:hover {
  background-color: #a0522d;
}

.details {
  margin-top: 20px;
  line-height: 1.8;
}

.map {
  margin-top: 30px;
}

/* Footer */
footer {
  text-align: center;
  background-color: #8b4513;
  color: white;
  padding: 15px;
  margin-top: 40px;
}
