/* B-Line Stack LLC - Custom Styles */

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

/* Offset for fixed header when navigating to sections */
section[id] {
    scroll-margin-top: 80px;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Smooth transitions */
a,
button {
    transition: all 0.2s ease-in-out;
}

/* Mobile menu animation */
#mobile-menu {
    transition: all 0.3s ease-in-out;
}

#mobile-menu.hidden {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
}

#mobile-menu:not(.hidden) {
    opacity: 1;
    max-height: 300px;
}
