/* Custom overrides and enhancements beyond Tailwind */

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

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f7f4ef;
}
::-webkit-scrollbar-thumb {
  background: #c99830;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #b07d1f;
}

/* Selection color */
::selection {
  background: rgba(212, 168, 75, 0.3);
  color: #0f1a2e;
}

/* Subtle animation for hero elements */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* Focus visible styles */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #d4a84b;
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .fade-in { opacity: 1; transform: none; }
}
