/* Custom Styles for Adrenaline Tattoos & Piercings */

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

/* Custom Animations */
@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; }

/* Selection Color */
::selection {
    background: #528055; /* forest-500 */
    color: #FAFAF5; /* cream */
}

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

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

::-webkit-scrollbar-thumb {
    background: #2d4f30; /* forest-700 */
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1d3520; /* forest-900 */
}

/* Form Focus States */
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #528055;
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Image Loading Placeholder */
img {
    background-color: #e3efe6; /* forest-100 */
}
