/* ===================================
   MODERN OJS MENU FINAL
=================================== */

#modern-menu{
    background:#ffffff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 4px 18px rgba(0,0,0,0.08);
    border:1px solid #e5e7eb;
    font-family:'Segoe UI',sans-serif;
}

/* TITLE */

#modern-menu .menu-title{
    background:linear-gradient(135deg,#123142,#1d5c7c);
    color:#ffffff;
    text-align:center;
    padding:15px;
    font-size:18px;
    font-weight:700;
    letter-spacing:1px;
}

/* LIST */

#modern-menu ul{
    list-style:none;
    margin:0;
    padding:8px;
}

/* ITEM */

#modern-menu ul li{
    margin-bottom:6px;
}

#modern-menu ul li:last-child{
    margin-bottom:0;
}

/* LINK */

#modern-menu ul li a{
    display:block;
    padding:12px 16px;
    border-radius:10px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    color:#183153;
    background:#f4f6f8;
    transition:all .3s ease;
    border:1px solid transparent;
    line-height:1.5;
}

/* HOVER */

#modern-menu ul li a:hover{
    background:#eef6fb;
    color:#0b4f75;
    transform:translateX(4px);
    border-color:#dbeafe;
}

/* DOWNLOAD */

#modern-menu .download-menu a{
    background:linear-gradient(135deg,#0f9b8e,#14b8a6);
    color:#ffffff;
}

#modern-menu .download-menu a:hover{
    background:linear-gradient(135deg,#0f766e,#0d9488);
}

/* MOBILE */

@media(max-width:768px){

    #modern-menu .menu-title{
        font-size:16px;
        padding:12px;
    }

    #modern-menu ul li a{
        padding:11px 14px;
        font-size:13px;
    }

}

/* =========================================
   LUMBUNG JOURNAL MODERN CONTENT
========================================= */

#lumbung-about{
    font-family:'Segoe UI',sans-serif;
    color:#243746;
}

/* HEADER */

#lumbung-about .lumbung-header{
    display:flex;
    gap:25px;
    background:#ffffff;
    padding:25px;
    border-radius:18px;
    box-shadow:0 6px 20px rgba(0,0,0,0.08);
    margin-bottom:25px;
    align-items:flex-start;
}

/* COVER */

#lumbung-about .lumbung-header img{
    width:220px;
    border-radius:14px;
    box-shadow:0 4px 15px rgba(0,0,0,0.12);
}

/* TEXT */

#lumbung-about .header-content{
    flex:1;
}

#lumbung-about .header-content h2{
    margin-top:0;
    color:#123142;
    font-size:28px;
    line-height:1.4;
    margin-bottom:18px;
}

#lumbung-about .header-content p{
    font-size:15px;
    line-height:1.8;
    color:#4b5563;
    margin-bottom:15px;
    text-align:justify;
}

/* INFO GRID */

#lumbung-about .info-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-bottom:25px;
}

/* CARD */

#lumbung-about .info-card{
    background:#ffffff;
    border-radius:16px;
    padding:20px;
    text-align:center;
    box-shadow:0 4px 15px rgba(0,0,0,0.06);
    transition:0.3s;
}

#lumbung-about .info-card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,0.10);
}

#lumbung-about .info-card h3{
    margin-top:0;
    color:#123142;
    margin-bottom:12px;
}

#lumbung-about .info-card a{
    display:block;
    margin-bottom:15px;
    color:#0b6aa2;
    text-decoration:none;
    font-weight:600;
}

#lumbung-about .info-card img{
    max-width:100%;
    border-radius:10px;
}

/* SECTION */

#lumbung-about .indexing-section,
#lumbung-about .listed-section{
    background:#ffffff;
    padding:25px;
    border-radius:18px;
    box-shadow:0 4px 15px rgba(0,0,0,0.06);
    margin-bottom:25px;
}

/* TITLE */

#lumbung-about .indexing-section h3,
#lumbung-about .listed-section h3{
    margin-top:0;
    color:#123142;
    margin-bottom:20px;
    font-size:22px;
    text-align:center;
}

/* GRID LOGO */

#lumbung-about .indexing-grid,
#lumbung-about .listed-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
}

/* LOGO */

#lumbung-about .indexing-grid img,
#lumbung-about .listed-grid img{
    max-height:70px;
    background:#ffffff;
    padding:10px;
    border-radius:12px;
    border:1px solid #eef2f5;
    transition:0.3s;
    box-shadow:0 3px 10px rgba(0,0,0,0.05);
}

#lumbung-about .indexing-grid img:hover,
#lumbung-about .listed-grid img:hover{
    transform:translateY(-4px) scale(1.03);
    box-shadow:0 8px 20px rgba(0,0,0,0.10);
}

/* MOBILE */

@media(max-width:768px){

    #lumbung-about .lumbung-header{
        flex-direction:column;
        text-align:center;
    }

    #lumbung-about .lumbung-header img{
        width:180px;
        margin:auto;
    }

    #lumbung-about .header-content h2{
        font-size:22px;
    }

    #lumbung-about .header-content p{
        font-size:14px;
        text-align:left;
    }

}

