/* Global styles for GFX Repair website */
/* This file contains common styles used across all pages */

/* ===============================================
   CLIPPY ASSISTANT STYLES
   =============================================== */
#clippy {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
    animation: float 3s ease-in-out infinite;
}

#clippy.show {
    opacity: 1;
}

#clippy img {
    width: 80px;
    height: auto;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

#clippy.testing-mode img {
    animation-iteration-count: 1;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    #clippy {
        bottom: 15px;
        right: 15px;
    }

    #clippy img {
        width: 60px;
    }
}