/* FM Mkhari Attorneys Inc. - Custom Styles */

/* Custom scrollbar for webkit */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f5f5f5; 
}
::-webkit-scrollbar-thumb {
    background: #d4d4d4; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #a3a3a3; 
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Mobile Menu Transitions */
.mobile-menu-enter {
    opacity: 0;
    transform: translateY(-10px);
}
.mobile-menu-enter-active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 200ms, transform 200ms;
}

/* Signature Font Fallback */
.signature {
    font-family: 'Playfair Display', serif;
    font-style: italic;
}