/* Transparent Header Styles - Simple Version */
/* .transparent-header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
} */

/* Override header.fixed dari style.css agar tetap transparan */
header.fixed {
    background-color: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
