/* 
    Custom Styles for Salon 407
    Complementary to Tailwind CSS
*/

:root {
    --font-sans: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;
}

body {
    font-family: var(--font-sans);
    scroll-behavior: smooth;
}

h1, h2, h3, h4, .font-display {
    font-family: var(--font-display);
}

/* 
   Animation Utilities 
   Note: We use these for elements BELOW the fold only, 
   or for elements that are already visible in the hero.
*/
.reveal-on-scroll {
    opacity: 1; /* Default visible for SEO and no-JS */
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fade In Up for Hero specifically */
@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; /* Starts hidden, animates in */
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Mobile Menu Transitions */
#mobile-menu {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
#mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #0F766E;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #042F2E;
}
