/*
Theme Name: AHD School Theme
Description: RTL (Right-to-Left) Stylesheet for Arabic and Hebrew languages
Author: AHD School
Version: 1.0
*/

/* 
 * RTL Support for AHD School Theme
 * This file provides RTL-specific styles
 * WordPress automatically loads this file for RTL languages
 */

/* Basic RTL adjustments */
body {
    direction: rtl;
    text-align: right;
}

/* Ensure proper text direction */
html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}

/* Logo positioning in RTL */
.logo-circle {
    left: auto;
    right: 50px;
}

/* Social links should stay on the left in all languages */
.social-links {
    left: 40px;
    right: auto;
}

/* Navigation menu alignment - keep normal direction for RTL */
.nav-menu {
    /* Do not reverse - already correct in main styles */
}

/* Mobile menu toggle in RTL */
.mobile-menu-toggle {
    left: auto;
    right: 20px;
}

/* Footer content RTL */
.footer-content {
    direction: rtl;
    text-align: right;
}

/* Grid items RTL alignment */
.quick-links-columns {
    direction: rtl;
}

/* Card layouts RTL */
.news-card,
.quick-link-v,
.article-container {
    text-align: right;
}

/* Buttons and links RTL */
.btn-home,
.btn-search,
.back-button {
    text-align: center;
}

/* Album carousel RTL support */
.ahd-album {
    direction: rtl;
}

/* Ensure all text inputs are RTL */
input[type="text"],
input[type="email"],
input[type="search"],
textarea {
    direction: rtl;
    text-align: right;
}

/* Tables RTL */
table {
    direction: rtl;
    text-align: right;
}

/* Lists RTL */
ul, ol {
    padding-right: 0;
    padding-left: 0;
    list-style-position: inside;
}

/* Blockquotes RTL */
blockquote {
    border-right: 4px solid #1e5ba8;
    border-left: none;
    padding-right: 20px;
    padding-left: 0;
    text-align: right;
}

/* Ensure proper alignment for all content */
p, div, span, h1, h2, h3, h4, h5, h6 {
    direction: inherit;
    text-align: inherit;
}

/* Fix any LTR elements that need to stay LTR */
.ltr-content {
    direction: ltr;
    text-align: left;
}

/* Numbers and dates can stay LTR if needed */
.date,
.number,
.phone,
.email {
    direction: ltr;
    display: inline-block;
}

/* WordPress core RTL fixes */
.wp-block-image {
    text-align: right;
}

.wp-block-quote {
    border-right: 4px solid #1e5ba8;
    border-left: none;
    padding-right: 20px;
    padding-left: 0;
}

/* Admin bar is hidden on frontend via functions.php */

/* Responsive RTL adjustments */
@media (max-width: 968px) {
    .logo-circle {
        left: 50%;
        right: auto;
        transform: translateX(50%);
    }
    
    .mobile-menu-toggle {
        right: auto;
        left: 20px;
    }
}

/* Ensure smooth transitions for RTL */
* {
    transition-property: all;
    transition-timing-function: ease;
}
