body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2d5a27;
  padding: 10px 20px;
  color: white;
}

header a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
}

.hero {
  background: url('images/hero-tree.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 2.5rem;
}

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

.services-preview, .services-list, .about {
  text-align: center;
  padding: 40px 20px;
}

.service-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 250px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

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

.gallery img {
  width: 100%;
  border-radius: 8px;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #2d5a27;
  color: white;
  margin-top: 40px;
}



body {
    background: linear-gradient(to bottom, #f4f4f4, #dfe5dc);
    font-family: 'Helvetica Neue', sans-serif;
    color: #2e2e2e;
    margin: 0;
    padding: 0;
}

nav {
    background-color: #2e4d34;
    padding: 10px;
    text-align: center;
}

.nav-button {
    background-color: #ffffff;
    border: 2px solid #4CAF50;
    color: #2e4d34;
    padding: 10px 20px;
    margin: 5px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-button:hover {
    background-color: #4CAF50;
    color: #fff;
}

a.call-button {
    background-color: #FF6600;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    display: inline-block;
    margin: 10px 0;
    transition: background 0.3s ease;
}

a.call-button:hover {
    background-color: #cc5200;
}

section img {
    transition: transform 0.3s ease;
}

section img:hover {
    transform: scale(1.05);
}



/* Improved navigation layout */
nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.nav-button {
    display: inline-block;
    margin: 5px;
    padding: 12px 18px;
    font-size: 1rem;
    border-radius: 6px;
    text-align: center;
}

@media (max-width: 600px) {
    nav {
        flex-direction: column;
        align-items: center;
    }

    .nav-button {
        width: 90%;
        max-width: 300px;
    }
}



/* DROPDOWN MENU STYLES */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2e4d34;
  padding: 10px 20px;
}

.menu-toggle {
  font-size: 26px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-links {
  display: none;
  flex-direction: column;
  background-color: #2e4d34;
  position: absolute;
  right: 20px;
  top: 60px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 999;
}

.nav-links a {
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.nav-links a:hover {
  background-color: #4CAF50;
}

.show-menu {
  display: flex !important;
}

@media(min-width: 768px) {
  .menu-toggle {
    display: none;
  }
  .nav-links {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: none;
    box-shadow: none;
  }
  .nav-links a {
    border: none;
    padding: 10px 16px;
  }
}
