/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

/* Utility: ensure serif class exists if used */
.font-serif {
  font-family: "Playfair Display", serif;
}
/* Smooth anchor scrolling */
html {
  scroll-behavior: smooth;
}

/* Offset anchor targets for the sticky header */
:target {
  scroll-margin-top: 96px; /* adjust if your header height changes */
}

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
