/* =====================================================
   JIHAD HEADER & PROFILE
   ===================================================== */

.pkp_site_nav_menu,
.pkp_site_nav_toggle {
    background: #0F3B36 !important;
}

/* Tombol profile */
.pkp_navigation_user .profile {
    background: #0F3B36 !important;
    border-radius: 10px !important;
    padding: 0 15px !important;
    transition: all .3s ease;
    margin-top: 6px !important;
}

.pkp_navigation_user .profile:hover {
    background: #0F3B36 !important;
}

.pkp_site_name a {
    color: #ffffff00 !important;
}

/* Dropdown */

.pkp_navigation_user .dropdown-menu,
.pkp_navigation_user ul[role="menu"] {
    border: none !important;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.18) !important;
    padding: 8px !important;
    min-width: 220px;
    background: #fff !important;
}

/* Item menu */

.pkp_navigation_user .dropdown-menu a,
.pkp_navigation_user ul[role="menu"] a {
    color: #333 !important;
    padding: 12px 16px !important;
    border-radius: 10px;
    transition: all .25s ease;
    font-weight: 500;
}

/* Hover item */

.pkp_navigation_user .dropdown-menu a:hover,
.pkp_navigation_user ul[role="menu"] a:hover {
    background: #0F3B36 !important;
    color: #70bbfd !important;
    padding-left: 20px !important;
}

/* Badge angka */

.pkp_navigation_user .task_count,
.pkp_navigation_user .count {
    background: #0F3B36 !important;
    color: #fff !important;
    border-radius: 999px !important;
    min-width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
}

/* Username */

.pkp_navigation_user .profile > a {
    font-weight: 600;
    color: #fff !important;
}

/* Animasi dropdown */

.pkp_navigation_user .dropdown-menu {
    animation: profileFade .2s ease;
}

/* Article */
.obj_article_summary{
    border-left: 5px solid #0F3B36;
    padding: 5px 12px;
    border-radius: 5px;
    background: #e5fffc;
    transition: .2s ease;
}

.obj_article_summary:hover{
    background: #b8fff7;
}

/* Footer */
.pkp_brand_footer {
    display: none !important;
}

.pkp_structure_footer_wrapper {
    background: #0F3B36;
}

.footer {
    background: #0F3B36;
    color: #fff;
    padding: 20px 5px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer-logo {
    flex: 0 0 180px;
    text-align: center;
}

.footer-logo img {
    max-width: 120px;
    height: auto;
}

.footer-content {
    flex: 1;
}

.footer-content h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 18px;
    margin-bottom: 30px;
}

.footer-content p {
    margin: 8px 0;
    color: #f5f5f5;
    line-height: 1;
    font-size: 10px;
}

.footer-content a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
}

.footer-content a:hover {
    color: #c9fff9;
}

.footer-copy {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,.25);
    font-size: 13px;
}

/* Mobile */

@media (max-width: 768px) {

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo {
        flex: none;
    }

}

@keyframes profileFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}