/* إعادة ضبط واجهة الصفحة */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Tahoma', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 1.25rem; /* خط كبير وواضح لقراءة الأحاديث (~20px) */
    line-height: 1.9;    /* مسافة ممتازة بين الأسطر لمنع تداخل الحركات */
    background-color: #f8fafc;
    color: #0f172a;
    direction: rtl;
}

/* الهيدر والعنوان الرئيسي */
header {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: #ffffff;
    padding: 25px 20px;
    text-align: center;
}

header h1 {
    font-size: 2.2rem; /* عنوان رئيسي واضح ومكبر */
    margin-bottom: 10px;
}

/* القائمة العلوية */
nav.main-nav {
    background-color: #1e293b;
    border-bottom: 4px solid #2563eb;
}

nav.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav.main-nav a {
    display: block;
    padding: 14px 22px;
    color: #f8fafc;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
}

nav.main-nav a:hover {
    background-color: #2563eb;
}

/* الحاوية الرئيسية */
.main-wrapper {
    max-width: 1100px;
    margin: 25px auto;
    padding: 0 15px;
    display: flex;
    gap: 25px;
}

/* القائمة الجانبية (الفهرس) */
aside.sidebar {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    align-self: flex-start;
}

aside.sidebar h3 {
    font-size: 1.3rem;
    color: #1e3a8a;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

aside.sidebar ul {
    list-style: none;
}

aside.sidebar li {
    margin-bottom: 10px;
}

aside.sidebar a {
    color: #1e293b;
    text-decoration: none;
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 1.15rem;
    font-weight: 500;
}

aside.sidebar a:hover {
    background-color: #eff6ff;
    color: #2563eb;
}

/* منطقة المحتوى ونصوص الأحاديث */
main.content-area {
    flex: 3;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
}

main.content-area h2 {
    color: #1e3a8a;
    font-size: 1.6rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 10px;
}

main.content-area p {
    font-size: 1.3rem; /* حجم خط ممتاز وقابل للقرارات في النصوص الطويلة */
    margin-bottom: 15px;
    text-align: justify;
}

/* الفوتر */
footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 25px 20px;
    margin-top: 40px;
    text-align: center;
    font-size: 1rem;
}

.footer-links a {
    color: #e2e8f0;
    text-decoration: none;
    margin: 0 10px;
}

/* التجاوب مع الجوال: إظهار المحتوى أولاً والقائمة أسفله */
@media (max-width: 768px) {
    body {
        font-size: 1.15rem;
    }
    .main-wrapper {
        display: flex;
        flex-direction: column-reverse; /* يقلب الترتيب عمودياً: يضع المحتوى بالأعلى والقائمة بأسفله */
    }
    aside.sidebar {
        width: 100%;
    }
    main.content-area {
        padding: 20px;
    }
}



/* تمييز الآيات القرآنية */
.quran-verse {
    color: #047857; /* أخضر إسلامي هادئ */
    background-color: #ecfdf5; /* خلفية خضراء فاتحة جداً */
    padding: 8px 14px;
    border-right: 4px solid #10b981; /* خط جانبي أخضر */
    border-radius: 4px;
    font-weight: 600;
    margin: 12px 0;
    display: block;
}

/* تمييز كلام النبي صلى الله عليه وسلم (الحديث) */
.prophet-quote {
    color: #1e40af; /* أزرق داكن وواضح */
    font-weight: bold;
    background-color: #eff6ff; /* خلفية زرقاء خفيفة */
    padding: 3px 8px;
    border-radius: 4px;
}

/* تمييز السند وأرقام الأحاديث */
.hadith-number {
    color: #64748b;
    font-size: 0.95rem;
    margin-top: 6px;
    font-weight: 500;
}