﻿/* ============================
   HOME PAGE — HERO SECTION
   ============================ */

.hero-section {
    background: #f5f5f2;
    padding: 120px 0 100px;
    text-align: center;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #2f2f2f;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary {
    background: #6b7a3a;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
}

    .btn-primary:hover {
        background: #55622f;
    }

.btn-outline {
    border: 1px solid #6b7a3a;
    color: #6b7a3a;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
}

    .btn-outline:hover {
        background: #6b7a3a;
        color: #fff;
    }


/* ============================
   INTRO SECTION
   ============================ */

.intro-section {
    padding: 80px 0;
    text-align: center;
}

.intro-text p {
    font-size: 22px;
    color: #444;
    max-width: 800px;
    margin: auto;
    font-family: 'Playfair Display', serif;
}


/* ============================
   JOURNALS SECTION
   ============================ */

.journals-section {
    padding: 100px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    color: #2f2f2f;
    text-align: center;
}

.section-subtitle {
    font-size: 20px;
    color: #6b7a3a;
    text-align: center;
    margin-bottom: 50px;
}

.journals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.journal-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #eee;
}

    .journal-card h4 {
        color: #6b7a3a;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .journal-card h5 {
        font-family: 'Playfair Display', serif;
        font-size: 22px;
        margin-bottom: 15px;
    }

    .journal-card p {
        color: #555;
        margin-bottom: 20px;
    }

.learn-more {
    color: #6b7a3a;
    text-decoration: none;
    font-weight: 500;
}

    .learn-more:hover {
        text-decoration: underline;
    }

.view-all {
    text-align: center;
    margin-top: 40px;
}


/* ============================
   ARTICLES SECTION
   ============================ */

.articles-section {
    padding: 100px 0;
    background: #fafafa;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.article-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.article-tag {
    font-size: 14px;
    color: #6b7a3a;
    font-weight: 600;
}

.article-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin: 10px 0 15px;
}

.article-card p {
    color: #555;
    margin-bottom: 20px;
}
/* ============================
   RESPONSIVE — JOURNALS GRID
   ============================ */

@media (max-width: 768px) {
    .journals-grid {
        grid-template-columns: 1fr; /* عمود واحد */
    }
}

/* ============================
   RESPONSIVE — ARTICLES GRID
   ============================ */

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr; /* عمود واحد */
    }
}
