@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,400,0,0');

/* =========================
   ROOT VARIABLES
========================= */
.landing-page {
    --bg: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --border: #e5e7eb;
    --primary: #2563eb;
    --primary-dark: #1d4ed8;

    background: #fff;
    color: var(--text);
    font-family: Inter, sans-serif;
}

/* =========================
   RESET LANDING ONLY
========================= */
.landing-page *, .landing-header * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, Arial, sans-serif;
}

/* =========================
   CONTAINER
========================= */
.landing-page .container {
    max-width: 1020px; /* Disesuaikan ke 1020px agar sinkron dengan header */
    margin: auto;
    padding: 0 20px;
}

/* =========================
   ICON
========================= */
.landing-page .glyph {
    font-family: 'Material Symbols Outlined';
    font-size: 20px;
    display: inline-block;
    line-height: 1;
    font-weight: normal;
}

/* =========================
   HERO
========================= */
.landing-page .hero {
    padding: 60px 20px;
    text-align: center;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

.landing-page .hero h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.landing-page .hero p {
    color: #64748b;
    max-width: 700px;
    margin: auto;
}

/* Mengubah container hero agar kontennya condong ke kiri */
.landing-page .hero .container {
    text-align: left;
    max-width: 1020px;
    margin: 0 auto;
}

/* Struktur List Poin Baru */
.landing-page .hero-features {
    list-style: none;
    padding: 0;
    margin: 0 0 36px 0; /* Jarak bawah ke tombol */
    display: flex;
    flex-direction: column;
    gap: 12px; /* Jarak antar poin */
}

.landing-page .hero-features li {
    display: flex;
    align-items: center;
    gap: 12px; /* Jarak ikon ke teks */
}

/* Gaya Ikon Checklist/Poin */
.landing-page .hero-features .glyph {
    color: #2563eb; /* Warna biru utama */
    font-size: 20px;
    background: #eff6ff; /* Background bulat halus */
    padding: 6px;
    border-radius: 50%;
    line-height: 1;
    flex-shrink: 0;
}

/* Gaya Teks di Dalam Poin */
.landing-page .hero-features p {
    color: #475569;
    font-size: 15px;
    margin: 0;
    text-align: left;
}

.landing-page .hero-features p strong {
    color: #0f172a; /* Memberikan penekanan pada kata kunci */
    font-weight: 600;
}

/* =========================
   TOOLBAR
========================= */
.landing-page .data-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    padding: 15px 0;
    background: #fff;
}

/* =========================
   SEARCH
========================= */
.landing-page .input-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 220px;
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
}

.landing-page .input-icon input {
    border: none;
    outline: none;
    width: 100%;
    background: transparent;
}

/* =========================
   SEARCH PLACEHOLDER CUSTOM
========================= */
.landing-page .journalSearch::placeholder {
    font-weight: 600;
    line-height: 24.5px;
    color: #64748b;
    opacity: 1;
}

/* =========================
   GRID
========================= */
.landing-page .journal-grid {
    max-width: 1020px; /* Disamakan ke 1020px */
    width: 100% !important;
    margin: auto;
    padding: 30px 0px 60px; /* Diubah ke 0px agar sisi grid sejajar lurus */
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(480px, 1fr)) !important;
    gap: 20px;
}

/* =========================
   JOURNAL CARD CLEAN
========================= */
.landing-page .card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 22px;
    transition: .25s;
}

.landing-page .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .08);
}

.landing-page .card img {
    width: 100%;
    height: 100%;
    object-fit: fill;  
    border: none;
    background: #f8fafc;
    border-radius: 16px 0 0 16px; 
}

.landing-page .card h2 {
    font-size: 18px;
    line-height: 1.4;
    color: #0f172a;
    margin-bottom: 6px;
}

.landing-page .abbr {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
    letter-spacing: .5px;
}

