/* =========================================================
   OJS JOURNAL — MODERN ACADEMIC EDITION
   Clean • Elegant • Professional • Comfortable
   ========================================================= */


/* =========================================================
   1. MODERN COLOR SYSTEM
   ========================================================= */

:root {

    --bg: #f5f7f8;
    --surface: #ffffff;
    --surface-soft: #f8fafb;

    --primary: #284b63;
    --primary-dark: #1d3749;
    --primary-light: #eaf1f5;

    --accent: #78988a;
    --accent-dark: #587565;
    --accent-light: #edf4f0;

    --text: #263238;
    --text-secondary: #64727a;
    --text-muted: #8a969d;

    --border: #e2e8eb;
    --border-light: #edf1f3;

    --white: #ffffff;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;

    --shadow-sm:
        0 2px 10px rgba(31, 48, 57, 0.05);

    --shadow-md:
        0 8px 25px rgba(31, 48, 57, 0.08);

    --shadow-lg:
        0 15px 40px rgba(31, 48, 57, 0.10);

    --transition:
        all 0.25s ease;
}


/* =========================================================
   2. GLOBAL
   ========================================================= */

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;

    background: var(--bg);

    font-family:
        "Maiandra GD",
        "Segoe UI",
        Tahoma,
        Geneva,
        Verdana,
        sans-serif;

    font-size: 14px;
    line-height: 1.75;

    color: var(--text);

    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

a {
    transition: var(--transition);
}


/* =========================================================
   3. MAIN OJS CONTAINER
   ========================================================= */

.pkp_structure_page {

    max-width: 1280px;

    margin: 25px auto;

    background: var(--surface);

    border-radius: var(--radius-lg);

    overflow: hidden;

    box-shadow: var(--shadow-md);

    border: 1px solid rgba(226, 232, 235, 0.8);
}


/* =========================================================
   4. HEADER
   ========================================================= */

.pkp_site_name_wrapper,
.pkp_site_name {

    width: 100%;

    margin: 0;
    padding: 0;

    background: var(--surface);
}

.pkp_site_name > a {
    display: block;
    padding: 0;
}

.pkp_site_name .is_img {
    display: block;
}

.pkp_site_name .is_img img {

    display: block;

    width: 100%;
    max-width: 100%;

    height: auto;
}


/* =========================================================
   5. PRIMARY NAVIGATION
   ========================================================= */

.pkp_navigation_primary_row {

    background:
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary)
        );

    border: none;

    box-shadow:
        0 4px 15px rgba(31, 48, 57, 0.12);
}

.pkp_navigation_primary_row
.pkp_navigation_primary_wrapper {

    max-width: 1200px;

    margin: auto;
}

.pkp_navigation_primary_row
.pkp_navigation_primary_wrapper
ul {

    margin: 0;
    padding: 0;
}

.pkp_navigation_primary_row
.pkp_navigation_primary_wrapper
ul li {

    margin: 0;
    padding: 0;
}

.pkp_navigation_primary_row
.pkp_navigation_primary_wrapper
ul li a {

    display: block;

    padding: 0 18px;

    line-height: 48px;

    color: rgba(255,255,255,0.94);

    font-size: 13.5px;

    font-weight: 600;

    letter-spacing: 0.2px;

    text-decoration: none;

    transition: var(--transition);
}


/* Navigation hover */

.pkp_navigation_primary_row
.pkp_navigation_primary_wrapper
ul li a:hover {

    background: rgba(255,255,255,0.10);

    color: #ffffff;

    border-radius: var(--radius-sm);

    transform: translateY(-1px);
}


/* Active menu */

.pkp_navigation_primary_row
.pkp_navigation_primary_wrapper
ul li.current a,
.pkp_navigation_primary_row
.pkp_navigation_primary_wrapper
ul li a[aria-current="page"] {

    background: rgba(255,255,255,0.15);

    color: #ffffff;

    box-shadow:
        inset 0 -2px 0 var(--accent);
}


/* =========================================================
   6. DROPDOWN
   ========================================================= */

.pkp_navigation_primary_row
.pkp_navigation_primary_wrapper
ul li ul {

    background: var(--surface);

    border: 1px solid var(--border);

    border-radius: 0 0 var(--radius-md) var(--radius-md);

    box-shadow: var(--shadow-lg);

    overflow: hidden;
}

.pkp_navigation_primary_row
.pkp_navigation_primary_wrapper
ul li ul li {

    border-bottom: 1px solid var(--border-light);
}

