/* Smooth Scrolling CSS - JavaScript-only approach to avoid trackpad interference */
/* Note: scroll-behavior: smooth removed from global scope to prevent trackpad delays */

/* Smooth scrolling with offset for fixed headers */
.scroll-offset {
  scroll-margin-top: 100px; /* Adjust based on your header height */
}

/* Optional: Add smooth transitions to anchor links */
a[href^="#"] {
  transition: color 0.3s ease;
}

/* Optional: Highlight current section in navigation */
.nav-active {
  color: var(--primary-color, #007bff) !important;
}