/* Custom styles that complement Tailwind */

/* Smooth scroll offset for fixed nav */
section[id] {
  scroll-margin-top: 80px;
}

/* Selection color */
::selection {
  background-color: rgba(52, 211, 153, 0.3);
  color: #0f172a;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f0fdf4;
}
::-webkit-scrollbar-thumb {
  background: #0f172a;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #1e293b;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid #34d399;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .navbar, .mobile-menu, .geo-circle, .geo-square, .geo-dots {
    display: none !important;
  }
  body {
    background: white !important;
    color: black !important;
  }
}
