/* RTL-specific styles for Arabic */

/* Import Arabic font */
@import url('https://fonts.googleapis.com/css2?family=Amiri:wght@400;700&display=swap');

body {
    font-family: 'Amiri', serif;
}

/* Adjust navigation for RTL */
[dir="rtl"] header .container {
    flex-direction: row-reverse;
}

[dir="rtl"] nav ul {
    /* Reverse the order of menu items for a more natural RTL flow */
    flex-direction: row-reverse;
}

[dir="rtl"] .language-switcher {
    /* Move language switcher to the left */
    margin-left: 0;
    margin-right: auto;
}

/* Adjust footer for RTL */
[dir="rtl"] .footer-content {
    /* Reverse the order of footer sections */
    flex-direction: row-reverse;
}

[dir="rtl"] .footer-section {
    /* Ensure text alignment is right */
    text-align: right;
}

[dir="rtl"] .footer-section ul {
    /* Remove default list style and align right */
    padding-right: 0;
}

[dir="rtl"] .footer-section p i {
    /* Space between icon and text */
    margin-left: 10px;
    margin-right: 0;
}

/* Responsive adjustments for RTL */
@media (max-width: 768px) {
    [dir="rtl"] header .container {
        /* Keep the order for mobile menu toggle, logo, and language switcher */
        flex-direction: row;
    }

    [dir="rtl"] nav {
        /* Full width for mobile nav */
        width: 100%;
    }

    [dir="rtl"] nav ul {
        /* Stack vertically for mobile */
        flex-direction: column;
    }
}
