/* Base Styles & Reset */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background: #F5F0E6;
}
::-webkit-scrollbar-thumb {
    background: #1C1917;
    border: 3px solid #F5F0E6;
}
::-webkit-scrollbar-thumb:hover {
    background: #C05640;
}

/* Utilities */
.text-shadow {
    text-shadow: 2px 2px 0px rgba(0,0,0,0.2);
}

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

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

/* Mobile Menu Transition */
#mobile-menu {
    transition: max-height 0.3s ease-in-out;
}
