/*
Theme Name: National Guard
Theme URI: https://ahmedabdnasser.com
Author: Ahmed Abdelnasser
Author URI: https://ahmedabdnasser.com
Description: Custom WordPress theme for National Guard service with committees, courses, media gallery, and announcements management.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nationalguard
Tags: custom-theme, bootstrap, rtl-language-support, translation-ready
*/

/* Theme colors: Light Blue Gradient (#94D9F8 to #8FD3F2) and White */
:root {
    --primary-color: #94D9F8;
    --primary-dark: #8FD3F2;
    --secondary-color: #8FD3F2;
    --primary-light: #94D9F8;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray: #CCCCCC;
    --text-dark: #333333;
    
    /* Legacy support */
    --primary-blue: #94D9F8;
    --primary-blue-dark: #8FD3F2;
    --primary-blue-light: #8FD3F2;
}

/* Default: English LTR - Fonts will be loaded conditionally via fonts.css for Arabic */
html {
    direction: ltr;
}

body {
    color: var(--text-dark);
    background-color: var(--white);
    direction: ltr;
    text-align: left;
}

/* LTR Support (default - English) */
body.ltr,
body.ltr * {
    direction: ltr;
    text-align: left;
}

/* RTL Support (when Arabic is selected) */
body.rtl,
body.rtl * {
    direction: rtl;
    text-align: right;
}