.pkp_navigation_primary_row
.pkp_navigation_primary_wrapper
ul li ul li:last-child {

    border-bottom: none;
}

.pkp_navigation_primary_row
.pkp_navigation_primary_wrapper
ul li ul li a {

    background: var(--surface);

    color: var(--text);

    line-height: 42px;
}

.pkp_navigation_primary_row
.pkp_navigation_primary_wrapper
ul li ul li a:hover {

    background: var(--accent-light);

    color: var(--accent-dark);

    transform: none;
}


/* =========================================================
   7. SEARCH
   ========================================================= */

.pkp_search.pkp_search_desktop,
.pkp_search.pkp_search_desktop a {

    color: #ffffff;
}


/* =========================================================
   8. CONTENT
   ========================================================= */

.pkp_structure_content {

    background: var(--surface);

    padding-top: 8px;
}

.pkp_structure_main {

    color: var(--text);
}


/* =========================================================
   9. TYPOGRAPHY
   ========================================================= */

.pkp_structure_main h1 {

    margin-top: 0;
    margin-bottom: 22px;

    color: var(--primary);

    font-size: 26px;

    font-weight: 700;

    line-height: 1.35;

    letter-spacing: -0.3px;
}

.pkp_structure_main h2 {

    color: var(--primary);

    font-weight: 700;

    line-height: 1.4;
}

.pkp_structure_main h3 {

    color: var(--accent-dark);

    font-weight: 700;
}


/* =========================================================
   10. LINKS
   ========================================================= */

.pkp_structure_main a {

    color: var(--primary);

    text-decoration: none;
}

.pkp_structure_main a:hover {

    color: var(--accent-dark);

    text-decoration: underline;
}


/* =========================================================
   11. ARTICLE CARD
   ========================================================= */

.obj_article_summary {

    position: relative;

    margin-bottom: 20px;

    padding: 23px 25px;

    background: var(--surface);

    border: 1px solid var(--border);

    border-left: 4px solid var(--accent);

    border-radius: var(--radius-md);

    font-size: 14px;

    box-shadow: var(--shadow-sm);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


/* Article hover */

.obj_article_summary:hover {

    transform: translateY(-3px);

    border-left-color: var(--primary);

    box-shadow: var(--shadow-md);
}


/* =========================================================
   12. ARTICLE TITLE
   ========================================================= */

.obj_article_summary
.title {

    margin-bottom: 7px;

    color: var(--primary);

    font-size: 18px;

    font-weight: 700;

    line-height: 1.55;
}

.obj_article_summary
.title a {

    color: var(--primary);

    text-decoration: none;
}

.obj_article_summary
.title a:hover {

    color: var(--accent-dark);

    text-decoration: none;
}


/* =========================================================
   13. AUTHORS
   ========================================================= */

.obj_article_summary
.authors {

    margin-top: 7px;

    color: var(--text-secondary);

    font-size: 13px;
}


/* =========================================================
   14. GALLEY / PDF BUTTON
   ========================================================= */

.obj_galley_link {

    display: inline-flex;

    align-items: center;

    padding: 7px 14px;

    background: var(--primary-light);

    border: 1px solid #d9e4ea;

    border-radius: 7px;

    color: var(--primary) !important;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none !important;

    transition: var(--transition);
}

.obj_galley_link:hover {

    background: var(--accent-light);

    border-color: #cdded5;

    color: var(--accent-dark) !important;

    transform: translateY(-2px);

    box-shadow: var(--shadow-sm);
}


/* =========================================================
   15. SIDEBAR
   ========================================================= */

.pkp_structure_sidebar {

    color: var(--text);
}


/* Sidebar heading */

.kepala {

    margin: 0;

    padding: 12px 15px;

    background:
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary)
        );

    border: none;

    border-bottom: 3px solid var(--accent);

    border-radius:
        var(--radius-md)
        var(--radius-md)
        0
        0;

    color: #ffffff;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 0.3px;

    text-align: center;

    box-shadow: var(--shadow-sm);

    animation: none;
}


/* Sidebar body */

.badan {

    background: var(--surface);

    border: 1px solid var(--border);

    border-top: none;

    border-radius:
        0
        0
        var(--radius-md)
        var(--radius-md);

    overflow: hidden;

    box-shadow: var(--shadow-sm);
}

.badan a {

    display: block;

    padding: 10px 14px;

    background: var(--surface);

    border-bottom: 1px solid var(--border-light);

    color: var(--text-secondary);

    font-size: 13px;

    text-align: left;

    text-decoration: none;
}

