:root {
    --primary: #306600;
    --dark: #003809;
    --light-green: #00b43c;
    --bg: #FFFFFF;
    --bg-gray: #F5F5F5;
    --text: #212121;
    --text-gray: #666;
    --border: #E0E0E0;
}

[data-theme="dark"] {
    --primary: #1a6b01;
    --dark: #004109;
    --light-green: #008b17;
    --bg: #1A1A1A;
    --bg-gray: #2A2A2A;
    --text: #FFFFFF;
    --text-gray: #B0B0B0;
    --border: #404040;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: Arial, sans-serif;
    background: var(--bg);
    background-image: url('../images/light them bg.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: var(--text);
    transition: all 0.3s;
}

[data-theme="dark"] body {
    background-image: url('../images/dark them bg.png');
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.theme-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    color: white;
}

.sun-icon { display: block; }
.moon-icon { display: none; }
[data-theme="dark"] .sun-icon { display: none; }
[data-theme="dark"] .moon-icon { display: block; }

.navbar {
    background: var(--bg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

.navbar .container { display: flex; justify-content: space-between; align-items: center; }

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
}

.logo img { width: 40px; height: 40px; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
}

.nav-links a:hover { color: var(--primary); }

.btn-pos {
    background: var(--primary);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
}

.mobile-toggle { 
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text);
}

.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero h1 { font-size: 3.5rem; margin-bottom: 1rem; }
.hero .subtitle { font-size: 1.8rem; margin-bottom: 1rem; }
.hero p { font-size: 1.2rem; margin-bottom: 1rem; }

.buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

.btn-primary { background: white; color: var(--primary); }
.btn-secondary { background: transparent; color: white; border: 2px solid white; }

.section { padding: 80px 20px; }
.section h2 { font-size: 2.5rem; color: var(--primary); text-align: center; margin-bottom: 2rem; }

.features, .products-grid, .gallery-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.features { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.products-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.gallery-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.feature, .product-card {
    background: var(--bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

footer {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 2rem;
}

/* WhatsApp Button */
.btn-whatsapp {
    background: #25D366 !important;
    color: white !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Section Descriptions */
.section-desc {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 2rem auto;
    text-align: center;
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Products Section */
.category-title {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 3rem 0 1.5rem;
    text-align: center;
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    margin: -2rem -2rem 1rem -2rem;
}

.product-card h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.product-card p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.order-btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.order-btn:hover {
    background: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 159, 62, 0.3);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-card {
    background: var(--bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-gray);
    margin: 0.5rem 0;
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.whatsapp-btn {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s;
}

.whatsapp-btn:hover {
    background: #20BA5A;
    transform: scale(1.05);
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-box .btn-primary {
    background: white;
    color: var(--primary);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

/* Hover Effects */
.product-card, .feature, .contact-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover, .feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .nav-links { 
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .nav-links.active { 
        display: flex;
    }
    .mobile-toggle { display: block; }
    .hero h1 { font-size: 2rem; }
    .buttons { flex-direction: column; }
    .category-title { font-size: 1.5rem; }
    .products-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}
