/* ====================================
   UNIVERSAL SCROLL PROGRESS BAR
   Barre de progression dorée verticale à gauche
   Compatible avec toutes les pages du portfolio
   ==================================== */

/* === SCROLL PROGRESS INDICATOR === */
.scroll-progress {
    position: fixed;
    left: 0;
    top: 0;
    width: 4px;
    height: 100vh;
    background: rgba(212, 165, 116, 0.2);
    z-index: 100;
}

.progress-bar {
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, #D4A574, #E5B685);
    transition: height 0.3s ease;
    box-shadow: 0 0 20px rgba(212, 165, 116, 0.5);
}

/* Mobile optimization */
@media (max-width: 768px) {
    .scroll-progress {
        width: 3px;
    }
}