/* Custom Styles for JJ Nails & Spa */

/* Base styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #0a0f0d;
}

/* Typography overrides */
h1, h2, h3, h4, .font-serif {
    font-family: 'Cinzel', serif;
}

/* Animation Utilities */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

/* Reveal on Scroll Classes */
.reveal-left, .reveal-right, .reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-left {
    transform: translateX(-30px);
}

.reveal-right {
    transform: translateX(30px);
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Delay utilities for staggered animations */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }

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

::-webkit-scrollbar-track {
    background: #0a0f0d;
}

::-webkit-scrollbar-thumb {
    background: #15201b;
    border: 1px solid #d4af37;
}

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

/* Mobile menu transitions */
#mobile-menu {
    transition: opacity 0.3s ease;
}

/* Fix for images with aspect ratio */
img {
    max-width: 100%;
    height: auto;
}
