/* Custom CSS specific to RTL and Arabic */

body {
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Base Fonts */
.font-inter {
    font-family: 'Inter', 'Manrope', sans-serif;
}

.font-cairo {
    font-family: 'Cairo', 'Tajawal', sans-serif;
}

/* RTL overrides */
html[dir="rtl"] .group-hover\:translate-x-1 {
    /* For arrows in links */
    transform: translateX(-0.25rem);
}

/* Smooth directional transitions */
* {
    transition: transform 0.2s ease, opacity 0.2s ease;
}
