/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}


/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #2b7a3a; /* match your theme */
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .main-nav {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
  }
  .main-nav.active {
    display: flex;
  }


.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
}

.logo {
  width: 100px;
  margin-right: 10px;
}

.brand-text h1 {
  font-size: 1.5rem;
  color: #006400;
}

.brand-text .tagline {
  font-size: 0.9rem;
  color: #666;
}

.main-nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.main-nav a:hover {
  color: #006400;
}

.whatsapp-cta {
  background: #25d366;
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.whatsapp-cta:hover {
  background: #1ebe5b;
}

/* Hero Section */
.hero {
  background: #f9f9f9;
  padding: 60px 0;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-left {
  flex: 1;
  padding: 20px;
}

.hero-left h2 {
  font-size: 2rem;
  color: #006400;
  margin-bottom: 15px;
}

.hero-left p {
  margin-bottom: 20px;
}

.hero-ctas .btn {
  display: inline-block;
  padding: 10px 20px;
  margin-right: 10px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.btn {
  background: #006400;
  color: #fff;
}

.btn:hover {
  background: #004d00;
}

.btn-outline {
  border: 2px solid #006400;
  color: #006400;
  background: transparent;
}

.btn-outline:hover {
  background: #006400;
  color: #fff;
}

.hero-right img {
  max-width: 300px;
}

/* Cultural BG */
.cultural-bg {
  background: #f4f0e8;
  padding: 40px 20px;
  text-align: center;
}

.cultural-bg h2 {
  margin-bottom: 15px;
}

/* Products */
.products-preview {
  padding: 50px 20px;
  text-align: center;
}

.products-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.product-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  max-width: 100px;
  margin-bottom: 15px;
}

/* Testimonials */
.testimonials {
  background: #f9f9f9;
  padding: 50px 20px;
  text-align: center;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* Footer */
.site-footer {
  padding: 30px 20px;
  color: #333;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-inner div {
  margin: 10px 0;
}

.site-footer a {
  color: #006400;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.copyright {
  text-align: center;
  padding-top: 10px;
  font-size: 0.8rem;
  color: #666;
}

/* Floating Buttons */
.float-btn {
  position: fixed;
  right: 15px;
  bottom: 80px;
  display: block;
  padding: 12px;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}

.float-btn.wa {
  background: #25d366;
  bottom: 80px;
}

.float-btn.insta {
  background: #e4405f;
  bottom: 20px;
}

/* Animations */
.fade-in {
  animation: fadeIn 1s ease-in-out;
}

.slide-up {
  animation: slideUp 1s ease-in-out;
}

.bounce {
  animation: bounce 1s infinite alternate;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes bounce {
  from { transform: translateY(0); }
  to { transform: translateY(-5px); }
}

