/* Custom CSS Variables */
:root {
    --primary: #A1C194;
    --secondary: #E6F0F6;
    --primary-dark: #89AA7E;
    --accent-blue: #D1E6F5;
    --background-light: #FAFAF9;
    --background-dark: #1F2923;
    --surface-light: #FFFFFF;
    --surface-dark: #2A362E;
    --text-light: #374151;
    --text-dark: #F3F4F6;
    --brand-dark: #4A6145;
}

/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
}

/* Hero Pattern */
.hero-pattern {
    background-image: radial-gradient(var(--primary) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.15;
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(90deg, #A1C194 0%, #7DA56F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Logo Mask */
.logo-mask {
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Dark Mode Scrollbar */
.dark ::-webkit-scrollbar-track {
    background: var(--background-dark);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Focus Styles */
a:focus, button:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Mobile Menu Button (for future use) */
.mobile-menu-button {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu-button {
        display: block;
    }
}
