/* * ALHIJRAH CMS - UNIFIED ENTERPRISE STYLESHEET
 * Organized by: Core, Navigation, Hero, Components, and Mobile Logic
 */

/* --- 1. CORE & TYPOGRAPHY --- */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Source Sans Pro', -apple-system, sans-serif;
    color: #444;
    -webkit-font-smoothing: antialiased;
    padding-top: 80px; /* Space for fixed header */
}

h1, h2, h3, .hero--title {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.02em;
}

.section-secondary { background-color: #fcfaf7; }
.size12 { font-size: 12px; }
.size14 { font-size: 14px; line-height: 1.6; }
.pt80 { padding-top: 80px; }

/* --- 2. SMART NAVIGATION (SMART NAVBAR) --- */
#page-navigation {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background-color: #2b2b2b !important; /* Default background same as footer */
}

/* Scrolled State: Elegant Transition */
/* Update this in your existing 432-line CSS */
#page-navigation.scrolled {
    background-color: #2b2b2b !important; /* Changed from white to match original logic */
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    padding: 10px 0;
}

/* Ensure links stay white/gold on the dark background when scrolled */
#page-navigation.scrolled .nav-link {
    color: rgba(255,255,255,0.85) !important;
}

#page-navigation.scrolled .nav-link:hover,
#page-navigation.scrolled .nav-link.active {
    color: #a9854b !important;
}

/* Default Nav Link Styling */
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 15px !important;
    transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #a9854b !important;
}

/* --- 3. DROPDOWNS & MOBILE LOGIC --- */
.mobile, .logo-home { display: none !important; }




/* ======== DESKTOP VIEW ======== */
@media (min-width: 992px) {
    .desktop { display: block !important; }
    
    .navbar-nav .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease;
        background: rgba(43, 43, 43, 0.98) !important;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 15px 35px rgba(0,0,0,0.3);
        padding: 10px 0;
        border-radius: 8px;
    }
    
    /* Tombol Donasi Desktop */
    .btn-donasi-active {
        padding: 8px 25px !important;
    }
}

/* ======== MOBILE VIEW (PROFESSIONAL APP STYLE) ======== */
@media (max-width: 991px) {
    .desktop { display: none !important; }
    .mobile { display: block !important; }
    
    /* Wadah Menu Mobile: Hitam pekat agar kontras dengan layar */
    .navbar-collapse {
        background-color: #1a1a1a !important; 
        padding: 15px 20px;
        margin-top: 15px;
        border-radius: 12px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.6);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    /* Style Link Menu Utama di Mobile */
    .navbar-dark .navbar-nav .nav-link {
        color: rgba(255, 255, 255, 0.8) !important;
        padding: 12px 15px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 15px;
    }
    
    /* Hilangkan garis bawah pada item menu terakhir sebelum tombol donasi */
    .navbar-nav > .nav-item:nth-last-child(2) > .nav-link {
        border-bottom: none;
    }

    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link.active {
        color: #a9854b !important;
        background-color: rgba(169, 133, 75, 0.1); /* Highlight kotak transparan warna gold */
        border-radius: 8px;
    }

    /* Sub-menu (Dropdown) Mobile: Accordion Style */
    .dropdown-menu {
        background-color: rgba(0, 0, 0, 0.3) !important; /* Latar belakang lebih gelap (inset) */
        border: none;
        margin: 5px 0 10px 0;
        padding: 10px 0;
        border-radius: 8px;
    }

    /* Hilangkan background putih kaku dari Bootstrap */
    .dropdown-item:active, .dropdown-item:focus {
        background-color: transparent !important;
    }

    /* Tombol Hamburger Toggler */
    .navbar-toggler {
        border: none !important;
        padding: 0;
    }
    .navbar-toggler:focus {
        outline: none !important;
        box-shadow: none !important;
    }

    /* Tombol Donasi Mobile: Lebar Penuh (Full Width) */
    .btn-donasi-active {
        display: block !important;
        width: 100% !important;
        padding: 12px !important;
        margin-top: 10px;
    }
}

