/* Custom CSS Extensions for SAB Logística Traditional Web */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;700&display=swap');

html {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  scroll-behavior: smooth;
}

code, pre, .font-mono {
  font-family: 'JetBrains Mono', monospace;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #090d16;
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #f97316;
}

/* Glassmorphism utility */
.glass-panel {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Pulse Glow Effect */
@keyframes glow-orange {
  0%, 100% {
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.6);
  }
}

.animate-glow {
  animation: glow-orange 3s infinite ease-in-out;
}

/* Ensure navigation buttons are ALWAYS clickable with highest pointer priority */
header {
  position: sticky;
  top: 0;
  z-index: 9990 !important;
}

.nav-tab-btn {
  pointer-events: auto !important;
  cursor: pointer !important;
  user-select: none;
  position: relative;
  z-index: 9999 !important;
}
