/* Custom Hero Overlay untuk Workshop agar berbeda sedikit */
.workshop-hero {
    background: linear-gradient(rgba(10, 35, 66, 0.65), rgba(10, 35, 66, 0.65)), 
                url('../img/IMG20211116081012_2-scaled.jpg') !important;
    background-attachment: fixed !important;
    background-size: cover !important;
    background-position: center !important;
}

.feature-item .feat-icon i {
    font-size: 1.5rem;
    background: #f8f9fa;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.play-btn {
    transition: transform 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
}

/* Navbar active state */
.nav-link.active {
    color: var(--accent-gold) !important;
    border-bottom: 2px solid var(--accent-gold);
}

/* Styling Carousel Workshop */
.carousel-img {
    height: 400px;
    object-fit: cover;
    filter: brightness(0.7);
    transition: filter 0.3s ease;
}

.carousel-item:hover .carousel-img {
    filter: brightness(0.9);
}

.carousel-caption {
    background: rgba(10, 35, 66, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    padding: 15px;
    bottom: 30px;
}

.badge {
    padding: 0.6em 1em;
    border-radius: 50%;
    font-size: 0.9rem;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.materi-detail {
    padding: 20px;
    border-radius: 15px;
    transition: background 0.3s ease;
}

.materi-detail:hover {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}