/* Footer Custom Styles */
#footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

#footer .footer-block {
    margin-bottom: 1.5rem;
}

#footer .footer-block:last-child {
    margin-bottom: 0;
}

/* Footer címsorok explicit stílusa - Porto override */
#footer h5 {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #ecf0f1 !important;
    margin-bottom: 1rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    line-height: 1.4 !important;
}

#footer .tag-cloud .badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

#footer .tag-cloud .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

#footer .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
}

#footer .social-links a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

#footer .footer-logo {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

#footer .footer-logo:hover {
    opacity: 1;
}

/* Responsive footer adjustments */
@media (max-width: 768px) {
    #footer .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    #footer .row > div {
        margin-bottom: 2rem;
        text-align: center;
    }

    #footer .tag-cloud {
        text-align: center;
    }

    #footer .social-links {
        text-align: center;
    }

    /* Mobil nézetben kisebb címsorok */
    #footer h5 {
        font-size: 0.9rem !important;
        margin-bottom: 0.75rem !important;
    }
}

/* Animation for footer elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#footer .footer-block {
    animation: fadeInUp 0.6s ease-out;
}

#footer .footer-block:nth-child(2) { animation-delay: 0.1s; }
#footer .footer-block:nth-child(3) { animation-delay: 0.2s; }
#footer .footer-block:nth-child(4) { animation-delay: 0.3s; }
