/* =========================================================
   BREADCRUMB
========================================================= */
/* ======== BREADCRUMB TRANSPARAN + TEKS BIRU ======== */
.breadcrumb-container {
    background: transparent !important;   /* Transparan */
    border-bottom: none;                  /* Tidak ada garis */
}

.breadcrumb {
    background: transparent !important;
    margin-bottom: 0;
    padding: 8px 0;
}

.breadcrumb .breadcrumb-item,
.breadcrumb .breadcrumb-item a {
    color: #0056b3 !important;            /* Biru */
    font-weight: bold;                    /* Tebal */
    text-decoration: none;                /* Tanpa garis bawah */
}

.breadcrumb .breadcrumb-item::before {
    color: #0056b3 !important;            /* Warna pemisah › */
    font-weight: bold;
}





/* =========================================================
   NAVBAR (Judul Tengah + Hover)
========================================================= */
.navbar-title {
    color: #ffffff;
    font-weight: bold;
    font-size: 26px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    width: 100%;
}

/* Hover warna kuning menyala */
.navbar-title:hover {
    color: #ffee00 !important;
    text-decoration: none !important;
    transition: 0.2s ease-in-out;
}


/* =========================================================
   SLIDER GOOGLE STYLE
========================================================= */
/* ============================== */
/* SLIDER BLOG — DESKTOP VERSION */
/* ============================== */

.google-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}
.google-slider::-webkit-scrollbar { display: none; }

.slide-item {
    min-width: 300px;
    max-width: 300px;
    cursor: pointer;
    transition: 0.25s ease;
}
.slide-item:hover { transform: translateY(-6px); }

.slide-img {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    object-fit: cover;
}

.slide-title {
    font-size: 18px;
    font-weight: 600;
    margin-top: 8px;
}

/* ============================ */
/* SLIDER MOBILE FRIENDLY FIXES */
/* ============================ */
@media (max-width: 768px) {

    /* jarak antar item lebih kecil */
    .google-slider {
        gap: 12px;
        padding: 5px;
    }

    /* ukuran card mengecil mengikuti layar hp */
    .slide-item {
        min-width: 70%;              /* otomatis mengikuti layar */
        max-width: 70%;
    }

    /* gambar lebih pendek (biar tidak memakan layar) */
    .slide-img {
        height: 140px;
        border-radius: 10px;
    }

    /* judul lebih kecil */
    .slide-title {
        font-size: 15px;
        font-weight: bold;
        line-height: 1.3;
        padding-right: 5px;
    }

    /* tombol panah disembunyikan karena HP cukup swipe */
    .nav-btn {
        display: none !important;
    }
}

/* ============================ */
/* SUPER SMALL DEVICES (≤ 420px) */
/* ============================ */
@media (max-width: 420px) {

    .slide-item {
        min-width: 82%;
        max-width: 82%;
    }

    .slide-img {
        height: 130px;
    }

    .slide-title {
        font-size: 14px;
        line-height: 1.25;
    }
}










/* Efek hover gambar blog: naik halus */
.slide-item {
    transition: transform 0.25s ease-in-out !important;
}

.slide-item:hover {
    transform: translateY(-10px) !important;
}

.slide-img {
    transition: transform 0.25s ease-in-out !important;
}

.slide-item:hover .slide-img {
    transform: scale(1.05) !important;
    opacity: 0.95 !important;
}

/* Efek hover pada blok slide */
.slide-item {
    transition: transform 0.25s ease-in-out;
}

.slide-item:hover {
    transform: translateY(-10px);
}

/* Efek hover pada gambar dalam slide */
.slide-img {
    transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out;
}

.slide-item:hover .slide-img {
    transform: scale(1.05);
    opacity: 0.95;
}


/* =========================================================
   TOMBOL PANAH (SLIDER)
========================================================= */
/* === TOMBOL PANAH SLIDER – SELALU MUNCUL === */
.nav-btn {
    display: flex !important;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    background: #ffffff;
    border: none;
    font-size: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10;
}

/* Posisi tombol kiri & kanan */
.left-btn { left: -15px; }
.right-btn { right: -15px; }

/* === MOBILE ADJUSTMENT (panah lebih besar, mudah diklik) === */
@media (max-width: 768px) {
    .nav-btn {
        width: 50px;
        height: 50px;
        font-size: 32px;
    }
}

