
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: #f4fff5;
  color: #2e2e2e;
}
header {
  background: url('../images/hero.jpg') center/cover no-repeat;
  height: 60vh;
  color: white;
  text-align: center;
  padding-top: 100px;
}
header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
header p {
  font-size: 1.25rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
header h1,
header p {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.btn {
  display: inline-block;
  background: #3a6e4f;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 20px;
}
section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}
.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.grid img {
  width: 100%;
  border-radius: 8px;
}
.carousel {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}
.carousel img {
  height: 200px;
  border-radius: 10px;
}
footer {
  background: #2e5339;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}