.landing-page .card p {
    margin-top: 12px;
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =========================
   BADGE
========================= */
.landing-page .badge {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 999px;
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #bfdbfe;
}

.landing-page .badge.sinta {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

/* =========================
   BUTTON
========================= */
.landing-page .btn-group {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.landing-page .btn-group a {
    flex: 1;
    text-align: center;
    text-decoration: none;
    padding: 10px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}

.landing-page .btn-outline {
    border: 1px solid #2563eb;
    color: #2563eb;
    background: #fff;
}

.landing-page .btn-primary {
    background: #2563eb;
    color: #fff;
}

.landing-page .btn-primary:hover {
    background: #1d4ed8;
}

/* =========================
   FIXED: LANDING HEADER BARU (LEPAS DARI .landing-page)
========================= */
.landing-header {
    background: #ffffff !important;
    border-bottom: 1px solid #e5e7eb !important;
    padding: 0 !important;
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05) !important;
    width: 100% !important;
}

.landing-container {
    width: 1020px !important;
    max-width: 1020px !important;
    margin: 0 auto !important;
    /* Ditambahkan padding kanan 32px (lebih besar dari kiri) agar menu mundur */
    padding: 14px 32px 14px 20px !important; 
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    box-sizing: border-box !important;
}
/* BRAND SCROLL EFFECT */
.landing-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px); 
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.landing-header.scrolled .landing-brand {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.landing-brand img {
    width: 45px !important;
    height: 45px !important;
    object-fit: contain !important;
}

.landing-nav {
    display: flex;
    gap: 20px;
    margin-right: 12px;
}

.landing-nav a {
    text-decoration: none;
    color: #475569;
    font-weight: 600;
    font-size: 14px;
}

.landing-nav a:hover {
    color: #2563eb;
}

/* =========================
   HERO LOGO & ACTIONS
========================= */
.landing-page .hero-logo {
    margin-bottom: 20px;
}

.landing-page .hero-logo img {
    max-width: 220px;
    height: auto;
}

.landing-page .hero-actions {
    display: flex;
    justify-content: flex-start; /* Mengubah tata letak dari center menjadi rata kiri */
    align-items: center;
    gap: 16px;
    margin-top: 30px; /* Menjaga jarak aman dari paragraf di atasnya */
}

.landing-page .hero-button {
    padding: 12px 24px;
    border-radius: 10px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.landing-page .hero-button.outline {
    background: white;
    color: #2563eb;
    border: 1px solid #2563eb;
}

.journal-card.hidden {
    display: none;
}

/* =========================
   MOBILE RESPONSIVE CLEANUP
========================= */
@media(max-width:767px){
    .landing-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 14px 20px !important;
        flex-direction: column;
        gap: 15px;
    }

    .landing-nav {
        width: 100%;
        justify-content: center;
    }

    .landing-page .data-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .landing-page .journal-grid {
        grid-template-columns: 1fr !important;
    }
}

/* =========================
   CLEAN OJS SIDEBAR & ELEMENT
========================= */
.landing-body #sidebar,
.landing-body #leftSidebar,
.landing-body #rightSidebar,
.landing-body #navbar,
.landing-body #breadcrumb,
.landing-body #main > h2,
.landing-body #main > h3,
.landing-page #navbar,
.landing-page #breadcrumb {
    display: none !important;
}

.landing-body #main {
    width: 100% !important;
}

.landing-body #content {
    border-top: none !important;
}

/* =========================
   FOOTER
========================= */
.landing-page #footer {
    background: #fff;
    border-top: 1px solid #e5e7eb;
    margin-top: 40px;
    padding: 30px 20px;
}

.landing-page #footerContent {
    max-width: 1020px;
    margin: auto;
    color: #64748b;
    font-size: 14px;
}

.landing-page #footer a {
    color: #2563eb;
    text-decoration: none;
}

.landing-page #footer p {
    text-align: center;
    margin: 10px 0;
}

.landing-page #footer ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.sinta-paper-tag {
    position: absolute;

    top: 0;
    right: 24px;

    background: #fff7ed;
    color: #c2410c;

    padding: 7px 18px 8px;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: .4px;

    border: 1px solid #fdba74;
    border-top: none;

    border-radius: 0 0 5px 5px;

    box-shadow:
        0 3px 8px rgba(0,0,0,.10);

    z-index: 10;

    transform: rotate(1.5deg);
}


/* efek ujung kertas */
.sinta-indicator {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #15803d;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    z-index: 2;
}

.sinta-text {
    font-size: 22px;
    line-height: 1;
}

.sinta-level {
    font-size: 18px;
    align-self: flex-start;
    margin-top: 7px;
    font-weight: 700;
}

@media(max-width:767px){
    .landing-page #footer ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}