/*
Theme Name: Arabic Land Academy
Theme URI: https://arabicland.com
Author: Your Name
Author URI: https://yourwebsite.com
Description: A custom WordPress theme for Arabic Land International Academy.
Version: 1.0.0
Text Domain: arabicland
*/

html { scroll-behavior: smooth; }
body { overflow-x: hidden; }

.islamic-pattern {
    background-image: radial-gradient(#C69C38 1px, transparent 1px);
    background-size: 20px 20px;
}

.text-adaptive { text-align: start; }
.flex-adaptive { flex-direction: row; }
[dir="rtl"] .flex-adaptive { flex-direction: row-reverse; }

/* Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}
.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

noscript .reveal-up {
    opacity: 1;
    transform: translateY(0);
}