/* Custom Styles for NY Hair Co. */

:root {
    --color-midnight: #0f172a;
    --color-mint: #98f5e1;
    --color-stone: #f5f5f4;
}

body {
    background-color: var(--color-stone);
    color: var(--color-midnight);
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

.font-manrope {
    font-family: 'Manrope', sans-serif;
}

/* Animation Utilities */
@keyframes scroll-down {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(200%); }
}

.animate-scroll-down {
    animation: scroll-down 1.5s linear infinite;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fade-in-up 0.8s ease-out forwards;
}

.delay-300 {
    animation-delay: 300ms;
}

.delay-500 {
    animation-delay: 500ms;
}

/* Reveal on Scroll Class */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

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

::-webkit-scrollbar-track {
    background: var(--color-stone);
}

::-webkit-scrollbar-thumb {
    background: var(--color-midnight);
}

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