/* Reset & Variables */
:root {
    --primary: #2d6a4f; /* Deep Green */
    --secondary: #d8f3dc; /* Light Green */
    --accent: #b7b7a4; /* Earthy */
    --text: #1b4332;
    --bg: #f4f1ea; /* Creamy White */
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background-color: var(--bg); color: var(--text); line-height: 1.6; }
h1, h2, h3 { font-family: 'Lora', serif; font-weight: 600; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Navbar */
.navbar { background: var(--white); padding: 1rem 0; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.logo span { color: #40916c; }
.nav-links { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-links a { font-weight: 500; transition: 0.3s; }
.nav-links a:hover { color: var(--primary); }
.btn-nav { background: var(--primary); color: var(--white) !important; padding: 0.5rem 1.2rem; border-radius: 20px; }
.menu-toggle { display: none; cursor: pointer; font-size: 1.5rem; }

/* Hero Section */
.hero { 
    background: url('https://images.unsplash.com/photo-1500937386664-56d1dfef3854?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') no-repeat center/cover;
    height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; position: relative;
}
.hero-overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.4); }
.hero-content { position: relative; z-index: 2; color: var(--white); }
.hero h1 { font-size: 3rem; margin-bottom: 1rem; }
.hero p { font-size: 1.2rem; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.btn-main { background: var(--primary); color: var(--white); padding: 1rem 2rem; border-radius: 5px; font-weight: 600; transition: 0.3s; }
.btn-main:hover { background: #1b4332; }

/* Features */
.features { padding: 4rem 0; background: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; text-align: center; }
.feature-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 1rem; }

/* Products */
.products { padding: 4rem 0; }
.section-title { text-align: center; margin-bottom: 3rem; font-size: 2rem; color: var(--primary); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.product-card { background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: 0.3s; }
.product-card:hover { transform: translateY(-5px); }
.product-card img { width: 100%; height: 200px; object-fit: cover; }
.p-info { padding: 1.5rem; text-align: center; }
.p-info h3 { margin-bottom: 0.5rem; color: var(--primary); }

/* About */
.about { padding: 4rem 0; background: var(--secondary); }
.about-content { display: flex; flex-wrap: wrap; align-items: center; gap: 2rem; }
.about-text { flex: 1; min-width: 300px; }
.about-img { flex: 1; min-width: 300px; }
.about-img img { width: 100%; border-radius: 10px; }

/* Contact */
.contact { padding: 4rem 0; background: var(--white); }
.contact-wrapper { max-width: 600px; margin: 0 auto; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form input, .contact-form textarea { padding: 1rem; border: 1px solid #ddd; border-radius: 5px; font-family: inherit; }
.contact-form button { border: none; cursor: pointer; }

/* Footer */
footer { background: var(--text); color: var(--white); padding: 2rem 0; text-align: center; }
.socials a { color: var(--white); margin: 0 10px; font-size: 1.2rem; }

/* Responsive */
@media (max-width: 768px) {
    .nav-links { position: absolute; right: 0; top: 60px; background: var(--white); flex-direction: column; width: 100%; padding: 2rem; display: none; box-shadow: 0 5px 10px rgba(0,0,0,0.1); }
    .nav-links.active { display: flex; }
    .menu-toggle { display: block; }
    .hero h1 { font-size: 2rem; }
}