.badan a:last-child {

    border-bottom: none;
}

.badan a:hover {

    padding-left: 19px;

    background: var(--accent-light);

    color: var(--accent-dark);

    font-weight: 600;

    box-shadow: none;
}


/* =========================================================
   16. ABSTRACT
   ========================================================= */

.main_entry .item.abstract {

    margin-bottom: 22px;

    padding: 20px 22px;

    background:
        linear-gradient(
            135deg,
            #f8fafb,
            #f5f8f7
        );

    border: 1px solid var(--border);

    border-left: 4px solid var(--primary);

    border-radius: var(--radius-md);

    color: var(--text);

    text-align: justify;

    line-height: 1.9;

    box-shadow: var(--shadow-sm);
}


/* =========================================================
   17. KEYWORDS
   ========================================================= */

.item.keywords {

    margin-top: 22px;
}

.item.keywords .value {

    color: var(--text-secondary);
}


/* =========================================================
   18. ARTICLE PAGE
   ========================================================= */

.page_article {

    color: var(--text);
}

.page_article .title {

    color: var(--primary);

    font-size: 29px;

    font-weight: 700;

    line-height: 1.45;

    letter-spacing: -0.4px;
}

.page_article .authors {

    color: var(--text-secondary);

    font-size: 14px;
}


/* =========================================================
   19. FORM ELEMENTS
   ========================================================= */

input,
textarea,
select {

    max-width: 100%;

    padding: 9px 12px;

    background: var(--surface);

    border: 1px solid #d7e0e4;

    border-radius: 8px;

    color: var(--text);

    transition: var(--transition);
}

input:hover,
textarea:hover,
select:hover {

    border-color: #bdcbd1;
}

input:focus,
textarea:focus,
select:focus {

    border-color: var(--accent);

    outline: none;

    box-shadow:
        0 0 0 3px rgba(120,152,138,0.14);
}


/* =========================================================
   20. BUTTON
   ========================================================= */

button,
.button,
input[type="submit"] {

    border: none;

    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );

    color: #ffffff;

    font-weight: 600;

    padding: 9px 16px;

    transition: var(--transition);

    cursor: pointer;
}

button:hover,
.button:hover,
input[type="submit"]:hover {

    background:
        linear-gradient(
            135deg,
            var(--accent-dark),
            var(--accent)
        );

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow: var(--shadow-md);
}


/* =========================================================
   21. TABLE
   ========================================================= */

table {

    width: 100%;

    border-collapse: separate;

    border-spacing: 0;

    background: var(--surface);

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    overflow: hidden;

    box-shadow: var(--shadow-sm);
}

table th {

    padding: 12px 13px;

    background: var(--primary-light);

    color: var(--primary);

    font-weight: 700;

    text-align: left;

    border-bottom: 1px solid var(--border);
}

table td {

    padding: 11px 13px;

    color: var(--text-secondary);

    border-bottom: 1px solid var(--border-light);
}

table tr:last-child td {

    border-bottom: none;
}

table tr:hover td {

    background: var(--surface-soft);
}


/* =========================================================
   22. NOTIFICATION
   ========================================================= */

.pkp_notification {

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    box-shadow: var(--shadow-sm);
}


/* =========================================================
   MODERN OJS FOOTER
   Faculty of Economics & Business
   ========================================================= */

/* ---------- ROOT COLOR ---------- */
:root {
    --green-dark: #315e55;
    --green-main: #47776e;
    --green-soft: #dceee9;
    --green-light: #edf6f3;
    --text-dark: #2f526b;
    --text: #657b91;
    --white: #ffffff;
    --border: #d7e7e2;
    --link: #1479e6;
}


/* =========================================================
   GLOBAL FOOTER
   ========================================================= */

.site-footer,
footer {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #f8fbfa 0%,
            #edf7f4 55%,
            #dcefeb 100%
        );
    color: var(--text);
    margin-top: 40px;
}


/* Garis hijau di atas footer */
.site-footer::before,
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #76a99e;
    z-index: 5;
}


/* =========================================================
   AREA EDITORIAL ADDRESS
   ========================================================= */

.site-footer .container,
footer .container {
    position: relative;
    z-index: 3;
}


/* Judul Editorial Address */

.site-footer h2,
.site-footer h3,
.site-footer h4,
footer h2,
footer h3,
footer h4 {
    color: var(--green-main);
    font-weight: 700;
    letter-spacing: -0.2px;
}


