/* /pesantren/assets/css/custom.css */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Merriweather:wght@400;700&display=swap");

/* Mencegah FOUC (Flash of Unstyled Content) saat HTMX memuat komponen */
.htmx-indicator {
  opacity: 0;
  transition: opacity 200ms ease-in;
}
.htmx-request .htmx-indicator {
  opacity: 1;
}
.htmx-request.htmx-indicator {
  opacity: 1;
}

/* Base styling focus-visible untuk a11y keyboard navigation */
:focus-visible {
  outline: 2px solid #10b981; /* Emerald-500 */
  outline-offset: 2px;
}

/* Tambahan untuk di custom.css (Fase 1) */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in {
  animation: fadeIn 0.3s ease-out forwards;
}
