:root {
    --primary: #2d5a27;
    --accent: #a5d6a7;
    --bg: #fdfcf8;
    --text: #1a1c1a;
    --white: #ffffff;
    --whatsapp: #25D366;
    --nav-height: 80px;
}

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
* { box-sizing: border-box; margin: 0; padding: 0; }

body { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    background-color: var(--bg); 
    color: var(--text); 
    line-height: 1.6; 
}

.navbar { 
    display: flex; justify-content: space-between; padding: 0 5%; 
    height: var(--nav-height); align-items: center; background: white; 
    position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); 
}
.logo-link { text-decoration: none; color: inherit; }
.logo-container { display: flex; align-items: center; gap: 10px; }
.site-logo { width: 40px; height: 40px; border-radius: 8px; }
.logo-text { font-size: 1.4rem; font-weight: 800; }
.logo-text span { color: var(--primary); }

.nav-links { list-style: none; display: flex; gap: 2rem; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 600; transition: 0.3s; }
.nav-links a:hover { color: var(--primary); }

.order-fab {
    position: fixed; bottom: 30px; right: 30px; background-color: var(--whatsapp);
    color: white; text-decoration: none; display: flex; align-items: center;
    gap: 12px; padding: 14px 28px; border-radius: 50px; font-weight: 800;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3); z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.hero { text-align: center; padding: 100px 10%; max-width: 900px; margin: 0 auto; }
.hero-tag { text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px; color: var(--primary); font-weight: 800; margin-bottom: 10px; }
.gradient-text { background: linear-gradient(90deg, #2d5a27, #81c784); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4rem); line-height: 1.1; margin-bottom: 20px; }

.section-container { padding: 80px 5%; max-width: 1100px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 40px; font-size: 2.5rem; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.product-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.product-card img { width: 100%; height: 250px; object-fit: cover; }
.product-info { padding: 25px; }
.price { display: block; margin-top: 15px; font-weight: 800; color: var(--primary); }

.event-item { display: none; animation: fadeIn 0.8s ease; }
.event-item.active { display: flex; }
.event-featured { align-items: flex-start; gap: 40px; background: #f4f7f4; padding: 40px; border-radius: 30px; }

.event-gallery { flex: 1.5; display: grid; gap: 10px; }
.grid-6 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
.event-gallery img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 12px; cursor: pointer; transition: 0.3s; }
.event-gallery img:hover { transform: scale(1.05); filter: brightness(0.9); }
.event-details { flex: 1; }
.event-date { color: var(--primary); font-weight: 800; }

.lightbox {
    display: none; position: fixed; z-index: 10000; left: 0; top: 0;
    width: 100%; height: 100%; background-color: rgba(0,0,0,0.9);
    justify-content: center; align-items: center; padding: 20px;
}
.lightbox-content { max-width: 90%; max-height: 90%; border-radius: 10px; }
.close-lightbox {
    position: absolute; top: 30px; right: 40px; color: white;
    font-size: 40px; font-weight: bold; cursor: pointer;
}

.story-wrapper { display: flex; align-items: center; gap: 60px; }
.story-image img { width: 100%; border-radius: 30px; box-shadow: 20px 20px 0px var(--accent); }
.story-stats { display: flex; gap: 30px; margin-top: 30px; }
.stat-item strong { display: block; font-size: 2rem; color: var(--primary); }

.bg-alt { background-color: #f4f7f4; border-radius: 50px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.feat-card { background: var(--white); padding: 25px; border-radius: 15px; border-left: 5px solid var(--primary); margin-bottom: 20px; }

.footer { background: #1a1c1a; color: white; padding: 60px 5% 20px; margin-top: 80px; }
.footer-content { display: flex; justify-content: space-between; max-width: 1200px; margin: 0 auto; }
.social-links { display: flex; gap: 15px; margin-top: 20px; }
.social-links a { width: 40px; height: 40px; background: #333; color: white; border-radius: 50%; display: flex; justify-content: center; align-items: center; text-decoration: none; transition: 0.3s; }
.social-links a:hover { background: var(--primary); }
.footer-bottom { text-align: center; border-top: 1px solid #333; margin-top: 40px; padding-top: 20px; color: #888; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

@media (max-width: 768px) {
    .menu-toggle { display: flex; flex-direction: column; gap: 6px; cursor: pointer; }
    .bar { width: 25px; height: 3px; background: var(--text); border-radius: 2px; }
    .nav-links {
        position: fixed; right: -100%; top: var(--nav-height);
        flex-direction: column; background: white; width: 100%;
        height: calc(100vh - var(--nav-height)); transition: 0.3s;
        padding-top: 50px;
    }
    .nav-links.active { right: 0; }
    .product-grid, .about-grid, .story-wrapper, .footer-content { grid-template-columns: 1fr; text-align: center; }
    .event-featured { flex-direction: column; }
    .grid-6, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}