/* =========================
   RESET & BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
}

/* =========================
   GLOBAL ANIMATION
========================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero,
.section,
.site-footer {
  animation: fadeUp 0.8s ease-in-out both;
}
.hero-icons {
  margin: 1rem 0;
  display: flex;
  justify-content: center;
  gap: 2rem; /* space between icons */
  font-size: 1.5rem;
  color: #ff6600; /* icon color */
}

.hero-social-icons {
  margin: 1.5rem 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.hero-social-icons a {
  color: #fff; /* icon color */
  font-size: 1.5rem;
  transition: transform 0.3s, color 0.3s;
}

.hero-social-icons a:hover {
  color: #ff6600; /* change on hover */
  transform: scale(1.2);
}



/* =========================
   NAVBAR
========================= */
.navbar {
  background: #ffffff;
  padding: 1rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  color: #2f7d32;
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.navbar nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -4px;
  background-color: #2f7d32;
  transition: width 0.3s ease;
}

.navbar nav a:hover {
  color: #2f7d32;
}

.navbar nav a:hover::after {
  width: 100%;
}

/* =========================
   HERO SECTION
========================= */
.hero {
  background: linear-gradient(rgba(47,125,50,0.85), rgba(47,125,50,0.85)), url('hero-bg.jpg') center/cover no-repeat;
  color: #ffffff;
  text-align: center;
  padding: 5rem 2rem;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  animation: fadeUp 1s ease-in-out both;
}

.hero p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: #ffffff;
  color: #2f7d32;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background: #e8f5e9;
  transform: translateY(-3px);
}

/* =========================
   SECTIONS
========================= */
.section {
  padding: 4rem 3rem;
  max-width: 1200px;
  margin: auto;
}

.section h2 {
  text-align: center;
  color: #2f7d32;
  margin-bottom: 2rem;
}

.section p {
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.light-bg {
  background: #f4f8f5;
}

/* =========================
   PRODUCTS
========================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.product-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.product-image {
  background: #c8e6c9;
  height: 150px;
  border-radius: 12px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2f7d32;
  font-weight: bold;
}

/* =========================
   GALLERY
========================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  background: #e0f2f1;
  height: 150px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* =========================
   TESTIMONIALS
========================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.testimonial-card span {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
  color: #2f7d32;
}

/* =========================
   CONTACT
========================= */
#contact p {
  margin-top: 0.5rem;
  font-size: 1rem;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: #1b5e20;
  color: #ffffff;
  padding: 3rem 2rem 1.5rem;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.footer-column h3 {
  margin-bottom: 1rem;
  color: #c8e6c9;
}

.footer-column p {
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.85rem;
  color: #e0f2f1;
}
.social-icons {
  margin-top: 1rem;
}

.social-icons a {
  color: #fff; /* or your preferred color */
  margin-right: 0.8rem;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #00aced; /* change color on hover */
}


/* =f========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
  }

  .hero h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}

.scroll-animation {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.scroll-animation.active {
  opacity: 1;
  transform: translateY(0);
}
