/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fdfcfb;
  color: #222b2d;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  width: 100%;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #2A8420;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 1.8rem;
  font-weight: 600;
  padding: 0.6rem 0rem 0rem 0rem;
  width: 180px;
	
	
}

/* Nav Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #222b2d;
  font-weight: 700;
  transition: color 0.15s;
}

.nav-links a:hover {
  color: #ffffff;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  width: 30px;
  height: 22px;
  gap: 5px;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: #222;
  border-radius: 5px;
  transition: all 0.4s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}



/* Mobile Nav */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: -100%;  
    width: 60%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    gap: 1.5rem;
    box-shadow: -2px 0 10px rgba(0,0,0,0.15);
    transition: right 0.4s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }
}

/* Hero Section */
.hero {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0rem 0 0.4rem 0;
  
}

/* Hero Banner */
.herobanner {
  text-align: center;
  padding: 4rem 1rem 4rem 1rem;
  color: #ffffff;
  background: none;
  font-size: 1.4rem;
  
}

.hero-section {
  background-image: url('images/BackgroundPlaceholder-01.jpg'); /* Replace with your image path */
  background-size:cover;
  background-position: bottom; /* Centers the image */
  background-repeat: no-repeat; /* Prevents image repetition */
  min-height: 100%;
  display: flex; /* Use flexbox for content alignment */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white; /* Adjust text color for readability against the background */
  text-align: center;
  padding: 20px;
}

.hero-images {
  display: flex;
  gap: 2rem;
  align-items: center;
}

/* Base image styling */
.hero-image img {
  width: 100%;
  height: 100%;
  max-width: 200px;
  transition: transform 0.1s ease, filter 0.2s ease;
  cursor: pointer;
  vertical-align: bottom;
}

/* Hover animation for ALL images */
.hero-image img:hover {
  transform: scale(.96) rotate(0deg);
  filter: drop-shadow(0rem 0rem 0.5rem rgba(0, 40, 0, 0.3)) brightness(0.9);

}

.hero-empty {
	height:300px;
}

.hero-image.center dotlottie-wc {
  width: 300px;
  height: 300px;
  transform: scale(.9);
  transition: transform 0.1s ease, filter 0.1s ease;
  display: block;
  margin: 0 auto;
}

.hero-image.center dotlottie-wc:hover {
  transform: scale(1.0);
  filter: drop-shadow(0rem 0rem 0.5rem rgba(176, 40, 0, 0.5));

}



/* Banner */
.banner {
  text-align: center;
  padding: 4rem 1rem;
  background: #2A8420;
  color: #fff;
}



.banner h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.banner-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.btn {
  
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s, transform 0.3s;
}

.btn.primary {
  padding: 0.8rem 2rem 0.6rem 2rem;
  background: #fff;
  color: #2A8420;
}

.btn.secondary {
  padding: 0.7rem 2rem 0.6rem 2rem;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn:hover {
  transform: translateY(-3px);
  background: #222;
  color: #fff;
}

.copyrightbanner {
  text-align: center;
  padding: 1rem 1rem;
  background: #222b2d;
}

.copyrightline {
	align-content: center;
	color: #6A827E;
	font-size: 12px;
	padding: 0rem 0rem 0rem 0rem;
}

/* Responsive Images */
@media (max-width: 768px) {
  .hero-images {
    flex-direction: column;
  }

  .hero-image.left,
  .hero-image.right,
  .hero-images.pond{
    display: none;
  }

  .hero-image.center img {
    max-width: 90%;
	align-content: center;
  }

  .banner h2 {
    font-size: 1.6rem;
  }
	
	.banner-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
	
.herobanner {
		padding: 1rem 0rem 0rem 0rem;
		line-height: 200%;
}

	.nav-links.active{
		right:0;
		position:absolute;
		top:70px;
		display:flex;
	}
	
}
