/* Custom Animations and Utilities */

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

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

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #F7F4ED;
}
::-webkit-scrollbar-thumb {
    background: #D97757;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #C25A40;
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: transform 0.3s ease-in-out;
}

/* Form Focus Styles */
input:focus, select:focus, textarea:focus {
    outline: none;
}
