/* ============ ini style pada deskripsi tentang ======== */
.content-block h4,
.content-block ol {
    font-size: 18px;
    color: #3f8f7a;
}

/* samakan posisi dengan judul */
.content-block ol {
    margin-left: 0;
    padding-left: 20px;
    /* biar nomor tetap rapi */
    margin-top: 8px;
    margin-bottom: 16px;
}

/* isi list tetap normal (opsional) */
.content-block ol li {
    color: #000000;
    font-size: 16px;
    line-height: 1.6;
}

/* ============ ini style pada deskripsi tentang ======== */

.breadcrumb-bar {
    width: 100%;
    background-color: #3f8f7a;
    height: 70px;
    /* tinggi bar seperti gambar */
    display: flex;
    align-items: center;
}

/* Ini kunci jarak kiri */
.breadcrumb-inner {
    padding-left: 80px;
    /* atur ini kalau mau persis */
    font-size: 13px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.breadcrumb-inner a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
}

.breadcrumb-inner a:hover {
    text-decoration: underline;
}

.breadcrumb-inner .separator {
    margin: 0 12px;
    color: #ffffff;
}

.breadcrumb-inner .active {
    color: #ffffff;
    font-weight: 500;
}

/* =================== tentang css style  ====================== */
/* BACKGROUND HALAMAN */
.page-section {
    background: #efefef;
    padding: 40px 0;
}

/* WRAPPER GRID */
.page-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2.3fr 1fr;
    gap: 30px;
}

.sidebar-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Judul */
.sidebar-title {
    font-weight: 700;
    margin-bottom: 6px;
}

.sidebar-title span {
    color: #3f8f7a;
}

.sidebar-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 18px;
}

/* CARD KORPRI */
.org-card {
    display: block;
    border-radius: 18px;
    overflow: hidden;
    background: #5b451b;
    /* fallback */
}

/* GAMBAR FULL */
.org-card img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* CARD UMUM */
.card {
    background: #ffffff;
    border: 1px solid #dcdcdc;
    border-radius: 18px;
    padding: 30px;
}

.center {
    text-align: center;
}

/* CARD KIRI */
.card-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.card-title span {
    color: #3f8f7a;
}

.card hr {
    border: none;
    border-top: 1px solid #dcdcdc;
    margin-bottom: 25px;
}

.content-block {
    margin-bottom: 30px;
}

.content-block h3 {
    color: #3f8f7a;
    margin-bottom: 10px;
}

/* CARD KANAN */
.sidebar-title {
    font-weight: 700;
    margin-bottom: 20px;
}

.sidebar-title span {
    color: #3f8f7a;
}

/* GRID APLIKASI */
.app-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* SEMUA ITEM */
.app-item {
    border-radius: 14px;
    overflow: hidden;
}

.app-item img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* TTE FULL WIDTH */
.app-full {
    grid-column: 1 / -1;
    /* ambil 2 kolom */
}


/* SHARE */
.share-box {
    margin-top: 32px;
}

.share-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.share-header span {
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #2f8f77;
    font-size: 16px;
}

.share-header i {
    color: #2f8f77;
    font-size: 16px;
}

.share-icons {
    display: flex;
    gap: 10px;
}

.share-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.share-icons a:hover {
    transform: translateY(-2px);
    background: #222;
}

/* struktur organisasi  */
.document-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    align-items: center;
    margin-bottom: 24px;
}

.doc-image img {
    width: 180px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.doc-content {
    flex: 1;
}

.doc-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 18px;
    color: #000;
}

.doc-actions {
    display: flex;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn.baca {
    background: #3f8f7a;
    color: #fff;
}

.btn.baca:hover {
    background: #327563;
}

.btn.unduh {
    background: #fff3cf;
    color: #3f8f7a;
}

.btn.unduh:hover {
    background: #ffe6a3;
}

/* ================= EMPTY STATE ================= */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.empty-illustration {
    max-width: 300px;
    width: 100%;
    margin-bottom: 40px;
}

.empty-state h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

.empty-state h3 span {
    color: #e74c3c;
}

.btn-back {
    background: #3c8f7b;
    color: #fff;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-back::after {
    content: "↩";
    font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .empty-illustration {
        max-width: 300px;
    }

    .empty-state h3 {
        font-size: 18px;
    }
}



/* disabilitas css */
/* ========== ACCESSIBILITY PANEL (SAFE) ========== */
/* ====== PANEL DENGAN GRADIENT ====== */


#accessibility-panel {
    position: fixed;
    top: 0;
    left: -360px;
    width: 360px;
    height: 100vh;
    background: linear-gradient(160deg, #1a1f2bf2, #2c2f45f2, #1d1f33c9);
    backdrop-filter: blur(4px);
    color: #eee;
    z-index: 999999;
    transition: 0.35s ease;
    padding: 25px 20px;
    overflow-y: auto;
    box-shadow: 4px 0 25px rgba(0, 0, 0, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

#accessibility-panel.open {
    left: 0;
}

/* ====== TOMBOL CLOSE ====== */
#acc-close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 18px;
    cursor: pointer;
    background: linear-gradient(135deg, #dd9f16, #cc0000);
    color: white;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(255, 0, 110, 0.35);
    transition: 0.25s;
}

#acc-close-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 14px rgba(255, 0, 110, 0.45);
}

/* ====== JUDUL ====== */
.acc-title {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 22px;
    margin-top: 5px;
    text-transform: uppercase;
    color: #fff;
}

/* ====== ITEM ====== */
.acc-container {
    padding: 0;
}

.acc-switch {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.acc-switch label {
    font-size: 16px;
    font-weight: 600;
}

/* ====== TOGGLE ====== */
.acc-toggle {
    width: 52px;
    height: 26px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    position: relative;
    cursor: pointer;
    transition: 0.25s;
    backdrop-filter: blur(2px);
}

.acc-toggle::after {
    content: "";
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: 0.25s;
}

.acc-toggle.on {
    background: linear-gradient(135deg, #ff4f8a, #ff006e);
}

.acc-toggle.on::after {
    left: 28px;
}

/* ====== TEXT SCALE ====== */
#text-scale-display {
    text-align: center;
    font-weight: bold;
    margin-top: 10px;
    color: #fff;
    font-size: 16px;
}

.acc-switch .acc-icon {
    font-size: 18px;
    margin-right: 12px;
    opacity: 0.9;
    display: inline-flex;
    width: 22px;
}

.acc-btn-scale {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: none;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    margin: 5px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transition: 0.25s;
}

.acc-btn-scale:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.08);
}

