/* CSS Variables - Color Palette */
:root {
    --green-primary: #7CB342;
    --green-dark: #2E5339;
    --green-deep: #1B3A2F;
    --green-light: #9CCC65;
    --green-soft: #C8E6C9;
    --green-bg: #E8F5E9;
    --cream: #F4F1E8;
    --text-dark: #2E5339;
    --text-muted: #6D4C41;
    --white: #FFFFFF;
    --shadow-soft: rgba(46, 83, 57, 0.08);
    --shadow-medium: rgba(46, 83, 57, 0.12);
    --shadow-strong: rgba(0, 0, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 10px 24px;
    background: rgba(27, 58, 47, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(124, 179, 66, 0.2);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-container {
    background: #2D5442;
    padding: 4px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    height: 32px;
    width: auto;
    border-radius: 4px;
    object-fit: contain;
    display: block;
}

.brand-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: -0.02em;
}

.brand-accent {
    font-weight: 400;
    color: var(--green-light);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 24px 60px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(27, 58, 47, 0.4) 0%,
        rgba(46, 83, 57, 0.3) 50%,
        rgba(27, 58, 47, 0.5) 100%
    );
}

.hero-accent {
    position: absolute;
    inset: 0;
    background: radial-gradient(
            circle at 20% 30%,
            rgba(124, 179, 66, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 60%,
            rgba(200, 230, 201, 0.08) 0%,
            transparent 50%
        );
    animation: pulse 8s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    width: 100%;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--cream);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, var(--green-light), var(--green-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--green-soft);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.coming-soon-badge {
    display: inline-block;
    padding: 12px 32px;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--green-primary), #558B2F);
    color: var(--cream);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(124, 179, 66, 0.35);
    letter-spacing: 0.5px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(200, 230, 201, 0.6);
    border-radius: 15px;
    position: relative;
    backdrop-filter: blur(4px);
}

.scroll-dot {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-light);
    animation: scrollDot 2s infinite;
    box-shadow: 0 0 8px rgba(156, 204, 101, 0.6);
}

/* Features Section */
.features {
    padding: 120px 24px;
    background: var(--cream);
}

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

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    padding: 36px;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(46, 83, 57, 0.1);
    box-shadow: 0 8px 32px var(--shadow-soft);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(40px);
}

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(46, 83, 57, 0.15);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--green-soft), var(--green-bg));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 24px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-description {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Vision Section */
.vision {
    padding: 120px 24px;
    background: linear-gradient(180deg, var(--green-bg) 0%, var(--cream) 100%);
}

.vision-content {
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.vision-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.vision-content .section-title {
    text-align: center;
    margin-bottom: 32px;
}

.vision-text {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-dark);
    line-height: 1.9;
    text-align: center;
}

.vision-text p {
    margin-bottom: 24px;
}

.vision-text p:last-child {
    margin-bottom: 0;
}

.vision-text strong {
    color: var(--green-primary);
    font-weight: 600;
}

/* Footer */
.footer {
    padding: 32px 24px;
    background: var(--green-deep);
    text-align: center;
    border-top: 1px solid rgba(124, 179, 66, 0.2);
}

.footer-text {
    font-size: 16px;
    color: var(--green-soft);
    margin-bottom: 8px;
    font-weight: 500;
}

.footer-copyright {
    font-size: 14px;
    color: #8BA889;
    margin: 0;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scrollDot {
    0% {
        top: 8px;
        opacity: 1;
    }
    100% {
        top: 32px;
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 8px 16px;
    }

    .logo {
        height: 28px;
    }

    .brand-name {
        font-size: 18px;
    }

    .hero {
        padding: 70px 16px 50px;
    }

    .features {
        padding: 80px 16px;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-card {
        padding: 28px;
    }

    .vision {
        padding: 80px 16px;
    }

    .footer {
        padding: 24px 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .coming-soon-badge {
        padding: 10px 24px;
        font-size: 16px;
    }

    .feature-card {
        padding: 24px;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }
}

/* Image Fallback */
.logo:not([src]),
.hero-image:not([style*="background-image"]) {
    background-color: var(--green-dark);
}

.logo:not([src])::after {
    content: "Logo";
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--cream);
    font-size: 10px;
}

