
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f9f4;
  color: #333;
}

header {
  background-color: #2e5d34;
  color: white;
  padding: 10px 0;
}

.top-bar {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 0.9em;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

nav h1 {
  font-size: 1.8em;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
}

nav a {
  color: white;
  text-decoration: none;
}

.hero {
  background: linear-gradient(rgba(0, 60, 0, 0.5), rgba(0, 60, 0, 0.5)), url('images/forest-hero.jpg') no-repeat center center;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.cta-button {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 20px;
  background-color: #2e5d34;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

.service-grid, .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.service-item img, .gallery-grid img {
  width: 100%;
  border-radius: 8px;
}

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

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

button {
  background-color: #2e5d34;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

footer {
  background-color: #2e5d34;
  color: white;
  text-align: center;
  padding: 10px 0;
}

/* Mobile styles */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
    font-size: 1.5em;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    margin-top: 10px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #2e5d34;
    margin-top: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .hero {
    padding: 60px 20px;
  }

  h1, h2 {
    font-size: 1.4em;
  }

  .service-grid, .gallery-grid {
    grid-template-columns: 1fr;
  }

  form {
    width: 100%;
  }
}

/* Default hidden toggle */
.menu-toggle {
  display: none;
}

input, textarea {
  padding: 14px;
  font-size: 1em;
}


/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Button hover effect */
.cta-button:hover,
button:hover {
  background-color: #3e8147;
  transform: scale(1.05);
  transition: background-color 0.3s, transform 0.3s;
}
