/* ===== FADE SMOOTH ===== */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* ===== ZOOM HALUS ===== */
.slideshow-img {
    height: 420px;
    object-fit: cover;
    transform: scale(1);
    transition: transform 6s ease;
}

.carousel-item.active .slideshow-img {
    transform: scale(1.12);
}

/* ===== OVERLAY GELAP ===== */
.slideshow-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* ===== CAPTION ===== */
.carousel-caption {
    z-index: 2;
}

.slideshow-caption {
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
    animation: captionFadeUp 1s ease forwards;
    animation-delay: .6s;
}

/* animasi caption */
@keyframes captionFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-control-prev,
.carousel-control-next {
    display: none;
}

.slideshow-img {
    aspect-ratio: 16 / 9;
}

/* BUPATI DAN WAKIL BUPATI */
/* ===== CONTAINER ===== */
/* ===== CARD UTAMA ===== */
.leader-card {
    background: linear-gradient(#f2f2f2, #e8e8e8);
    border-radius: 26px;
    padding: 30px 20px;
    max-width: 100%;
}

/* ===== BOX PER ORANG ===== */
.leader-box {
    background-color: transparent !important;
}

/* ===== FOTO ===== */
.leader-img {
    max-height: 260px;
    width: auto;
    object-fit: cover;      /* ✅ WAJIB */
    background: transparent;
    margin-bottom: 14px;
}

/* ===== JABATAN ===== */
.leader-role {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
}

/* ===== GARIS EMAS ===== */
.leader-divider {
    width: 70px;
    height: 3px;
    background: #c9a227;
    margin: 0 auto 8px auto;
}

/* ===== NAMA ===== */
.leader-name {
    font-size: 14px;
    color: #333;
    letter-spacing: .4px;
}

/* ===== PEMISAH TENGAH ===== */
.leader-box:first-child {
    border-right: 1px solid rgba(0,0,0,.08);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .leader-card {
        padding: 20px 10px;
    }

    .leader-img {
        max-height: 200px;
    }

    .leader-role {
        font-size: 18px;
    }
}


/* DEPAN */
/* ===== HEADER KATEGORI (PEMERINTAH) ===== */
.layout-top-nav .card-header.header-kategori {
    background: linear-gradient(135deg, #4b2ea5, #6f42c1);
    color: #ffffff;
    border-bottom: 3px solid #f1c40f;
    padding: 12px 16px;
}

/* icon */
.layout-top-nav .card-header.header-kategori i {
    font-size: 18px;
    color: #f9e79f;
}

/* judul */
.layout-top-nav .card-header.header-kategori .card-title {
    font-weight: 600;
    letter-spacing: .5px;
    margin: 0;
}