/* Garis kecil di bawah heading */

.site-footer h2::after,
.site-footer h3::after,
footer h2::after,
footer h3::after {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    margin-top: 8px;
    border-radius: 10px;
    background: var(--green-main);
}


/* =========================================================
   ALAMAT / INFORMASI KONTAK
   ========================================================= */

.site-footer p,
footer p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.8;
}


/* Nama Fakultas */

.site-footer strong,
.site-footer b,
footer strong,
footer b {
    color: var(--text-dark);
}


/* =========================================================
   LINK
   ========================================================= */

.site-footer a,
footer a {
    color: var(--link);
    text-decoration: none;
    transition: all 0.25s ease;
}

.site-footer a:hover,
footer a:hover {
    color: #075db7;
    text-decoration: underline;
}


/* =========================================================
   ICON KONTAK
   ========================================================= */

.site-footer .fa,
.site-footer .fas,
.site-footer .far,
.site-footer .fab,
footer .fa,
footer .fas,
footer .far,
footer .fab {
    color: var(--green-main);
}


/* Lingkaran icon */

.site-footer .contact-icon,
footer .contact-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: rgba(217, 237, 232, 0.75);

    margin-right: 12px;

    color: var(--green-main);
}


/* =========================================================
   CREATIVE COMMONS
   ========================================================= */

.site-footer .license,
footer .license {
    margin-top: 25px;
    padding-top: 10px;
}

.site-footer .license img,
footer .license img {
    max-width: 120px;
    height: auto;
    display: block;
    margin-bottom: 8px;
}

.site-footer .license p,
footer .license p {
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.site-footer .footer-bottom,
footer .footer-bottom {
    position: relative;
    z-index: 10;

    margin-top: 35px;
    padding: 28px 0 30px;

    background:
        linear-gradient(
            135deg,
            #37665d,
            #294f48
        );

    color: rgba(255,255,255,0.82);
}


/* teks footer */

.site-footer .footer-bottom p,
footer .footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.82);
    font-size: 13px;
    line-height: 1.7;
}


/* Link footer */

.site-footer .footer-bottom a,
footer .footer-bottom a {
    color: #ffffff;
    text-decoration: none;
}

.site-footer .footer-bottom a:hover,
footer .footer-bottom a:hover {
    color: #d7eee8;
}


/* =========================================================
   PRIVACY / TERMS / CONTACT
   ========================================================= */

.site-footer .footer-links,
footer .footer-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.site-footer .footer-links a,
footer .footer-links a {
    position: relative;
    padding: 0 13px;
}


/* separator */

.site-footer .footer-links a:not(:last-child)::after,
footer .footer-links a:not(:last-child)::after {
    content: "|";

    position: absolute;
    right: -2px;
    top: 0;

    color: rgba(255,255,255,0.55);
}


/* =========================================================
   POWERED BY OJS
   ========================================================= */

.site-footer .pkp_brand_footer,
footer .pkp_brand_footer {
    margin-top: 10px;
    text-align: right;
}

.site-footer .pkp_brand_footer a,
footer .pkp_brand_footer a {
    opacity: 0.75;
    transition: all 0.3s ease;
}

.site-footer .pkp_brand_footer a:hover,
footer .pkp_brand_footer a:hover {
    opacity: 1;
}


/* =========================================================
   WAVE BACKGROUND
   ========================================================= */