/* --- Global Dropdown Item Styling (Berlaku Desktop & Mobile) --- */
.dropdown-item {
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 10px 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Animasi elegan: Teks geser sedikit ke kanan saat di-hover */
.dropdown-item:hover {
    background-color: transparent !important;
    color: #a9854b !important;
    padding-left: 25px; 
}

/* --- 4. HERO SLIDER & SECTION --- */
.hero--section {
    position: relative;
    height: 90vh;
    width: 100%;
    overflow: hidden; /* FIX: One image at a time */
}

.swiper-container {
    height: 100%;
    width: 100%;
    z-index: 1;
    pointer-events: auto !important;
}

.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.hero--title {
    background: linear-gradient(to bottom, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 4rem !important;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
    pointer-events: auto;
}

.hero--excerpt {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.9);
    margin-top: 20px;
    pointer-events: auto;
}

.hero--wrapper, .layer {
    position: relative;
    z-index: 5;
    pointer-events: none; /* Clicks pass through to arrows */
}



/* Navigation Controls (FIX: Clickability) */
.prev-container, .next-container, .swiper-button-prev-custom, .swiper-button-next-custom, .swiper-pagination {
    position: absolute;
    z-index: 9999 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.prev-container { left: 20px; top: 50%; transform: translateY(-50%); width: 60px; }
.next-container { right: 20px; top: 50%; transform: translateY(-50%); width: 60px; }
.swiper-pagination { bottom: 80px !important; width: 100%; text-align: center; }

.swiper-pagination-bullet-active {
    background: #a9854b !important;
    width: 30px !important;
    border-radius: 5px !important;
    opacity: 1;
}

/* --- 5. STATISTICS & UTILITIES --- */
.statistik {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    z-index: 999;
    pointer-events: auto;
}

.btn-statistik {
    background: linear-gradient(145deg, #a9854b 0%, #967c55 100%);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.1);
    pointer-events: auto;
}

.btn-statistik:hover {
    transform: translateY(-8px);
}

.btn-donasi-active {
    background-color: #967c55 !important;
    color: #ffffff !important;
    border-radius: 6px;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(150, 124, 85, 0.2);
}

.float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 1000;
}

@media (max-width: 767px) {
    .hero--title { font-size: 2.5rem !important; }
    .hero--section, .hero { height: 80vh; }
    .row.justify-content-center .col-6 { flex: 0 0 48%; max-width: 48%; margin: 1%; }
    .btn-statistik { padding: 15px 10px; min-height: 80px; }
}

/* ==========================================
   8. KABAR TERBARU & JADWAL SHALAT CARDS (FIXED)
   ========================================== */

/* --- News Cards (Kiri) --- */
.news-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(169, 133, 75, 0.3);
}

.news-img {
    width: 85px;
    height: 85px;
    object-fit: cover; 
    border-radius: 8px;
}

.news-title {
    font-size: 15px;
    color: #333 !important;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.news-card:hover .news-title {
    color: #a9854b !important; /* Berubah jadi warna Gold saat dihover */
}

.news-excerpt {
    font-size: 13px;
    color: #777;
    margin-top: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Menjaga teks maksimal 2 baris agar rapi */
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    z-index: 2; /* Menjaga text berada di bawah stretched-link */
}

/* --- Prayer Card & Banner (Kanan) --- */
.prayer-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #a9854b; 
    transition: all 0.3s ease;
}

.prayer-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.prayer-table {
    margin-bottom: 0;
}

.prayer-table td {
    padding: 10px 8px !important;
    border-bottom: 1px solid rgba(0,0,0,0.03) !important;
}

.prayer-name {
    font-weight: 600;
    color: #555;
    font-size: 13px;
}

.prayer-time {
    font-weight: 700;
    color: #a9854b; 
    font-size: 14px;
}

.banner-img-wrapper img {
    transition: transform 0.4s ease;
}

.banner-img-wrapper:hover img {
    transform: scale(1.02); 
}

/* --- Mini Banner Slider Pagination --- */
.swiper-pagination-banner {
    position: relative !important;
    margin-top: 15px;
}

.swiper-pagination-banner .swiper-pagination-bullet {
    background: #ccc;
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    margin: 0 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.swiper-pagination-banner .swiper-pagination-bullet-active {
    background: #a9854b !important; /* Warna Gold Alhijrah */
    width: 20px;
    border-radius: 4px;
}

/* ==========================================
   9. HORIZONTAL BANNER SECTION
   ========================================== */
.banner-hover {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    border-radius: 8px;
    display: block;
    overflow: hidden; /* Mencegah gambar keluar dari lengkungan saat membesar */
}

.banner-hover:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(169, 133, 75, 0.2) !important; /* Bayangan warna emas */
}

