/* Custom styles for Ivory Ink Tattoo Collective */

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

/* Scroll reveal animations - progressive enhancement */
.scroll-reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

@media (prefers-reduced-motion: no-preference) {
    .scroll-reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
}

/* Mobile menu transitions */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

#mobile-menu.open {
    max-height: 400px;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #7fb682;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid #5c9661;
    outline-offset: 2px;
}

/* Ensure all text has proper contrast */
.text-forest-600 {
    color: #427748;
}

.text-forest-500 {
    color: #5c9661;
}

.text-forest-700 {
    color: #355f3a;
}

.text-forest-800 {
    color: #2c4c30;
}

.text-forest-900 {
    color: #243f27;
}

.bg-forest-600 {
    background-color: #427748;
}

.bg-forest-700 {
    background-color: #355f3a;
}

.bg-forest-800 {
    background-color: #2c4c30;
}

.bg-forest-900 {
    background-color: #243f27;
}

/* Button hover states */
button:hover,
a:hover {
    transition: all 0.3s ease;
}

/* Image lazy loading fade */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}
