/* Project Show Page Styles */
.advantage-icon {
    color: #D4AF37;
    transition: transform 0.3s ease;
}

.advantage-icon:hover {
    transform: scale(1.1);
}

.gallery-thumbnail {
    transition: all 0.3s ease;
}

.gallery-thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.blur-card {
    backdrop-filter: blur(30px);
    background-color: rgba(255, 255, 255, 0.75);
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.main-image-container {
    position: relative;
}

.gallery-thumbnail img {
    transition: opacity 0.3s ease;
}

.active-thumbnail {
    border-color: #D4AF37 !important;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .gallery-thumbnail img {
        width: 60px !important;
        height: 48px !important;
    }

    .swipe-indicator {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        background-color: rgba(0, 0, 0, 0.3);
        padding: 8px 12px;
        border-radius: 20px;
        pointer-events: none;
        opacity: 0;
        animation: fadeInOut 3s ease-in-out forwards;
    }

    @keyframes fadeInOut {
        0%,
        100% {
            opacity: 0;
        }

        20%,
        80% {
            opacity: 0.8;
        }
    }
}