.swiper-pagination-horizontal {
    position: absolute;
    bottom: 0px !important;
    width: 100%;
}

.swiper-pagination-horizontal .swiper-pagination-bullet {
    background: #ccc;
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.swiper-pagination-horizontal .swiper-pagination-bullet-active {
    background: #a9854b !important;
    width: 25px; /* Bentuk kapsul yang modern */
    border-radius: 5px;
}

/* ==========================================
   10. LAYANAN / SERVICES SECTION
   ========================================== */
.service-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03); /* Bayangan sangat tipis */
    border: 1px solid rgba(0,0,0,0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

/* Garis emas di bawah yang muncul saat di-hover */
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #a9854b; 
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px); /* Efek terangkat */
    box-shadow: 0 15px 30px rgba(0,0,0,0.08); /* Bayangan menebal */
}

.service-card:hover::after {
    transform: scaleX(1); /* Garis emas memanjang */
}

/* Lingkaran di belakang Ikon */
.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: rgba(169, 133, 75, 0.08); /* Latar belakang emas transparan */
    border-radius: 50%;
    transition: all 0.4s ease;
}

.service-icon {
    transition: all 0.4s ease;
}

.service-card:hover .icon-wrapper {
    background: #a9854b; /* Lingkaran berubah solid */
}

.service-card:hover .service-icon {
    transform: scale(1.1); /* Ikon membesar sedikit */
    filter: brightness(0) invert(1); /* Trik CSS: Mengubah warna gambar menjadi putih! */
}

/* ==========================================
   11. ALHIJRAH TV & DARK CARDS (CINEMATIC)
   ========================================== */
