/* ==========================================
   Jurnal.Lawgos.id - Custom Stylesheet
   Author: Lawgos.id
   ========================================== */

/* Global */
body {
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #f8fafc;
}

/* Header */
.pkp_site_name a {
    color: #0B3D91;
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
}

.pkp_site_name a:hover {
    color: #154fb4;
}

/* Navigation */
.pkp_navigation_primary {
    background: #0B3D91;
    border-bottom: 3px solid #D4AF37;
}

.pkp_navigation_primary a {
    color: #ffffff !important;
    font-weight: 600;
    transition: .3s;
}

.pkp_navigation_primary a:hover {
    color: #D4AF37 !important;
}

/* Buttons */
button,
.btn,
.pkp_button,
input[type="submit"] {
    background: #0B3D91;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 18px;
    transition: .3s ease;
}

button:hover,
.btn:hover,
.pkp_button:hover,
input[type="submit"]:hover {
    background: #082d70;
}

/* Links */
a {
    color: #0B3D91;
}

a:hover {
    color: #154fb4;
    text-decoration: none;
}

/* Article Summary */
.obj_article_summary {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    transition: .3s;
}

.obj_article_summary:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

/* Sidebar */
.pkp_block {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 8px;
    padding: 18px;
    margin-bottom: 20px;
}

/* Search Box */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
textarea,
select {
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 10px;
}

/* Titles */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #0B3D91;
    font-weight: 700;
}

/* Breadcrumb */
.cmp_breadcrumbs {
    background: #ffffff;
    border-radius: 6px;
    padding: 10px;
}

/* Footer */
.pkp_structure_footer_wrapper {
    background: #0B3D91;
    color: #ffffff;
    padding: 35px 20px;
    margin-top: 50px;
}

.pkp_structure_footer_wrapper a {
    color: #D4AF37;
}

.pkp_structure_footer_wrapper a:hover {
    color: #ffffff;
}

/* Tables */
table {
    border-collapse: collapse;
    width: 100%;
}

table th {
    background: #0B3D91;
    color: #ffffff;
}

table th,
table td {
    padding: 10px;
    border: 1px solid #ddd;
}

/* Notices */
.pkp_notification {
    border-left: 4px solid #0B3D91;
}

/* Responsive */
@media (max-width: 768px) {

    .pkp_site_name a {
        font-size: 1.5rem;
    }

    .obj_article_summary {
        padding: 15px;
    }

}