/**
 * Scroll Progress Bar
 * Shows scroll progress at the top of the page
 */

.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.scroll-progress-bar {
    height: 100%;
/*    background: linear-gradient(90deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);*/
background: linear-gradient(90deg, #e85720 0%, #ffffff 50%, #60a5fa 100%);
    width: 0%;
    transition: width 0.1s ease-out;
    box-shadow: 0 2px 4px rgba(30, 64, 175, 0.3);
}

/* Hide on very small screens if needed */
@media (max-width: 480px) {
    .scroll-progress-container {
        height: 3px;
    }
}

/* Alternative color schemes */
.scroll-progress-bar.gradient-blue {
    background: linear-gradient(90deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
}

.scroll-progress-bar.gradient-green {
    background: linear-gradient(90deg, #065f46 0%, #059669 50%, #10b981 100%);
}

.scroll-progress-bar.gradient-orange {
    background: linear-gradient(90deg, #ea580c 0%, #f97316 50%, #fb923c 100%);
}

/* Smooth animation */
.scroll-progress-bar {
    will-change: width;
}

