/* Custom Styles for Eye Dress Faces */

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

body {
    /* Ensures text is readable even if JS fails for reveal animations */
    opacity: 1; 
}

/* Scroll Reveal Utility Classes */
.scroll-reveal {
    opacity: 1; /* Default visible for accessibility/SEO */
    transform: translateY(0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Animation states applied via JS */
.scroll-reveal.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Initial state for animation (handled by JS or CSS if pref-reduced-motion is off) */
@media (prefers-reduced-motion: no-preference) {
    .reveal-hidden {
        opacity: 0;
        transform: translateY(30px);
    }
    
    .reveal-hidden.animated {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Delays */
.delay-100 { transition-delay: 100ms; }
.delay-150 { transition-delay: 150ms; }
.delay-200 { transition-delay: 200ms; }
.delay-75 { transition-delay: 75ms; }

/* Form Styling */
input:focus, select:focus, textarea:focus {
    border-color: #C05A43; /* terracotta-500 */
}

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

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

::-webkit-scrollbar-thumb {
    background: #DDCFAA;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #C05A43;
}
