/* Custom CSS to add logo above NEWSLOGIC text in hero section */

/* Logo container styles */
.newslogic-logo {
    display: block;
    width: 180px;
    height: 180px;
    margin: 0 auto 2.5rem auto;
    background-image: url('/assets/newslogic_logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 6px 12px rgba(0, 212, 170, 0.4));
    animation: logoGlow 3s ease-in-out infinite;
}

/* Animation for the logo */
@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 4px 8px rgba(0, 212, 170, 0.3));
    }
    50% {
        filter: drop-shadow(0 4px 12px rgba(0, 212, 170, 0.6));
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .newslogic-logo {
        width: 120px;
        height: 120px;
        margin-bottom: 1.5rem;
    }
}

