/* Portfolio Hover Color Options */

/* Option 1: Blue Gradient (Current - Logo Colors) */
.portfolio-hover-blue {
    background: linear-gradient(135deg, rgba(8, 41, 113, 0.9) 0%, rgba(111, 145, 211, 0.9) 100%) !important;
}

/* Option 2: Green Nature Theme */
.portfolio-hover-green {
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.9) 0%, rgba(50, 205, 50, 0.9) 100%) !important;
}

/* Option 3: Purple Elegant */
.portfolio-hover-purple {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.9) 0%, rgba(138, 43, 226, 0.9) 100%) !important;
}

/* Option 4: Orange Warm */
.portfolio-hover-orange {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.9) 0%, rgba(255, 140, 0, 0.9) 100%) !important;
}

/* Option 5: Teal Modern */
.portfolio-hover-teal {
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.9) 0%, rgba(64, 224, 208, 0.9) 100%) !important;
}

/* Option 6: Red Passion */
.portfolio-hover-red {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.9) 0%, rgba(220, 20, 60, 0.9) 100%) !important;
}

/* Option 7: Dark Elegant */
.portfolio-hover-dark {
    background: linear-gradient(135deg, rgba(25, 25, 112, 0.9) 0%, rgba(47, 79, 79, 0.9) 100%) !important;
}

/* Option 8: Light Blue Sky */
.portfolio-hover-sky {
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.9) 0%, rgba(176, 224, 230, 0.9) 100%) !important;
}

/* Option 9: Gold Premium (Improved) */
.portfolio-hover-gold {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.9) 0%, rgba(255, 215, 0, 0.9) 100%) !important;
}

/* Option 10: Multi-color Rainbow */
.portfolio-hover-rainbow {
    background: linear-gradient(135deg, 
        rgba(255, 0, 0, 0.8) 0%, 
        rgba(255, 165, 0, 0.8) 20%, 
        rgba(255, 255, 0, 0.8) 40%, 
        rgba(0, 255, 0, 0.8) 60%, 
        rgba(0, 0, 255, 0.8) 80%, 
        rgba(238, 130, 238, 0.8) 100%) !important;
}

/* Enhanced hover effects */
.portfolio-hover-enhanced {
    transition: all ease-in-out 0.3s !important;
}

.portfolio-hover-enhanced:hover {
    transform: scale(1.02) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

/* Shine effect */
.portfolio-hover-shine {
    position: relative;
    overflow: hidden;
}

.portfolio-hover-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.portfolio-hover-shine:hover::before {
    left: 100%;
}

/* ===== FLOWING STREAM SIZE ENHANCEMENTS ===== */

/* Desktop - Landscape Portfolio Items (16:9 ratio) */
@media (min-width: 1200px) {
    .flowing-stream-track .portfolio-item {
        flex: 0 0 800px !important;
        margin: 0 !important;
        position: relative !important;
    }

    .flowing-stream-track .portfolio-item .portfolio-link {
        height: 450px !important;
        width: 100% !important;
        overflow: hidden !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
        transition: all 0.3s ease !important;
    }

    .flowing-stream-track .portfolio-item .portfolio-link img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        transition: transform 0.3s ease !important;
    }

    .flowing-stream-track .portfolio-item .portfolio-link:hover img {
        transform: scale(1.1) !important;
    }

    .flowing-stream-track .portfolio-caption {
        text-align: center !important;
        padding: 15px 0 !important;
    }

    .flowing-stream-track .portfolio-caption-heading {
        font-size: 1.3rem !important;
        font-weight: 600 !important;
        color: #333 !important;
        margin: 0 !important;
    }

    .flowing-stream-track {
        gap: 50px !important;
        animation-duration: 100s !important;
    }
}

/* Large Desktop - Landscape Portfolio Items (16:9 ratio) */
@media (min-width: 1600px) {
    .flowing-stream-track .portfolio-item {
        flex: 0 0 900px !important;
    }

    .flowing-stream-track .portfolio-item .portfolio-link {
        height: 506px !important;
    }

    .flowing-stream-track .portfolio-caption-heading {
        font-size: 1.4rem !important;
    }

    .flowing-stream-track {
        gap: 60px !important;
        animation-duration: 120s !important;
    }
}

/* Extra Large Desktop - Landscape Portfolio Items (16:9 ratio) */
@media (min-width: 1920px) {
    .flowing-stream-track .portfolio-item {
        flex: 0 0 1000px !important;
    }

    .flowing-stream-track .portfolio-item .portfolio-link {
        height: 563px !important;
    }

    .flowing-stream-track .portfolio-caption-heading {
        font-size: 1.5rem !important;
    }

    .flowing-stream-track {
        gap: 70px !important;
        animation-duration: 140s !important;
    }
}
