/*
Theme Name: Third Eye House
Author: Third Eye Team
Version: 5.0
*/

/* 1. التنسيق العام (الأبيض والرمادي الرصين) */
body {
    background-color: #f5f5f5 !important; /* رمادي فاتح جداً للخلفية */
    direction: rtl;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    color: #333333 !important;
}

.container {
    width: 85%;
    max-width: 1100px;
    margin: auto;
}

/* 2. الترويسة (Header) بالرمادي الفحمي */
.main-header {
    background-color: #2d2d2d !important; /* رمادي غامق جداً */
    padding: 40px 0;
    text-align: center;
    border-bottom: 4px solid #e0e0e0;
}

.main-header h1 {
    color: #ffffff !important; /* اسم المنصة بالأبيض */
    font-size: 34px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

/* 3. تنسيق القائمة لجعلها أفقية (أهم خطوة الآن) */
.main-nav ul {
    list-style: none; /* إخفاء النقاط الجانبية */
    padding: 0;
    margin: 0;
    display: flex; /* جعلها أفقية */
    justify-content: center;
    gap: 30px;
}

.main-nav ul li a {
    color: #ffffff !important; /* تحويل الروابط من الأزرق للأبيض */
    text-decoration: none; /* إزالة الخط تحت الكلام */
    font-weight: bold;
    font-size: 16px;
    transition: 0.3s;
}

.main-nav ul li a:hover {
    color: #8d99ae !important; /* رمادي فاتح عند مرور الماوس */
}

/* 4. كرت المقال (Analysis Card) */
.analysis-card {
    background: #ffffff !important; /* أبيض صريح للمقالات */
    padding: 40px;
    margin: 40px auto;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-right: 6px solid #9e9e9e; /* خط جانبي رمادي للتميز */
}
