:root {
    --olive: #556b2f;
    --olive-light: #8f9779;
    --terra: #cd5c5c;
    --cream: #f5f5dc;
    --white: #ffffff;
    --text: #4a4a4a;
    --footer-bg: #3e4435;
    
    --font-serif: 'Lora', serif;
    --font-sans: 'Open Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-sans);
    background-color: var(--cream);
    color: var(--text);
    line-height: 1.7;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Top Bar */
.top-nature-bar { background-color: var(--olive); color: var(--white); text-align: center; padding: 8px 0; font-size: 0.9rem; }

/* Header */
.nature-header { background-color: var(--white); padding: 20px 0; box-shadow: 0 4px 6px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
.flex-nav { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-serif); font-size: 1.6rem; color: var(--olive); font-weight: 600; display: flex; align-items: center; }
.logo .lite { color: var(--text); font-weight: 400; font-size: 1.2rem; }
.leaf-icon { margin-right: 5px; }

.organic-nav ul { display: flex; gap: 30px; list-style: none; align-items: center; }
.organic-nav a { font-family: var(--font-serif); font-size: 1.1rem; color: var(--text); }
.organic-nav a:hover, .organic-nav a.active { color: var(--olive); font-style: italic; }

.btn-terra { background-color: var(--terra); color: var(--white) !important; padding: 10px 25px; border-radius: 5px; font-family: var(--font-sans); font-weight: 600; font-style: normal !important; }
.btn-terra:hover { background-color: #b04040; }

/* Mobile Menu */
.mobile-toggle { display: none; background: none; border: none; font-size: 2rem; cursor: pointer; color: var(--olive); }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 250px; height: 100%; background: var(--white); z-index: 2000; padding: 40px; display: flex; flex-direction: column; transition: 0.4s; border-left: 4px solid var(--olive); }
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; font-size: 1.5rem; cursor: pointer; margin-bottom: 20px; background: none; border: none; }
.mobile-menu a { font-family: var(--font-serif); font-size: 1.2rem; padding: 10px 0; border-bottom: 1px dashed #ccc; color: var(--olive); }

/* Hero */
.hero-nature {
    height: 550px; background-size: cover; background-position: center; position: relative;
}
.hero-overlay {
    background: rgba(62, 68, 53, 0.4); width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
}
.hero-text { text-align: center; color: var(--white); max-width: 800px; padding: 20px; background: rgba(0,0,0,0.3); border-radius: 10px; backdrop-filter: blur(2px); }
.hero-text h1 { font-family: var(--font-serif); font-size: 3rem; margin-bottom: 20px; letter-spacing: 1px; }
.hero-text p { font-size: 1.2rem; margin-bottom: 30px; }
.btn-nature { background-color: var(--white); color: var(--olive); padding: 15px 40px; border-radius: 30px; font-weight: bold; }
.btn-nature:hover { background-color: var(--olive); color: var(--white); }

/* Sections */
.section-padding { padding: 80px 0; }
.intro-text { text-align: center; margin-bottom: 60px; max-width: 700px; margin-left: auto; margin-right: auto; }
.intro-text h2 { font-family: var(--font-serif); color: var(--olive); font-size: 2.2rem; }
.divider-leaf { width: 50px; height: 3px; background-color: var(--terra); margin: 15px auto; }

.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.nature-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; transition: 0.3s; }
.nature-card:hover { transform: translateY(-5px); }
.card-img { height: 200px; background-size: cover; background-position: center; }
.nature-card h3 { font-family: var(--font-serif); margin: 20px 0 10px; color: var(--olive); }
.nature-card p { padding: 0 20px 20px; color: #666; font-size: 0.95rem; }

/* About */
.page-banner { background-color: var(--olive-light); color: var(--white); text-align: center; padding: 60px 0; }
.page-banner h1 { font-family: var(--font-serif); font-size: 2.5rem; }

.about-flex { display: flex; align-items: center; gap: 50px; }
.about-content { flex: 1; }
.about-content h2 { font-family: var(--font-serif); color: var(--olive); margin-bottom: 20px; }
.eco-list { list-style: none; margin-top: 20px; }
.eco-list li { margin-bottom: 10px; padding-left: 25px; position: relative; }
.eco-list li::before { content: "🌱"; position: absolute; left: 0; top: 0; }
.about-image-box { flex: 1; }
.about-image-box img { width: 100%; border-radius: 10px; border: 5px solid var(--white); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

/* Testimonials */
.reviews-wrapper { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-bubble { background-color: var(--white); padding: 30px; border-radius: 20px 20px 20px 0; border: 1px solid #ddd; }
.review-bubble p { font-style: italic; color: #555; margin-bottom: 20px; }
.review-bubble strong { display: block; color: var(--terra); font-family: var(--font-serif); font-size: 0.9rem; }

/* Form */
.contact-box { display: flex; gap: 50px; background-color: var(--white); padding: 50px; border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.contact-details { flex: 1; }
.contact-details h3 { font-family: var(--font-serif); color: var(--olive); margin-bottom: 15px; font-size: 1.5rem; }
.contact-details ul { list-style: none; margin-top: 20px; }
.contact-details li { margin-bottom: 15px; font-size: 1.1rem; }

.eco-form { flex: 1.5; display: flex; flex-direction: column; gap: 15px; }
.eco-form label { font-weight: bold; color: var(--text); font-size: 0.9rem; }
.eco-form input, .eco-form select, .eco-form textarea { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 5px; font-family: var(--font-sans); }
.submit-btn { background-color: var(--olive); color: var(--white); border: none; padding: 15px; font-size: 1.1rem; border-radius: 5px; cursor: pointer; font-family: var(--font-serif); transition: 0.3s; }
.submit-btn:hover { background-color: #3e4f21; }

/* Legal Content */
.legal-content { max-width: 800px; margin: 0 auto; background-color: var(--white); padding: 50px; border-radius: 8px; }
.legal-content h1 { font-family: var(--font-serif); color: var(--olive); }
.legal-content h3 { margin-top: 30px; margin-bottom: 10px; color: var(--text); border-bottom: 1px solid #eee; padding-bottom: 5px; }

/* Footer */
.nature-footer { background-color: var(--footer-bg); color: #d0d0d0; padding: 40px 0; margin-top: auto; text-align: center; }
.footer-logo { font-family: var(--font-serif); font-size: 1.5rem; color: var(--white); margin-bottom: 10px; }
.footer-links a { color: #d0d0d0; margin: 0 15px; font-size: 0.9rem; }
.footer-links a:hover { color: var(--white); text-decoration: underline; }
.copyright { margin-top: 20px; font-size: 0.8rem; opacity: 0.6; }

@media (max-width: 900px) {
    .organic-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }
    .cards-grid, .about-flex, .reviews-wrapper, .contact-box { grid-template-columns: 1fr; flex-direction: column; gap: 30px; }
}