/* Custom Hero untuk Komunikasi */
.komunikasi-hero {
    background: linear-gradient(rgba(10, 35, 66, 0.55), rgba(10, 35, 66, 0.55)), 
                url('../img/IMG20211116081012_2-scaled.jpg') !important;
    background-attachment: fixed !important;
    background-size: cover !important;
    background-position: center !important;
}

/* Media Card Styling */
.media-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: #f8f9fa;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.media-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: rgba(10, 35, 66, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    border-radius: 15px 15px 0 0;
}

.media-card:hover .media-overlay {
    opacity: 1;
}

.media-card:hover img {
    transform: scale(1.1);
}

.media-card:hover {
    transform: translateY(-5px);
}

/* Active link */
.nav-link.active {
    color: var(--accent-gold) !important;
    border-bottom: 2px solid var(--accent-gold);
}