/* AL-QUDRAH CUSTOM THEME */

:root {
  --primary-color: #0b4ea2;
  --secondary-color: #0b4ea2;
  --light-bg: #f5f8f5;
  --text-dark: #1f2937;
}

/* Header */
.pkp_structure_head {
    background: linear-gradient(135deg, #0b4ea2, #1da1f2);
    padding: 20px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
}

.pkp_site_name a {
    color: white !important;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Navigation */
.pkp_navigation_primary_row {
    background: white;
    border-radius: 12px;
    margin-top: 10px;
    padding: 8px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    position: sticky;
    top: 0;
    z-index: 999;
}

.pkp_navigation_primary a {
    color: #0b4ea2 !important;
    font-weight: 600;
}

.pkp_navigation_primary a:hover {
    color: #0b4ea2 !important;
}

/* Homepage */
.page_index_journal {
    background: var(--light-bg);
}

/* Article Cards */
.obj_article_summary {
    background: white;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
    transition: all .3s ease;
}

.obj_article_summary:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,.10);
}

.obj_article_summary .title a {
    color: var(--primary-color) !important;
    font-weight: 700;
}

/* Buttons */
.cmp_button,
.obj_galley_link,
.block_make_submission a {
    background: var(--primary-color) !important;
    color: white !important;
    border-radius: 10px;
    padding: 10px 18px;
    border: none;
    font-weight: 600;
}

.cmp_button:hover,
.obj_galley_link:hover {
    background: var(--secondary-color) !important;
}

/* Sidebar */
.pkp_block {
    background: white;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    margin-bottom: 20px;
}

/* Footer */
.pkp_structure_footer_wrapper {
    background: #0b4ea2;
    color: white;
    padding: 40px 0;
    margin-top: 50px;
}

.pkp_structure_footer_wrapper a {
    color: #0b4ea2 !important;
}

/* Search Box */
.pkp_search input[type="text"] {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 10px;
}

.pkp_site_name {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
}

.pkp_site_name .is_img img {
    max-width: 1200px !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    display: block;
}

.pkp_structure_page {
    max-width: 100% !important;
    width: 100% !important;
}

.pkp_structure_head {
    margin: 0 !important;
    padding: 0 !important;
}

.article-view{
    display:inline-block;
    margin-left:10px;
    background:#f3f3f3;
    padding:6px 12px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
    color:#444;
}


