/* Custom styles — supplementing Tailwind */

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

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Selection */
::selection {
  background-color: rgba(20, 184, 166, 0.2);
  color: #134e4a;
}

/* Focus visible */
*:focus-visible {
  outline: 2px solid #14b8a6;
  outline-offset: 2px;
}

/* Subtle image loading animation */
img {
  opacity: 1;
  transition: opacity 0.4s ease;
}
img[data-src] {
  opacity: 0;
}

/* Print styles */
@media print {
  nav, #contact, .fade-up { display: none !important; }
  body { color: #1e293b; background: white; }
  section { padding: 2rem 0; }
}
