/* Use Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

/* Apply base font to the entire site */
body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background-color: #f9f9fb;
    color: #333;
}
 */
/* Optional: Match site background */
body {
    background-image: url('/public/site/images/coverpage.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #8ccdf7;
}

/* Header customization 
.pkp_head_wrapper {
    background-color: #004080; /* Navy blue */
    color: white;
}
*/

/* Header customization - same as background 
.pkp_head_wrapper {
    background-color: #f9f9fb; /* Match background */
    color: #333;
    border-bottom: 1px solid #ddd;
}
*/
/* Apply custom background to header */
.pkp_head_wrapper {
    background-image: url('/public/site/images/coverpage.jpg	');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #8ccdf7;
    border-bottom: 1px solid #ddd;
}
/* Remove all borders from tables inside main content */
.pkp_structure_main table,
.pkp_structure_main th,
.pkp_structure_main td {
    border: none !important;
    background: transparent;
}

/* Remove top and bottom borders from main content */
.pkp_structure_main {
    border: none !important;
}

/* Also kill any HR lines inside main content */
.pkp_structure_main hr {
    display: none !important;
}

/* Remove shadow or lines from issue listings */
.obj_issue_toc_issues,
.obj_issue_toc {
    border: none !important;
    box-shadow: none !important;
}

/* Remove general dividers */
.pkp_structure_main > div {
    border-top: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}
.pkp_site_name a {
    color: white;
    font-weight: 600;
    font-size: 24px;
}

/* Navigation Menu */
.navbar-nav > li > a {
    font-family: 'Inter', sans-serif;
    color: #fff !important;
    font-weight: 500;
    padding: 10px 15px;
    transition: background-color 0.3s;
}

.navbar-nav > li > a:hover {
    background-color: #0055a5;
    border-radius: 4px;
}

/* Footer */
.pkp_footer_content {
    background-color: #333;
    color: #ccc;
    padding: 20px;
}

.pkp_footer_content a {
    color: #aaa;
}

/* Buttons */
.button, .cmp_button, .btn-primary {
    background-color: #0055a5;
    color: #fff;
    border-radius: 6px;
    padding: 8px 16px;
    border: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.button:hover, .cmp_button:hover, .btn-primary:hover {
    background-color: #003d80;
}

/* Article Titles */
.obj_article_summary h2, h3, h4 {
    color: #004080;
    font-weight: 600;
}

/* Sidebar widgets */
.sidebar .block {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
