/* Eugene Solutions LLC — Custom Styles */
/* Build Date: February 23, 2026 */

/* Font families */
.font-space { font-family: 'Space Grotesk', sans-serif; }
.font-inter { font-family: 'Inter', sans-serif; }

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

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #94a3b8; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #64748b; }

/* Navbar scroll styles */
.navbar-scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid #f1f5f9;
}
.navbar-scrolled .nav-text { color: #111827 !important; }
.navbar-scrolled .nav-subtext { color: #6b7280 !important; }
.navbar-scrolled .nav-link { color: #374151 !important; }
.navbar-scrolled .nav-link:hover { color: #059669 !important; background: #f0fdf4 !important; }
.navbar-scrolled .nav-phone { color: #374151 !important; }
.navbar-scrolled .nav-portal { 
  color: #1e3a5f !important;
  border-color: #e5e7eb !important;
  background: #f9fafb !important;
}
.navbar-scrolled #mobile-toggle { color: #111827 !important; }

/* Animation utilities */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fadeInUp { animation: fadeInUp 0.6s ease-out forwards; }

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}
.animate-slideInLeft { animation: slideInLeft 0.6s ease-out forwards; }

/* Focus styles for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid #10b981;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Skip navigation for accessibility */
.skip-nav {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-nav:focus {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  z-index: 10000;
  background: #0f172a;
  color: white;
  padding: 1rem 2rem;
  font-weight: bold;
}

/* Print styles */
@media print {
  nav, footer, .no-print { display: none !important; }
  body { font-size: 12pt; color: #000; }
}
