/**
 * styles/frontend/pages/about.css
 * تنسيقات صفحة "عن المجلة"
 */

:root {
    --primary: #2c5aa0;
    --secondary: #d4af37;
    --accent: #c41e3a;
    --dark: #1a2b4a;
    --light: #f5f7fa;
    --gray: #6c757d;
    --white: #ffffff;
    --success: #28a745;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --gradient: linear-gradient(135deg, var(--primary) 0%, #1a2b4a 100%);
}

.journal-about-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* شريط العنوان */
.journal-header {
    background: var(--gradient);
    color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.journal-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(30deg);
}

.journal-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.journal-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

/* شبكة المحتوى */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

/* البطاقات الرئيسية */
.card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 30px;
    margin-bottom: 30px;
}

.card-title {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light);
    display: flex;
    align-items: center;
}

.card-title i {
    margin-left: 10px;
    color: var(--secondary);
}

/* قسم النطاق والمحاور */
.themes-section {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 30px;
    margin-bottom: 30px;
}

.themes-title {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.themes-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 100px;
    height: 3px;
    background: var(--secondary);
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.theme-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-right: 4px solid var(--primary);
    transition: all 0.3s;
}

.theme-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.theme-icon {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-left: 10px;
}

/* قسم الجودة والنزاهة */
.quality-section {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 30px;
    margin-bottom: 30px;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.quality-item {
    text-align: center;
    padding: 20px;
}

.quality-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.5rem;
}

.quality-title {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}

/* الشريط الجانبي */
.sidebar {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.info-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    border-right: 4px solid var(--primary);
}

.info-title {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.info-title i {
    margin-left: 10px;
}

.info-content {
    color: var(--dark);
    line-height: 1.6;
}

.indexing-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.badge {
    background: var(--primary);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.badge i {
    margin-left: 5px;
}

.impact-factor {
    background: var(--secondary);
    color: var(--dark);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin-top: 15px;
    font-weight: 700;
    font-size: 1.5rem;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.quick-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #f0f0f0;
    border-radius: 8px;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s;
}

.quick-link:hover {
    background: var(--primary);
    color: white;
    transform: translateX(-5px);
}

.quick-link i {
    margin-left: 10px;
    color: var(--accent);
}

.quick-link:hover i {
    color: white;
}

/* قسم الاعتماد */
.accreditation-section {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 30px;
    margin-bottom: 30px;
}

.accreditation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.accreditation-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.accreditation-logo {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.8rem;
}

.accreditation-title {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}

/* التصميم المتجاوب */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .journal-title {
        font-size: 1.8rem;
    }
    
    .themes-grid {
        grid-template-columns: 1fr;
    }
    
    .quality-grid, .accreditation-grid {
        grid-template-columns: 1fr;
    }
    
    .journal-about-page {
        padding: 10px;
    }
    
    .journal-header, .card, .themes-section, .quality-section, .accreditation-section, .sidebar {
        padding: 20px 15px;
    }
}