/* ====== FLOATING BUTTON ====== */
/* Container tombol */
#accessibility-btn {
    position: fixed;
    bottom: 32px;
    left: 32px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    z-index: 99999;
    transition: 0.3s ease;
}

.acc-icon {
    width: 60px;
    /* Sesuaikan ukuran logo di dalam lingkaran */
    height: 60px;

}

/* ====== MODE EFEK ====== */
html.monokrom {
    filter: grayscale(100%);
}

html.high-contrast {
    filter: contrast(180%);
}

html.bright-bg {
    background: #fff !important;
    color: #000 !important;
}

html.negative {
    filter: invert(100%);
}

html.dark-mode .header-top {
    background: #111 !important;
    border-bottom: 1px solid #333;
}

html.dark-mode i,
html.dark-mode .icon-search,
html.dark-mode .icon-mic {
    color: #fff !important;
}

html.dark-mode .icon-lang {
    filter: brightness(0) invert(1);
}

html.dark-mode img.icon-lang {
    filter: brightness(0) invert(1);
}

html.dark-mode svg {
    fill: #fff;
}

/* FontAwesome */
html.dark-mode i {
    color: #fff !important;
}

/* SVG / PNG icon */
html.dark-mode img.icon-lang {
    filter: brightness(0) invert(1);
}
html.dark-mode h1,
html.dark-mode h2,
html.dark-mode h3,
html.dark-mode h4,
html.dark-mode h5,
html.dark-mode h6 {
    color: #fff !important;
}




/* Tombol Aksesibilitas Modern */
.accessibility-btn-modern {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #004aad, #6e8cff);
    padding: 12px 22px;
    border-radius: 50px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 999999;
    transition: 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Hover */
.accessibility-btn-modern:hover {
    transform: scale(1.07);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
}

/* Icon besar */
.accessibility-btn-modern .icon {
    font-size: 32px;
    /* ICON LEBIH BESAR */
    line-height: 1;
}

/* Teks kecil dan elegan */
.accessibility-btn-modern .text {
    font-size: 13px;
    letter-spacing: 0.2px;
    opacity: 0.9;
    font-weight: 400;
}

/* ====== FLOATING BUTTON (APPLE STYLE) ====== */
#accessibility-btn {
    position: fixed;
    bottom: 32px;
    left: 32px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    z-index: 999999;
    transition: 0.25s ease;
}


/* ====== HOVER EFFECT ====== */

#accessibility-btn:hover .acc-label {
    opacity: 1;
    transform: translateX(0);
}

#accessibility-btn:hover .acc-icon-circle {
    transform: translateY(-4px);

}

.dark-mode {
    background-color: #121212 !important;
    color: #e0e0e0 !important;
}

/* Teks di dalam div, section, article */
.dark-mode body,
.dark-mode div,
.dark-mode section,
.dark-mode article,
.dark-mode p,
.dark-mode span,
.dark-mode li,
.dark-mode a {
    color: #e0e0e0 !important;
    background-color: transparent !important;
}

/* Tombol */
.dark-mode button {
    background-color: #333 !important;
    color: #f0f0f0 !important;
    border: 1px solid #555 !important;
}

/* Input / textarea */
.dark-mode input,
.dark-mode textarea,
.dark-mode select {
    background-color: #222 !important;
    color: #f0f0f0 !important;
    border: 1px solid #555 !important;
}

/* Table */
.dark-mode table {
    background-color: #1e1e1e !important;
    color: #f0f0f0 !important;
}

.dark-mode th, .dark-mode td {
    border-color: #555 !important;
}

/* Links */
.dark-mode a {
    color: #4ea3f1 !important;
}



/* Tombol Reset */
.acc-btn-reset {
    padding: 10px 20px;
    background: #dd016f;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.acc-btn-reset:hover {
    background: #ff4fa0;
}