* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
  scroll-behavior: smooth;
}
body {
  background: #f6f8f4;
  color: #263238;
}
header {
  position: fixed;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 7%;
}
.logo {
  font-weight: 700;
  color: #2f7d32;
}
ul {
  display: flex;
  list-style: none;
  gap: 25px;
}
a {
  text-decoration: none;
  color: #333;
}
#toggle {
  display: none;
}
.hero {
  height: 100vh;
  background: url("assets/hero.jpg") center/cover fixed;
  display: grid;
  place-items: center;
}
.overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 60px;
  border-radius: 20px;
  color: #fff;
  text-align: center;
}
h1 {
  font-size: 3.5rem;
}
.btn {
  display: inline-block;
  margin-top: 20px;
  background: #39a34a;
  color: #fff;
  padding: 15px 30px;
  border-radius: 40px;
}
.highlights {
  display: flex;
  justify-content: space-around;
  background: #2f7d32;
  color: #fff;
  padding: 45px;
  flex-wrap: wrap;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 80px 7%;
  align-items: center;
}
.split img,
.gallery img {
  width: 100%;
  border-radius: 16px;
}
h2 {
  text-align: center;
  margin-bottom: 30px;
}
.grid,
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  padding: 0 7% 80px;
}
.card {
  padding: 40px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: 0.3s;
}
.card:hover,
.gallery img:hover {
  transform: translateY(-6px);
}
.cta {
  text-align: center;
  background: #1f5f28;
  color: #fff;
  padding: 70px;
}
#contact {
  padding: 70px 7%;
}
form {
  max-width: 650px;
  margin: auto;
  display: grid;
  gap: 15px;
}
input,
textarea,
button {
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
}
button {
  background: #2f7d32;
  color: #fff;
  border: none;
}
footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: #fff;
}
@media (max-width: 800px) {
  .split {
    grid-template-columns: 1fr;
  }
  ul {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
  }
  ul.show {
    display: flex;
  }
  #toggle {
    display: block;
  }
}
