/* Custom styles and animations not covered by Tailwind */

:root {
    --color-forest-50: #f2f7f4;
    --color-forest-100: #e3efe6;
    --color-forest-200: #c5dfcb;
    --color-forest-300: #99c6a3;
    --color-forest-400: #6ba074;
    --color-forest-500: #467a51;
    --color-forest-600: #2d5c38;
    --color-forest-700: #244a2e;
    --color-forest-800: #1e3d26;
    --color-forest-900: #19311f;
    --color-forest-950: #08160c;
}

body {
    font-family: 'Lato', sans-serif;
}

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

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

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0; /* Start hidden */
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Scroll Reveal Utility Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

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

::-webkit-scrollbar-thumb {
    background: #1e3d26;
}

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

/* Focus States for Accessibility */
button:focus, a:focus, input:focus, textarea:focus, select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(107, 160, 116, 0.5);
}
