/* Mind and Body of Christ — Custom Styles */

html {
  scroll-behavior: smooth;
}

/* Prevent layout shift while fonts load */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Mobile menu transitions */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.mobile-menu.open {
  max-height: 400px;
}

/* Subtle fade-in for sections */
.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Horizontal rule styling */
.divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, #D6D3D1, transparent);
}

/* Link hover transitions */
a {
  transition: color 0.2s ease;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #92400E;
  outline-offset: 2px;
  border-radius: 2px;
}
