/* Global typography & micro-interactions */
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', sans-serif;
  color: #263238; /* deep charcoal neutral-dark default */
  background-color: #FFFFFF;
}
.site {
  overflow-x: hidden;
}
main {
  display: block;
}
/* Keep fixed header from overlapping admin bar in logged-in state */
.admin-bar header {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar header {
    top: 46px;
  }
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #F5F5F5;
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}

/* Animation utilities for fallback (if needed) */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

/* WordPress content area defaults */
.content p {
  margin-bottom: 1rem;
  line-height: 1.75;
}
.content ul,
.content ol {
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}
.content a {
  color: #2E7D32;
}
