/* Custom Styles for Advanced Painting Systems */

:root {
    --color-forest: #1c3a28;
    --color-forest-light: #2d4f3b;
    --color-offwhite: #f5f7f2;
    --color-text: #1a1a1a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-offwhite);
    color: var(--color-text);
}

.font-serif {
    font-family: 'Cormorant Garamond', serif;
}

.font-sans {
    font-family: 'Inter', sans-serif;
}

/* Animation Utilities */
@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; }

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

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

::-webkit-scrollbar-thumb {
    background: var(--color-forest);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-forest-light);
}

/* Form Focus Styles */
input:focus, select:focus, textarea:focus {
    border-color: var(--color-forest);
}
