/**
 * Global Custom Styles
 * 
 * Site-wide styles that apply across all components
 * Contains base behaviors and universal utilities
 */

/* Smooth scrolling for the whole page */
html {
  scroll-behavior: smooth;
}

/* Enhanced focus states for better accessibility */
.focus\:ring-blue-500:focus,
.focus\:ring-custom:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Logo hover effect */
.site-logo:hover img {
  transform: scale(1.05);
  transition: transform 0.2s ease-in-out;
}
