/* تنسيقات صفحة المقالات */
:root {
    --primary-color: #2A5C8B;
    --secondary-color: #851414;
    --dark-color: #2C3E50;
    --light-color: #F8F9FA;
    --accent-color: #E74C3C;
    --border-radius: 10px;
}

/* بانر المقالات */
.articles-banner {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('https://images.unsplash.com/photo-1578091856194-4a6451a06278?q=80&w=1470&auto=format&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 2rem;
    margin-bottom: 3rem;
}

.banner-content {
    max-width: 800px;
}

.banner-content h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.banner-content p {
    color: #eee;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.search-container {
    max-width: 500px;
    margin: 0 auto;
}

.search-container form {
    display: flex;
    position: relative;
}

.search-container input {
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.search-container button {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50px;
    background: var(--secondary-color);
    border: none;
    border-radius: 30px 0 0 30px;
    color: white;
    cursor: pointer;
}

/* المقال المميز */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.featured-image {
    position: relative;
    height: 100%;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.featured-content {
    padding: 2rem;
}

.article-date {
    color: #777;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.featured-content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.featured-content p {
    margin-bottom: 2rem;
    line-height: 1.7;
}

.read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}

.read-more i {
    margin-right: 0.5rem;
    transition: transform 0.3s;
}

.read-more:hover {
    color: var(--primary-color);
}

.read-more:hover i {
    transform: translateX(-5px);
}

/* شبكة المقالات */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.article-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.article-card:hover {
    transform: translateY(-10px);
}

.article-image {
    height: 220px;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 1.5rem;
}

.article-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.article-content p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}

/* قسم الإنفوغرافيك */
.infographic-section {
    background: #fff;
    padding: 3rem;
    border-radius: var(--border-radius);
    margin-bottom: 4rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.infographic-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.infographic-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.infographic-container img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.infographic-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    gap: 1rem;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.95rem;
    color: #555;
}

/* النشرة البريدية */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 3rem;
    border-radius: var(--border-radius);
    margin-bottom: 4rem;
    text-align: center;
    color: white;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    margin-bottom: 2rem;
}

.form-row {
    display: flex;
    margin-bottom: 1rem;
}

#emailInput {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 30px 0 0 30px;
}

.subscribe-btn {
    background: var(--accent-color);
    color: white;
    padding: 0 2rem;
    border: none;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    transition: background 0.3s;
}

.subscribe-btn:hover {
    background: #c0392b;
}

.success-message {
    margin-top: 1rem;
}

.success-message i {
    color: white;
}

/* التكييف مع الشاشات الصغيرة */
@media (max-width: 992px) {
    .featured-article {
        grid-template-columns: 1fr;
    }
    
    .infographic-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .articles-banner {
        height: 50vh;
    }
    
    .banner-content h1 {
        font-size: 2.5rem;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    #emailInput {
        border-radius: 30px;
        margin-bottom: 1rem;
    }
    
    .subscribe-btn {
        border-radius: 30px;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .banner-content h1 {
        font-size: 2rem;
    }
    
    .featured-content h2 {
        font-size: 1.5rem;
    }
}

/* تنسيق الرابط النشط في القائمة */
.nav-links a.active {
    font-weight: bold;
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    bottom: -5px;
    left: 0;
}