/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Natural Color Palette */
    --forest-green: #2d5a3d;
    --sage-green: #87a96b;
    --earth-brown: #8b6f47;
    --cream: #f5f2e8;
    --sky-blue: #87ceeb;
    --moss-green: #8a9a5b;
    --soil-dark: #3e2723;
    --white: #ffffff;
    --light-gray: #f8f8f8;
    
    /* Typography */
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--soil-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--forest-green);
}

.logo-image {
    height: 40px;
    width: auto;
    display: block;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--forest-green);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--soil-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--forest-green);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--forest-green);
    transition: width 0.3s ease;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--soil-dark);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(135, 169, 107, 0.7), rgba(45, 90, 61, 0.8));
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--cream);
    color: var(--forest-green);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover,
.cta-button:focus {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background-color: var(--white);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-family: var(--font-heading);
    color: var(--forest-green);
    margin-bottom: 2rem;
    text-align: center;
}

.lead {
    font-size: 1.25rem;
    color: var(--soil-dark);
    text-align: center;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-section {
    background-color: var(--light-gray);
}

.about-section p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    text-align: center;
    line-height: 1.8;
}

/* Values Section */
.values-section {
    background-color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background-color: var(--cream);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.value-card h3 {
    color: var(--forest-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-card p {
    color: var(--soil-dark);
    line-height: 1.6;
}

/* Apps Section */
.apps-section {
    background-color: var(--light-gray);
}

.app-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.app-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.app-content h3 {
    font-size: 2rem;
    color: var(--forest-green);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.app-tagline {
    font-size: 1.2rem;
    color: var(--sage-green);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.app-features {
    list-style: none;
    margin: 1.5rem 0;
}

.app-features li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.app-features li::before {
    content: '🌱';
    position: absolute;
    left: 0;
}

.coming-soon {
    display: inline-block;
    background-color: var(--sage-green);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 1rem;
}

/* Community Section */
.community-section {
    background-color: var(--white);
}

.community-section p {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    line-height: 1.8;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    color: var(--forest-green);
    font-weight: 700;
    font-family: var(--font-heading);
}

.stat-label {
    display: block;
    color: var(--soil-dark);
    margin-top: 0.5rem;
}

/* Contact Section */
.contact-section {
    background-color: var(--cream);
}

.contact-methods {
    text-align: center;
    margin: 3rem 0;
}

.contact-button {
    display: inline-block;
    background-color: var(--forest-green);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-button span {
    display: block;
}

.contact-button .email {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.newsletter {
    max-width: 500px;
    margin: 3rem auto 0;
    text-align: center;
}

.newsletter h3 {
    color: var(--forest-green);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--sage-green);
    border-radius: 25px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 0.75rem 2rem;
    background-color: var(--forest-green);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--soil-dark);
}

/* Footer */
.main-footer {
    background-color: var(--soil-dark);
    color: var(--cream);
    padding: 2rem 0;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: var(--white);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hero-section {
        margin-top: 60px;
    }
    
    .app-showcase {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    section {
        padding: 3rem 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .community-stats {
        grid-template-columns: 1fr;
    }
}