
/* ====== JAIS Global Site Styling (AJOL-like) ====== */

/* General */
body {
    font-family: 'Lato', 'Roboto', sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Header */
.pkp_head_wrapper {
    background-color: #1d4e89 !important; /* الأزرق الأساسي */
    padding: 10px 0;
    border-bottom: 3px solid #163b66;
}
.pkp_site_name {
    font-size: 22px;
    font-weight: bold;
    color: #ffffff !important;
}
.pkp_navigation_primary > li > a {
    color: #ffffff !important;
    font-weight: 500;
    padding: 12px 18px;
}
.pkp_navigation_primary > li > a:hover {
    background-color: #163b66;
    border-radius: 5px;
}

/* Homepage Banner */
.homepage_banner {
    width: 100%;
    background: url('banner.jpg') no-repeat center center;
    background-size: cover;
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
}
.homepage_banner h1 {
    font-size: 38px;
    font-weight: bold;
    background-color: rgba(0,0,0,0.5);
    padding: 10px 20px;
    border-radius: 8px;
}

/* Homepage Sections */
.section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}
.section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
    color: #1d4e89;
}
.section p {
    text-align: center;
    max-width: 800px;
    margin: auto;
}

/* Journals Grid */
.journals-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.journal-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    background-color: #f9f9f9;
    transition: transform 0.2s ease-in-out;
}
.journal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Footer */
.site-footer {
    background-color: #222831;
    color: #eeeeee;
    padding: 40px 20px;
    margin-top: 50px;
}
.site-footer a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 10px;
}
.site-footer a:hover {
    text-decoration: underline;
}
.site-footer .footer-links {
    text-align: center;
    margin-bottom: 20px;
}
.site-footer .social-icons {
    text-align: center;
    margin-top: 10px;
}
.site-footer .social-icons a {
    display: inline-block;
    margin: 0 8px;
    font-size: 20px;
    color: #ffffff;
}
.site-footer .copyright {
    margin-top: 15px;
    font-size: 14px;
    color: #aaaaaa;
    text-align: center;
}

/* Buttons */
.pkp_button,
.pkp_button_primary {
    background-color: #1d4e89 !important;
    color: #ffffff !important;
    border-radius: 5px;
    padding: 8px 15px;
}
.pkp_button:hover {
    background-color: #163b66 !important;
}
