/* 
    Styles for The NAIL Boutique
    Theme: Confident Corporate / Editorial
    Colors: Terracotta (#C07A5B), Sand (#E8DCC4), Charcoal (#2C2C2C)
*/

/* Custom Utilities & Overrides */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #FDFBF7; /* Cream */
}

/* Typography Adjustments */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

p, a, span, li, button, input, textarea {
    font-family: 'Lato', sans-serif;
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-up {
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0; /* Start hidden for animation */
}

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

/* Scroll Reveal Classes (Applied by JS) */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Nav Scrolled State */
.nav-scrolled {
    background-color: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Form Styles */
input:focus, textarea:focus {
    outline: none;
    border-color: #C07A5B;
}

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

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

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

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