/* Custom Styles for Shear Dolls */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #f5f5f0; /* Brand Sand */
}

/* Animation Classes */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-up.visible, .reveal-scale.visible {
    opacity: 1;
    transform: translateY(0);
    transform: scale(1);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* Mobile Menu Transitions */
#mobile-menu {
    transition: transform 0.3s ease-in-out;
}

#mobile-menu.open {
    transform: translateX(0);
}

#mobile-menu.closed {
    transform: translateX(100%);
}

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

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

::-webkit-scrollbar-thumb {
    background: #064e3b;
}

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

/* Image Aspect Ratios */
img {
    display: block;
    max-width: 100%;
    height: auto;
}
