/* تحسينات السيو والأداء */

/* تحسين الخطوط للقراءة */
body {
    font-display: swap;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* تحسين الروابط الداخلية */
.internal-link {
    text-decoration: underline;
    text-decoration-color: rgba(59, 130, 246, 0.3);
    text-underline-offset: 3px;
    transition: all 0.2s ease;
}

.internal-link:hover {
    text-decoration-color: rgba(59, 130, 246, 1);
    text-underline-offset: 2px;
}

/* تحسين Breadcrumbs */
.breadcrumbs {
    margin-bottom: 1rem;
}

.breadcrumbs a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: #3b82f6;
}

/* تحسين الصور للسيو */
img {
    max-width: 100%;
    height: auto;
    loading: lazy;
}

/* تحسين العناوين للسيو */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 0.5em;
    font-weight: 700;
}

h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 2rem);
}

/* تحسين الأزرار للتفاعل */
.btn-primary, .btn-secondary {
    cursor: pointer;
    user-select: none;
    touch-action: manipulation;
    will-change: transform;
}

/* تحسين الأداء للأنيميشن */
.hover-scale {
    will-change: transform;
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* تحسين Core Web Vitals */
.container {
    contain: layout style paint;
}

/* تحسين الجداول للهاتف المحمول */
.mobile-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* تحسين النماذج */
input, textarea, select {
    font-size: 16px; /* منع التكبير في iOS */
}

/* تحسين الفيديو والوسائط */
video, iframe {
    max-width: 100%;
    height: auto;
}

/* تحسين الطباعة */
@media print {
    .no-print {
        display: none !important;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666;
    }
}

/* تحسين الوضع المظلم */
@media (prefers-color-scheme: dark) {
    .auto-dark {
        background-color: #1f2937;
        color: #f9fafb;
    }
}

/* تحسين الحركة المخفضة */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* تحسين التباين العالي */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid #000;
    }
    
    .internal-link {
        text-decoration: underline;
        text-decoration-thickness: 2px;
    }
}

/* تحسين الشاشات الكبيرة */
@media (min-width: 1920px) {
    .container {
        max-width: 1400px;
    }
}

/* تحسين الشاشات الصغيرة جداً */
@media (max-width: 320px) {
    .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* تحسين الأداء للتمرير */
.scroll-smooth {
    scroll-behavior: smooth;
}

/* تحسين الفوكس للوصولية */
:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

:focus:not(:focus-visible) {
    outline: none;
}

/* تحسين الروابط للوصولية */
a:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
    border-radius: 2px;
}

/* تحسين النصوص للقراءة */
p {
    max-width: 70ch;
    margin-bottom: 1em;
}

/* تحسين القوائم */
ul, ol {
    padding-right: 1.5rem;
}

li {
    margin-bottom: 0.5em;
}

/* تحسين الاقتباسات */
blockquote {
    border-right: 4px solid #3b82f6;
    padding-right: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #6b7280;
}

/* تحسين الكود */
code {
    background-color: #f3f4f6;
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-size: 0.9em;
    font-family: 'Courier New', monospace;
}

pre {
    background-color: #1f2937;
    color: #f9fafb;
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1rem 0;
}

/* تحسين الجداول */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

th, td {
    padding: 0.75rem;
    text-align: right;
    border-bottom: 1px solid #e5e7eb;
}

th {
    background-color: #f9fafb;
    font-weight: 600;
}

/* تحسين النماذج المتقدمة */
.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* تحسين الرسائل */
.alert {
    padding: 1rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.alert-warning {
    background-color: #fef3c7;
    color: #92400e;
    border: 1px solid #fcd34d;
}

.alert-info {
    background-color: #dbeafe;
    color: #1e40af;
    border: 1px solid #93c5fd;
}

/* تحسين التحميل */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* تحسين الشبكة */
.grid-responsive {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* تحسين الفليكس */
.flex-responsive {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.flex-responsive > * {
    flex: 1 1 300px;
}
