/* الإعدادات العامة للموقع */
:root {
    --primary-color: #2c3e50;    /* أزرق غامق رسمي */
    --secondary-color: #e67e22;  /* برتقالي هادئ للأزرار */
    --text-color: #333;
    --bg-light: #f4f4f4;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--white);
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* هيدر الصفحة */
.book-header {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

.back-link {
    text-decoration: none;
    color: #666;
    font-size: 0.9em;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--secondary-color);
}

/* تقسيم المحتوى (Grid) */
.book-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.book-cover-column {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.main-cover {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.book-details-column {
    flex: 2;
    min-width: 300px;
}

/* المواصفات التقنية (الناشر، ISBN) */
.book-specs {
    margin-top: 20px;
    text-align: right;
    background: var(--bg-light);
    padding: 15px;
    border-radius: 5px;
    font-size: 0.95em;
}

/* العناوين والأقسام */
h1, h2, h3 {
    color: var(--primary-color);
}

h2 {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    margin-top: 30px;
}

/* قسم الملخص الإنجليزي */
.abstract-en {
    margin-top: 30px;
    background: #f9f9f9;
    padding: 20px;
    border-left: 5px solid var(--primary-color);
    font-family: 'Georgia', serif;
}

/* زر التواصل (Call to Action) */
.cta-section {
    text-align: center;
    margin: 50px 0;
    padding: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 10px;
}

.cta-section h2, .cta-section p {
    color: var(--white);
    border: none;
}

.contact-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 35px;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.2s, background 0.3s;
}

.contact-btn:hover {
    background: #d35400;
    transform: translateY(-2px);
}

/* الهواتف المحمولة */
@media (max-width: 768px) {
    .book-grid {
        flex-direction: column;
    }
    
    .book-details-column, .book-cover-column {
        flex: 1;
    }
}