/* Custom Styles for Épices Bakery */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #fcfaf8; /* sand-50 */
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

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

/* Form Focus Styles */
input:focus, textarea:focus {
    outline: none;
    border-color: #b88676;
    box-shadow: 0 0 0 3px rgba(184, 134, 118, 0.2);
}
