/* =====================================
   IJBLE – LUXURY BURGUNDY EDITION
   Deep Academic • Elegant • Premium
====================================== */

/* ===== COLOR SYSTEM ===== */
:root {
    --burgundy-dark: #4b0f1a;
    --burgundy: #6e0f1f;
    --burgundy-soft: #8c1d2e;
    --gold: #c6a75e;
    --gold-light: #e8d7a5;
    --cream-bg: #f9f7f4;
    --text-dark: #1f1f1f;
}

/* ===== GLOBAL ===== */
body {
    background: var(--cream-bg);
    font-family: "Playfair Display", "Georgia", serif;
    color: var(--text-dark);
}

/* ===== HERO SECTION ===== */
.page_issue_archive {
    padding: 100px 40px;
}

.page_issue_archive h1 {
    font-size: 54px;
    font-weight: 700;
    text-align: center;
    color: var(--burgundy-dark);
    letter-spacing: -0.5px;
    position: relative;
}

.page_issue_archive h1::before {
    content: "International Journal of Business, Law, and Education";
    display: block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.page_issue_archive h1::after {
    content: "";
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--burgundy-soft));
    display: block;
    margin: 30px auto 0;
    border-radius: 2px;
}

/* ===== GRID ===== */
.issues_archive {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 60px;
    margin-top: 80px;
}

/* ===== ISSUE CARD ===== */
.obj_issue_summary {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.45s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 25px 60px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
}

.obj_issue_summary:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 80px rgba(75,15,26,0.25);
}

/* ===== COVER ===== */
.obj_issue_summary .cover {
    background: #fafafa;
    aspect-ratio: 3 / 4;
    padding: 25px;
}

.obj_issue_summary .cover img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.obj_issue_summary:hover .cover img {
    transform: scale(1.05);
}

/* ===== TITLE ===== */
.obj_issue_summary h2 {
    padding: 25px 30px 10px;
    font-size: 20px;
    font-weight: 700;
}

.obj_issue_summary .title {
    color: var(--burgundy-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.obj_issue_summary .title:hover {
    color: var(--burgundy-soft);
}

/* ===== SERIES BADGE ===== */
.obj_issue_summary .series {
    display: inline-block;
    margin-top: 8px;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 30px;
    background: rgba(198,167,94,0.12);
    color: var(--burgundy-dark);
    font-weight: 600;
    letter-spacing: .5px;
}

/* ===== DESCRIPTION ===== */
.obj_issue_summary .description {
    padding: 0 30px 30px;
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

.obj_issue_summary .description a {
    color: var(--burgundy);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--gold-light);
}

.obj_issue_summary .description a:hover {
    color: var(--burgundy-soft);
}

/* ===== FEATURED ISSUE ===== */
.issues_archive li:first-child .obj_issue_summary {
    background: linear-gradient(180deg, #ffffff, #fbf3f3);
    border: 1px solid rgba(110,15,31,0.2);
}

.issues_archive li:first-child .obj_issue_summary::before {
    content: "Latest Issue";
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--burgundy-dark);
    color: white;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ===== CALL FOR PAPERS HEADER ===== */
.call-paper-header {
    background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy));
    border-radius: 28px;
    box-shadow: 0 35px 80px rgba(75,15,26,0.3);
    color: white !important;
}

.call-paper-header h1 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
}

.call-paper-header h2 {
    color: var(--gold-light) !important;
}

/* ===== MAIN CONTENT BOX ===== */
.page_index_journal section {
    background: white;
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.05);
    padding: 3.5rem !important;
    margin-top: -60px;
}

