/* === ./template/styles.css === */

:root { scroll-padding-top: 6.5rem; }
:focus-visible { outline: 3px solid rgba(16,185,129,.45); outline-offset: 3px; }

/* Font preference:
   - If page is rtl (Arabic), Tajawal looks great
   - If ltr, Inter looks great
*/
html[dir="rtl"] body { font-family: Cairo, ui-sans-serif, system-ui, "Segoe UI", Arial; }
html[dir="ltr"] body { font-family: Inter, ui-sans-serif, system-ui, "Segoe UI", Arial; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .motion-safe\:animate-pulse,
  .motion-safe\:animate-ping,
  .motion-safe\:transition,
  .motion-safe\:duration-300,
  .motion-safe\:duration-500,
  .motion-safe\:duration-700 { animation: none !important; transition: none !important; }
}

/* Useful logical alignment helpers */
.text-start { text-align: start; }
.text-end { text-align: end; }
