/* Footer Credit Styles for Artum 8 Labs LLC */

.footer-credit {
    position: relative;
    padding: 30px 0;
    background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
    overflow: hidden;
    z-index: 1;
}

.footer-credit::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-credit-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.footer-credit-content p {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out;
}

.heart-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
    animation: heartBeat 1.5s ease-in-out infinite;
    font-size: 20px;
    color: #EF4444;
    filter: drop-shadow(0 0 6px rgba(239, 68, 68, 0.5));
}

.sparkles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    opacity: 0;
    animation: sparkleAnimation 3s linear infinite;
}

.sparkle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.sparkle:nth-child(2) {
    top: 30%;
    left: 80%;
    animation-delay: 0.5s;
}

.sparkle:nth-child(3) {
    top: 70%;
    left: 20%;
    animation-delay: 1s;
}

.sparkle:nth-child(4) {
    top: 60%;
    left: 90%;
    animation-delay: 1.5s;
}

.sparkle:nth-child(5) {
    top: 10%;
    left: 50%;
    animation-delay: 2s;
}

.sparkle svg {
    width: 16px;
    height: 16px;
    fill: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heartBeat {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.3);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.3);
    }
    70% {
        transform: scale(1);
    }
}

@keyframes sparkleAnimation {
    0% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: scale(0) rotate(360deg);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-credit-text {
        font-size: 16px;
    }
    
    .footer-credit-developer {
        font-size: 18px;
    }
    
    .footer-credit-heart svg {
        width: 20px;
        height: 20px;
    }
    
    .footer-credit-copyright {
        font-size: 12px;
    }
}