/* Custom Styles for Frank Burger LLC */

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

/* Base Typography Overrides */
body {
    font-family: 'Montserrat', sans-serif;
}

h1, h2, h3, .font-serif {
    font-family: 'Cormorant Garamond', serif;
}

/* Utility Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Transitions */
#mobile-menu {
    box-shadow: inset 1px 0 0 rgba(0,0,0,0.1);
}

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

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

::-webkit-scrollbar-thumb {
    background: #2C2C2C;
}

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