/* Logo Container Styles */
.logo-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo SVG Styles */
.logo-svg {
    width: 100%;
    height: 100%;
    max-width: 500px;
    max-height: 150px;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0% {
        filter: drop-shadow(0 0 2px rgba(66, 133, 244, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 4px rgba(66, 133, 244, 0.8));
    }
    100% {
        filter: drop-shadow(0 0 2px rgba(66, 133, 244, 0.5));
    }
}

/* Text Animations */
.text-n { animation: fadeIn 0.5s ease-out 0s forwards, glow 2s infinite; }
.text-i { animation: fadeIn 0.5s ease-out 0.1s forwards, glow 2s infinite; }
.text-p { animation: fadeIn 0.5s ease-out 0.2s forwards, glow 2s infinite; }
.text-e { animation: fadeIn 0.5s ease-out 0.3s forwards, glow 2s infinite; }
.text-r { animation: fadeIn 0.5s ease-out 0.4s forwards, glow 2s infinite; }
.text-g { animation: fadeIn 0.5s ease-out 0.5s forwards, glow 2s infinite; }
.text-o { animation: fadeIn 0.5s ease-out 0.6s forwards, glow 2s infinite; }

/* Hover Effects */
.logo-container:hover text {
    animation: glow 2s infinite;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .logo-svg {
        max-width: 300px;
        max-height: 90px;
    }
    text {
        font-size: 40px !important;
    }
}

@media (max-width: 480px) {
    .logo-svg {
        max-width: 200px;
        max-height: 60px;
    }
    text {
        font-size: 30px !important;
    }
} 