.cinematic-section {
    background: linear-gradient(135deg, #1f1f1f 0%, #2b2b2b 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- Video Slider Styling --- */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    border-color: rgba(169, 133, 75, 0.5);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Playlist Thumbnail Styling --- */
.video-thumbnail-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-thumbnail-wrapper img {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

/* Hover Effect: Border Emas dan Gambar Terang */
.video-thumbnail-wrapper:hover {
    border-color: #a9854b;
    transform: translateY(-5px);
}

.video-thumbnail-wrapper:hover img {
    opacity: 1;
}

/* Ikon Play Transparan di Tengah Thumbnail */
.play-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 40px;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.video-thumbnail-wrapper:hover .play-icon-overlay {
    color: #a9854b;
    transform: translate(-50%, -50%) scale(1.1);
}

.swiper-pagination-video {
    position: relative !important;
    margin-top: 20px;
}
.swiper-pagination-video .swiper-pagination-bullet { background: rgba(255,255,255,0.3); width: 10px; height: 10px; margin: 0 5px; border-radius: 50%; }
.swiper-pagination-video .swiper-pagination-bullet-active { background: #a9854b !important; width: 30px; border-radius: 5px; }

/* --- Dark Cards Styling (Foto Kegiatan) --- */
.dark-card {
    background-color: #262626;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.dark-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    border-color: #a9854b;
    background-color: #2b2b2b;
}

.dark-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid #a9854b; /* Garis emas pemisah gambar & teks */
    transition: transform 0.5s ease;
}

.dark-card:hover .dark-card-img {
    transform: scale(1.05); /* Gambar membesar pelan saat dihover */
}

.gold-text {
    color: #a9854b !important;
    font-size: 16px;
    transition: color 0.3s ease;
}

.dark-card:hover .gold-text {
    color: #ffffff !important; /* Judul berubah putih saat di-hover */
}

.text-excerpt {
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(255,255,255,0.7) !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- Background Khusus Seksi Agenda --- */
.agenda-section {
    /* Gradient abu-abu sangat lembut ke putih, memberikan kesan bersih dan membedakan dari seksi atasnya */
    background: linear-gradient(to bottom, #f0f2f5 0%, #ffffff 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.03); /* Garis batas tipis */
}


/* Styling khusus untuk elemen di Footer */
.footer-area {
	background-color: #1a1a1a; /* Hitam elegan, sedikit lebih gelap dari seksi video */
	border-top: 4px solid #a9854b; /* Garis aksen emas di atas footer */
	color: #b3b3b3; /* Teks abu-abu terang agar tidak menusuk mata */
}
.footer-heading {
	color: #a9854b;
	font-size: 16px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}
.footer-contact-list li {
	margin-bottom: 12px;
	display: flex;
	align-items: flex-start;
	line-height: 1.6;
}
.footer-contact-list i {
	color: #a9854b;
	margin-top: 4px;
	margin-right: 12px;
	font-size: 16px;
}
.footer-link {
	color: #b3b3b3;
	text-decoration: none;
	transition: color 0.3s ease;
}
.footer-link:hover {
	color: #a9854b;
	text-decoration: none;
}
/* Modern Social Icons */
.social-icon-box {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	background: rgba(255,255,255,0.05);
	color: #fff;
	border-radius: 50%;
	margin-right: 10px;
	transition: all 0.3s ease;
}
.social-icon-box:hover {
	background: #a9854b;
	color: #fff;
	transform: translateY(-3px);
}
.partner-logo-img {
	max-width: 190px;
	opacity: 0.7;
	transition: opacity 0.3s ease, filter 0.3s ease;
	filter: grayscale(100%); /* Membuat logo mitra menyatu dengan tema gelap */
}
.partner-logo-img:hover {
	opacity: 1;
	filter: grayscale(0%); /* Kembali berwarna saat di-hover */
}


/* --- Tombol Outline Gold --- */
.btn-outline-gold {
    border: 2px solid #a9854b;
    color: #a9854b;
    font-weight: 600;
    font-size: 14px;
    background-color: transparent;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background-color: #a9854b;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(169, 133, 75, 0.3);
    transform: translateY(-2px);
}

.btn-outline-gold i {
    transition: transform 0.3s ease;
}

.btn-outline-gold:hover i {
    transform: translateX(5px); /* Panah bergeser ke kanan saat di-hover */
}

/* --- Animasi Pulse WhatsApp --- */
.float {
    /* Pastikan z-index tinggi agar selalu di atas */
    z-index: 9999; 
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ==========================================
   12. JADWAL SHALAT (MODERN LIGHT CARD)
   ========================================== */
.prayer-card-modern {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); /* Bayangan sangat tipis dan halus */
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Garis aksen elegan di bagian paling atas kartu */
.prayer-card-modern::before {
    content: '';
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 4px;
    background: linear-gradient(90deg, #a9854b, #d4af37); /* Gradasi Emas */
}

.prayer-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); /* Efek melayang saat mouse di atasnya */
}

/* Styling List Jadwal */
.prayer-list {
    margin-top: 10px;
}

.prayer-item {
    padding: 12px 5px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1); /* Garis putus-putus terasa lebih ringan daripada garis solid */
    transition: all 0.2s ease;
}

/* Interaksi halus saat setiap baris disentuh */
.prayer-item:hover {
    background-color: rgba(169, 133, 75, 0.04); /* Latar belakang emas sangat tipis */
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 6px;
}

.prayer-name {
    font-size: 13.5px;
    font-weight: 600;
    color: #666;
    letter-spacing: 0.5px;
}

.prayer-time {
    font-size: 13.5px;
    font-weight: 700;
    color: #a9854b;
}


/* Custom Pagination Style */
.pagination {
    margin-bottom: 0;
}

.pagination li a, .pagination li span {
    border: none;
    margin: 0 5px;
    border-radius: 8px !important;
    color: #666;
    padding: 10px 18px;
    font-weight: 600;
    transition: all 0.3s;
    background: #f8f9fa;
}

.pagination li.active span {
    background-color: #a9854b !important; /* Warna Emas Alhijrah */
    color: white !important;
    box-shadow: 0 4px 15px rgba(169, 133, 75, 0.3);
}

.pagination li a:hover {
    background-color: #eee;
    color: #a9854b;
}

.related-posts .card {
        transition: transform 0.3s ease;
    }
    .related-posts .card:hover {
        transform: translateY(-5px);
    }
	

    /* Mengatur judul video agar rapi (maksimal 2 baris atau truncate) */
    .video-info h6 {
        display: -webkit-box;
        -webkit-line-clamp: 2; /* Maksimal 2 baris judul tampil */
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
        line-height: 1.4;
        transition: color 0.3s ease;
    }

    .video-info h6:hover {
        color: #a9854b !important; /* Warna berubah jadi emas saat judul di-hover */
    }

    /* Memastikan thumbnail tetap proporsional */
    .video-thumbnail-wrapper {
        border-radius: 8px;
        overflow: hidden;
        position: relative;
    }


    /* Styling khusus button arsip video */
    .btn-outline-gold {
        color: #a9854b;
        border: 2px solid #a9854b;
        background-color: transparent;
        transition: all 0.3s ease;
    }

    .btn-outline-gold:hover {
        background-color: #a9854b;
        color: #ffffff !important;
        box-shadow: 0 5px 15px rgba(169, 133, 75, 0.4);
        transform: translateY(-2px);
    }

    .video-slider {
        position: relative;
    }
	
	/* Styling tombol share WA */
    .share-wa-btn {
        background-color: #25d366; /* Warna khas WA */
        border: none;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
    }

    .share-wa-btn:hover {
        background-color: #128c7e;
        color: #ffffff !important;
        transform: scale(1.05);
        box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3) !important;
    }

    /* Memastikan konten card terdistribusi rata */
    .card-body.d-flex.flex-column {
        min-height: 180px;
    }

    .video-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
    }



		.banner-item-container {
			position: relative;
			transition: all 0.3s ease;
		}

		.banner-main-img {
			transition: transform 0.5s ease;
		}

		.banner-overlay-action {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background: rgba(0, 0, 0, 0.6);
			opacity: 0;
			transition: all 0.3s ease;
			z-index: 2;
		}

		.banner-item-container:hover .banner-overlay-action {
			opacity: 1;
		}

		.banner-item-container:hover .banner-main-img {
			transform: scale(1.1);
		}

		/* Button Styling */
		.btn-gold-action {
			background-color: #a9854b;
			color: white !important;
			border: none;
			font-weight: bold;
			font-size: 12px;
			padding: 8px 20px;
			border-radius: 50px;
			letter-spacing: 1px;
			transition: 0.3s;
		}

		.btn-white-action {
			background-color: white;
			color: #a9854b !important;
			border: none;
			font-weight: bold;
			font-size: 12px;
			padding: 8px 20px;
			border-radius: 50px;
			letter-spacing: 1px;
			transition: 0.3s;
		}

		.btn-gold-action:hover, .btn-white-action:hover {
			transform: translateY(-3px);
			box-shadow: 0 5px 15px rgba(0,0,0,0.3);
		}


.featured-badge {
        position: absolute;
        top: 15px;
        right: -35px;
        background: #a9854b;
        color: white;
        padding: 5px 40px;
        transform: rotate(45deg);
        font-size: 10px;
        font-weight: bold;
        letter-spacing: 1px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        z-index: 3;
    }
    .border-gold-premium {
        border: 2px solid #a9854b !important;
    }
	
	.nav-hover { transition: background 0.3s; }
    .nav-hover:hover { background-color: #fcf9f4; }
    .nav-hover:hover span { color: #a9854b !important; }
    
    .text-truncate {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .opacity-50 { opacity: 0.5; }
	
	
	
	

/* Button Donasi Premium */
.btn-donasi-premium {
    background: linear-gradient(135deg, #a9854b 0%, #c5a677 100%);
    color: #fff !important;
    border-radius: 50px;
    padding: 8px 25px !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(169, 133, 75, 0.2);
    transition: all 0.3s ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-donasi-premium:hover {
    background: linear-gradient(135deg, #c5a677 0%, #a9854b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(169, 133, 75, 0.4);
    color: #fff !important;
}

/* State Aktif saat di halaman donasi */
.btn-donasi-premium.active {
    background: #2b2b2b; /* Warna gelap elegan saat aktif */
    border: 1px solid #a9854b;
    box-shadow: none;
}

/* Animasi kecil pada icon */
.btn-donasi-premium:hover .small-icon {
    animation: heartBeat 1.2s infinite;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.1); }
    28% { transform: scale(1); }
    42% { transform: scale(1.1); }
    70% { transform: scale(1); }
}

/* Responsif untuk Mobile agar tetap full width */
@media (max-width: 991px) {
    .btn-donasi-premium {
        display: block;
        margin: 0 15px;
    }
}