/* ===== REVIEWER BOX ===== */
.page_index_journal section div[style*="background"] {
    background: linear-gradient(135deg, #fdf6f0, #f6ebe6) !important;
    border-radius: 24px !important;
    box-shadow: 0 20px 50px rgba(110,15,31,0.1);
}

/* ===== BUTTON ===== */
.page_index_journal a[target="_blank"] {
    background: linear-gradient(90deg, var(--burgundy), var(--burgundy-soft)) !important;
    border-radius: 50px !important;
    padding: 14px 32px !important;
    font-weight: 600;
    letter-spacing: .5px;
    transition: all 0.35s ease;
}

.page_index_journal a[target="_blank"]:hover {
    background: linear-gradient(90deg, var(--burgundy-soft), var(--burgundy-dark)) !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(75,15,26,0.4);
}

/* ===== SIDEBAR ===== */
.block_announcement_feed {
    background: white;
    border-radius: 22px;
    padding: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.block_announcement_feed .title {
    color: var(--burgundy-dark);
    border-bottom: 2px solid var(--gold-light);
    padding-bottom: 10px;
}
/* ===== CALL FOR PAPERS STRUCTURE ===== */

.call-paper-header {
    background: linear-gradient(135deg, #4b0f1a, #6e0f1f);
    padding: 4rem 2rem;
    border-radius: 32px;
    text-align: center;
    color: white;
    box-shadow: 0 40px 90px rgba(75,15,26,0.35);
    position: relative;
    overflow: hidden;
}

.call-paper-header::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.call-paper-inner h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.call-paper-inner h2 {
    margin-top: 10px;
    font-size: 1.3rem;
    color: #e8d7a5;
    font-weight: 500;
}

.edition {
    margin-top: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

/* ===== MAIN CONTENT ===== */

.call-paper-content {
    max-width: 1000px;
    margin: -70px auto 80px;
    background: white;
    padding: 4rem;
    border-radius: 32px;
    box-shadow: 0 35px 80px rgba(0,0,0,0.06);
    line-height: 1.9;
    font-size: 1.05rem;
}

.call-paper-content h3 {
    color: #4b0f1a;
    margin-top: 30px;
    font-weight: 700;
    border-left: 4px solid #c6a75e;
    padding-left: 12px;
}

.scope-list {
    margin-top: 15px;
    padding-left: 20px;
}

.scope-list li {
    margin-bottom: 8px;
}

/* ===== META INFO ===== */

.meta-info {
    background: #faf6f3;
    padding: 1.5rem 2rem;
    border-radius: 18px;
    border: 1px solid rgba(110,15,31,0.1);
    margin-bottom: 25px;
}

/* ===== REVIEWER BOX ===== */

.reviewer-box {
    margin-top: 50px;
    padding: 3rem;
    background: linear-gradient(135deg, #fdf6f0, #f6ebe6);
    border-radius: 28px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(110,15,31,0.12);
}

.reviewer-box h2 {
    color: #4b0f1a;
    margin-bottom: 15px;
}

/* ===== LUXURY BUTTON ===== */

.luxury-button {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 36px;
    border-radius: 50px;
    background: linear-gradient(90deg, #6e0f1f, #8c1d2e);
    color: white;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.35s ease;
}

.luxury-button:hover {
    background: linear-gradient(90deg, #8c1d2e, #4b0f1a);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(75,15,26,0.4);
}
/* =====================================
   LUXURY SIDEBAR – TEGAS EDITION
====================================== */

.luxury-sidemenu-tegas {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* BLOCK STYLE */
.luxury-sidemenu-tegas .side-block {
    background: #ffffff;
    border: 1px solid rgba(75,15,26,0.15);
    padding: 22px 20px;
    transition: all 0.3s ease;
}

.luxury-sidemenu-tegas .side-block:hover {
    border-color: #6e0f1f;
    box-shadow: 0 8px 25px rgba(75,15,26,0.15);
}

/* SECTION TITLE */
.block-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #4b0f1a;
    padding-bottom: 8px;
    border-bottom: 2px solid #c6a75e;
}

/* MENU LIST */
.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-list li {
    margin-bottom: 10px;
}

.menu-list li a {
    text-decoration: none;
    font-size: 14px;
    color: #2b2b2b;
    font-weight: 500;
    transition: all 0.25s ease;
}

.menu-list li a:hover {
    color: #6e0f1f;
    padding-left: 6px;
}

/* LOGO BLOCK */
.logo-block {
    text-align: center;
    background: #f9f5f3;
}

.logo-block img {
    max-width: 110px;
}

/* BADGES */
.badge-block {
    text-align: center;
}

.badge-block img {
    max-width: 100%;
    margin-bottom: 15px;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.badge-block img:hover {
    filter: grayscale(0%);
    transform: scale(1.04);
}
