
/*
Develop By: Firdaus
Email: firdaus171098@gmail.com
*/
.pkp_navigation_primary_row {
    background-color: #9900cc;
    border-color: #9900cc;
}

.pkp_site_nav_menu {
    border: 1px solid #9900cc;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color: #9900cc;
    padding-right: 20px;
    padding-left: 20px;
}

.pkp_site_nav_menu a {
    display: inline-block;
    padding: .125rem 0;
    color: #fff;
    text-decoration: none;
}

.pkp_site_nav_menu a:hover {
    color: #ff751f;
    text-decoration: none;
    color:;
}

/*FOOTER*/
/* Footer Container */
    #javit-footer-container {
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      background-color: #c92ad8;
      font-family: 'Segoe UI', Roboto, -apple-system, sans-serif;
      color: #fff;
    }

    /* Footer Columns */
    .javit-footer-col {
      padding: 0 1.5rem;
      box-sizing: border-box;
    }

    /* First two columns (Statistics and Indexing) */
    .javit-footer-main-col1 {
      width: 100%;
    }

    /* Other columns */
    .javit-footer-sub-col {
      width: 20%;
    }

    /* Column Headings */
    .javit-footer-heading {
      font-size: 1.1rem;
      margin-bottom: 1rem;
      color: #ffffff;
      padding-bottom: 0.5rem;
      border-bottom: 2px solid #57005f;
      display: flex;
      align-items: center;
    }

    /* Heading Icons */
    .javit-footer-icon {
      width: 20px;
      height: 20px;
      margin-right: 8px;
      fill: #ffffff;
    }

    /* Links List */
    .javit-footer-list {
      list-style: none;
      padding-left: 0;
      margin: 0;
    }

    .javit-footer-list li {
      margin-bottom: 0px;
    }

    .javit-footer-list a {
      text-decoration: none;
      color: #f0f0f0;
      transition: color 0.3s;
      display: block;
      padding: 0.3rem 0;
    }

    .javit-footer-list a:hover {
      color: #ffffff;
    }

    /* Indexing Logos */
    .javit-footer-indexing {
      text-align: center;
      margin-bottom: 1rem;
    }

    .javit-footer-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-bottom: 1rem;
    }

    .javit-footer-logo {
      height: 40px;
      width: auto;
    }

    /* Stats Section */
    .javit-footer-stats {
      text-align: center;
      margin-bottom: 1rem;
    }

    .javit-footer-stats-link {
      text-decoration: none;
      color: #f0f0f0;
      transition: color 0.3s;
    }

    .javit-footer-stats-link:hover {
      color: #ffffff;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .javit-footer-col {
        width: 50% !important;
        margin-bottom: 1.5rem;
      }
    }

    @media (max-width: 576px) {
      .javit-footer-col {
        width: 100% !important;
      }
    }
    
    
/*CSS untuk rap Mega Menu */

    /* Reset */
    .rap-menu, .rap-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    /* Container utama */
    .rap-nav {
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        max-width: 300px;
        width: 100%;
        font-family: 'Segoe UI', system-ui, sans-serif;
    }

    /* Top level menu */
    .rap-menu > li {
        position: relative;
        border-bottom: 1px solid #e9ecef;
    }

    .rap-menu > li:last-child {
        border-bottom: none;
    }

    .rap-menu > li > a {
        display: block;
        background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
        color: #fff;
        text-decoration: none;
        padding: 1rem 1.2rem;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .rap-menu > li > a:hover {
        background: rgba(255,255,255,0.1);
        color: #ff5300;
    }

    /* Dropdown */
    .rap-submenu {
        display: none;
        background: #fff;
        border-left: 3px solid #ff5300;
    }

    .rap-submenu li a {
        display: block;
        padding: 0.8rem 1.5rem;
        color: #444;
        text-decoration: none;
        font-size: 0.95rem;
        transition: all 0.3s ease;
    }

    .rap-submenu li a:hover {
        background: #f8f9fa;
        color: #a8366f;
        padding-left: 2rem;
    }

    /* Hover event */
    .rap-menu li:hover > .rap-submenu {
        display: block;
    }


/* ================================================================= */
/* 1. Styling Container (.jv-judul): Border Gradasi & Reset */
/* ================================================================= */
.jv-judul {
    /* --- RESET GAYA LAMA --- */
    background-color: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    max-width: 100% !important;
    text-align: left !important;
    
    /* PERBAIKAN MARGIN */
    margin: 400px 0 25px 0; 
    
    /* --- GAYA BARU: Border Kiri Gradasi --- */
    padding: 15px 0 15px 20px; 
    position: relative;
    display: block;

    /* Border Kiri */
    border-left: 5px solid transparent; 
    
    /* GRADASI WARNA UNGU → JINGGA */
    border-image: linear-gradient(
        to bottom, 
        #6a11cb,   /* Ungu */
        #a4508b,   /* Ungu Pink */
        #f7971e,   /* Orange Keemasan */
        #ff7e5f    /* Jingga Hangat */
    ) 1; 
}

/* Hapus semua efek hover container */
.jv-judul:hover {
    background-color: transparent !important;
    transition: none;
}

/* ================================================================= */
/* 2. Styling Teks Judul (.jv-judul .jv-jdlh1): Tipografi Bersih */
/* ================================================================= */
.jv-judul .jv-jdlh1 {
    /* --- RESET GAYA LAMA --- */
    color: #333333 !important;
    text-shadow: none !important;
    text-align: left !important;
    margin: 0;
    display: block;
    
    /* --- TIPOGRAFI MODERN --- */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 2em; 
    font-weight: 700; 
    letter-spacing: -0.5px;
    text-transform: capitalize; 
    line-height: 1.2;
    position: static; 
}

/* ================================================================= */
/* 3. Reset Pseudo-element (Garis Bawah Aksen) */
/* ================================================================= */
.jv-judul .jv-jdlh1::after {
    content: none;
}

/* ================================================================= */
/* 4. Styling H1 Halaman (Page Title & Variasi) */
/* ================================================================= */
.page_about h1, 
.page_submissions h1, 
.page_issue_archive h1, 
.page_issue h1,
.page_editorial_team h1,
h1.page_title {
    background-color: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    max-width: 100% !important;
    text-align: left !important;
    padding: 10px 0 10px 20px;
    margin: 30px 0 25px 0;
    
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 2em;
    font-weight: 700;
    color: #333333;
    letter-spacing: -0.5px;
    text-transform: none;
    text-shadow: none;
    line-height: 1.2;
    
    position: relative;
    display: block;

    /* Border Kiri */
    border-left: 5px solid transparent; 
    border-image: linear-gradient(
        to bottom, 
        #6a11cb,   /* Ungu */
        #a4508b,   /* Ungu Pink */
        #f7971e,   /* Orange Keemasan */
        #ff7e5f    /* Jingga Hangat */
    ) 1; 
}

/* ================================================================= */
/* 5. Reset Pseudo-element & Hover */
/* ================================================================= */
.page_about h1::after, 
.page_submissions h1::after, 
.page_issue_archive h1::after, 
.page_issue h1::after,
.page_editorial_team h1::after,
h1.page_title::after {
    content: none; 
}

.page_about h1:hover, 
.page_submissions h1:hover, 
.page_issue_archive h1:hover, 
.page_issue h1:hover,
.page_editorial_team h1:hover,
h1.page_title:hover {
    background-color: transparent !important;
    transition: none;
}
