
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #f9f6f2;
  color: #3e2f1c;
}
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}
.header {
  background: #5c3d2e;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
}
.nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #3e2f1c;
}
.nav a {
  color: white;
  padding: 1rem;
  text-decoration: none;
}
.nav a:hover {
  background-color: #5c3d2e;
}
.hero {
  position: relative;
  text-align: center;
}
.hero img {
  width: 100%;
  height: auto;
  border-bottom: 4px solid #d4af37;
}
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.8);
  padding: 1rem 2rem;
  border-radius: 10px;
}
.section {
  padding: 2rem 1rem;
  text-align: center;
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.feature {
  background: #fff;
  padding: 1rem;
  border: 1px solid #e0dcd2;
  border-radius: 10px;
}
.footer {
  background: #3e2f1c;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  position: fixed;
  bottom: 0;
  width: 100%;
}
@media(max-width: 768px) {
  .hero-text {
    font-size: 0.9rem;
    padding: 1rem;
  }
}
