/* Custom Animations and Utilities */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;700&family=Syne:wght@700;800&display=swap');

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: #F0F4F0;
    color: #1A3C28;
    overflow-x: hidden;
}

h1, h2, h3, h4, .font-display {
    font-family: 'Syne', sans-serif;
}

/* Marquee Animation */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-marquee {
    animation: marquee 20s linear infinite;
}

/* Blob Animation for Hero */
@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

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

::-webkit-scrollbar-track {
    background: #F0F4F0;
}

::-webkit-scrollbar-thumb {
    background: #1A3C28;
    border: 3px solid #F0F4F0;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2C5E42;
}

/* Form Focus Styles */
input:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px #FF6B6B;
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

#mobile-menu.hidden {
    max-height: 0;
    opacity: 0;
}

#mobile-menu:not(.hidden) {
    max-height: 400px;
    opacity: 1;
}