.site-footer::after,
footer::after {
    content: "";
    position: absolute;

    left: -5%;
    bottom: 105px;

    width: 110%;
    height: 115px;

    background:
        radial-gradient(
            ellipse at 25% 100%,
            rgba(188, 220, 213, 0.65) 0%,
            rgba(188, 220, 213, 0.65) 30%,
            transparent 31%
        ),
        radial-gradient(
            ellipse at 65% 100%,
            rgba(210, 232, 227, 0.9) 0%,
            rgba(210, 232, 227, 0.9) 35%,
            transparent 36%
        );

    opacity: 0.9;
    pointer-events: none;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 768px) {

    .site-footer,
    footer {
        margin-top: 25px;
    }

    .site-footer .footer-bottom,
    footer .footer-bottom {
        padding: 25px 20px;
        text-align: center;
    }

    .site-footer .footer-links,
    footer .footer-links {
        justify-content: center;
        margin-top: 12px;
    }

    .site-footer .pkp_brand_footer,
    footer .pkp_brand_footer {
        text-align: center;
        margin-top: 15px;
    }

    .site-footer p,
    footer p {
        font-size: 13px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .site-footer .footer-links,
    footer .footer-links {
        display: block;
    }

    .site-footer .footer-links a,
    footer .footer-links a {
        display: inline-block;
        margin-bottom: 5px;
    }

    .site-footer .footer-links a:not(:last-child)::after,
    footer .footer-links a:not(:last-child)::after {
        display: none;
    }

}


/* =========================================================
   24. JOURNAL INDEX
   ========================================================= */

.page_index_journal {

    display: flex;

    flex-direction: column-reverse;
}


/* =========================================================
   25. DESKTOP
   ========================================================= */

@media (min-width: 992px) {

    .pkp_structure_sidebar > .pkp_block {

        padding:
            0
            20px
            20px
            20px;
    }

    .obj_article_summary {

        font-size: 14px;
    }
}


/* =========================================================
   26. TABLET
   ========================================================= */

@media
(min-width: 768px)
and
(max-width: 991px) {

    .pkp_structure_page {

        margin: 12px;

        border-radius: 10px;
    }

    .obj_article_summary {

        padding: 19px;
    }

    .obj_article_summary .title {

        font-size: 17px;
    }

    .footer-top {

        grid-template-columns: 1fr;

        padding: 30px;
    }

    .footer-right {

        text-align: left;
    }

    .footer-bottom {

        padding: 14px 30px;
    }
}


/* =========================================================
   27. MOBILE
   ========================================================= */

@media (max-width: 767px) {

    html,
    body {

        font-size: 13px;
    }


    /* Main container */

    .pkp_structure_page {

        width: 100%;

        margin: 0;

        border-radius: 0;

        box-shadow: none;

        border: none;
    }


    /* Mobile navigation */

    .pkp_navigation_primary_row {

        box-shadow: none;
    }

    .pkp_navigation_primary_row
    .pkp_navigation_primary_wrapper
    ul {

        display: block;

        margin: 0;

        padding: 7px;
    }

    .pkp_navigation_primary_row
    .pkp_navigation_primary_wrapper
    ul li {

        display: block;

        margin-bottom: 3px;
    }

    .pkp_navigation_primary_row
    .pkp_navigation_primary_wrapper
    ul li:last-child {

        margin-bottom: 0;
    }

    .pkp_navigation_primary_row
    .pkp_navigation_primary_wrapper
    ul li a {

        display: block;

        padding: 9px 13px;

        line-height: normal;

        border-radius: 7px;

        font-size: 13px;
    }


    /* Heading */

    .pkp_structure_main h1 {

        font-size: 21px;
    }


    /* Article */

    .obj_article_summary {

        margin-bottom: 14px;

        padding: 17px;

        border-left-width: 3px;

        border-radius: 8px;

        font-size: 13px;
    }

    .obj_article_summary .title {

        font-size: 16px;

        line-height: 1.5;
    }


    /* Abstract */

    .main_entry .item.abstract {

        padding: 15px;

        text-align: left;

        line-height: 1.8;
    }


    /* Article page */

    .page_article .title {

        font-size: 22px;
    }


    /* Sidebar */

    .pkp_structure_sidebar > .pkp_block {

        padding:
            15px
            15px
            0
            15px;
    }


    /* Footer */

    .pkp_structure_footer_wrapper {

        margin-top: 20px;

        padding: 0;
    }

    .pkp_structure_footer {

        display: block;
    }

    .pkp_footer_content {

        width: 100%;

        padding: 0;
    }

    .footer-top {

        display: block;

        padding: 28px 20px;
    }

    .footer-left {

        margin-bottom: 20px;
    }

    .footer-contact {

        margin-bottom: 20px;
    }

    .footer-right {

        text-align: left;
    }

    .footer-logo {

        max-width: 150px;
    }

    .footer-bottom {

        display: block;

        padding: 14px 20px;

        text-align: center;
    }

    .footer-tcr,
    .footer-ostrong {

        display: none;
    }
}


/* =========================================================
   28. ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }
}


/* =========================================================
   29. SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {

    width: 8px;
}

::-webkit-scrollbar-track {

    background: #eef2f3;
}

::-webkit-scrollbar-thumb {

    background: #aebdc3;

    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {

    background: var(--accent);
}


/* =========================================================
   30. TEXT SELECTION
   ========================================================= */

::selection {

    background: #dbe7ec;

    color: var(--primary-dark);
}


/* =========================================================
   MODERN ACADEMIC EDITION
   ========================================================= */