@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary: #2e7d32;
    --primary-dark: #1b5e20;
    --primary-light: #e8f5e9;
    --secondary: #3e2723;
    --accent: #f4b41a;
    --bg: #faf9f6;
    --text: #333333;
    --text-muted: #666666;
    --white: #ffffff;
    --glass: rgba(250, 249, 246, 0.85);
    --glass-border: rgba(46, 125, 50, 0.1);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path fill="%23f4b41a" d="M16 28 C 16 28, 4 18, 4 9 C 4 3, 11 1, 16 6 C 21 1, 28 3, 28 9 C 28 18, 16 28, 16 28 Z" /><path stroke="%23d49a11" stroke-width="1.5" stroke-linecap="round" fill="none" d="M16 6 L16 26 M16 12 L22 8 M16 16 L22 12 M16 20 L22 16 M16 12 L10 8 M16 16 L10 12 M16 20 L10 16" /><path stroke="%23d49a11" stroke-width="2" stroke-linecap="round" fill="none" d="M16 6 C16 2 14 1 14 1" /></svg>') 14 2, auto;
}

a, button, .btn-primary, .btn-outline, .btn-nav, .nav-links a {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path fill="%232e7d32" d="M16 28 C 16 28, 4 18, 4 9 C 4 3, 11 1, 16 6 C 21 1, 28 3, 28 9 C 28 18, 16 28, 16 28 Z" /><path stroke="%231b5e20" stroke-width="1.5" stroke-linecap="round" fill="none" d="M16 6 L16 26 M16 12 L22 8 M16 16 L22 12 M16 20 L22 16 M16 12 L10 8 M16 16 L10 12 M16 20 L10 16" /><path stroke="%231b5e20" stroke-width="2" stroke-linecap="round" fill="none" d="M16 6 C16 2 14 1 14 1" /></svg>') 14 2, pointer !important;
}

h1, h2, h3, h4, .logo {
    font-family: 'Playfair Display', serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
}

nav.scrolled {
    background: var(--glass);
    backdrop-filter: blur(15px);
    padding: 1rem 5%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

nav.scrolled .logo, nav.scrolled .nav-links a, nav.scrolled .menu-btn {
    color: var(--secondary);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    font-family: 'Inter', sans-serif;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--white);
    color: var(--primary-dark);
    padding: 0.8rem 1.8rem;
    border-radius: 5px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

nav.scrolled .btn-nav {
    background: var(--primary);
    color: var(--white);
}

.btn-nav:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 5% 80px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
    animation: kenBurns 20s ease-out infinite alternate;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent);
    transform: scale(1.3);
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    bottom: -20px;
    width: 6px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.4);
    left: var(--left);
    animation: floatUp 8s linear infinite;
    animation-delay: var(--delay);
    opacity: 0;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1.5);
        opacity: 0;
    }
}

.hero-subtitle {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    color: var(--accent);
    animation: fadeInUp 1s ease-out;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: clamp(3rem, 7vw, 5rem);
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.2);
}

.btn-outline {
    border: 1px solid var(--white);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--secondary);
}

/* Features Section */
.section {
    padding: 8rem 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.feature-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

.feature-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-card:hover .feature-img img {
    transform: scale(1.05);
}

.feature-body {
    padding: 2.5rem;
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: -55px auto 1.5rem;
    position: relative;
    border: 5px solid var(--white);
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Plants By Nature Section */
.nature-section {
    background-color: var(--primary-light);
}

.nature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.nature-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.nature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.1);
}

.nature-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.nature-card:hover img {
    transform: scale(1.05);
}

.nature-content {
    padding: 2rem;
}

.nature-content h3 {
    color: var(--secondary);
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.nature-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Info Section */
.info-section {
    background: var(--white);
    display: flex;
    align-items: center;
    gap: 5%;
    padding: 8rem 5%;
}

.info-content {
    flex: 1;
}

.info-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    height: 550px;
    box-shadow: var(--shadow);
}

.info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--secondary);
}

.info-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Stats */
.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    border-top: 1px solid #eee;
    padding-top: 2rem;
}

.stat-item h4 {
    font-size: 2.5rem;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.stat-item p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 500;
}

/* CTA */
.cta-section {
    text-align: center;
    background: var(--primary-light);
    border-radius: 10px;
    margin: 5rem 5%;
    padding: 6rem 2rem;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%232e7d32" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

.cta-section h2 {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.cta-section p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Footer */
footer {
    padding: 5rem 5% 2rem;
    background: var(--secondary);
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white) !important;
}

.footer-info p {
    color: rgba(255,255,255,0.7) !important;
    font-weight: 300;
}

.social-links a {
    color: var(--white);
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Scroll Falling Leaf Animation */
.falling-leaf {
    position: fixed;
    top: -50px;
    z-index: 9999;
    pointer-events: none;
    color: var(--primary);
    font-size: 24px;
    animation: fallDown 5s linear forwards, sway 2.5s ease-in-out infinite alternate;
    opacity: 0.8;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.2));
}

@keyframes fallDown {
    0% { top: -50px; opacity: 0; transform: scale(0.5); }
    10% { opacity: 1; transform: scale(1); }
    80% { opacity: 1; }
    100% { top: 110vh; opacity: 0; transform: scale(1); }
}

@keyframes sway {
    0% { transform: translateX(0) rotate(0deg); }
    100% { transform: translateX(60px) rotate(60deg); }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Menu */
.menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
    transition: var(--transition);
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .info-section {
        flex-direction: column;
        text-align: center;
    }
    
    .info-image {
        width: 100%;
        height: 400px;
        order: -1;
        margin-bottom: 3rem;
    }

    .stats-container {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 5%;
    }
    
    .nav-links {
        display: none;
    }
    
    .menu-btn {
        display: block;
        margin-left: 1rem;
    }

    .btn-nav {
        display: none;
    }
    
    .hero-btns {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        margin-top: 2rem;
    }

    .hero {
        padding-top: 140px;
    }
    
    .cta-section {
        margin: 3rem 0;
        border-radius: 0;
    }
}
