/* Footer Specific Styles */
/* Footer Row - Mobile Responsive */
.footer-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px 0;
    gap: 20px;
}

.footer-logo {
    flex: 0 0 100%;
    text-align: center;
    margin-bottom: 15px;
}

.footer-logo img {
    max-height: 40px;
    width: auto;
}

.footer-follow-text {
    flex: 0 0 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: white;
    margin-bottom: 10px;
}

.footer-social-links {
    flex: 0 0 100%;
    text-align: center;
}

/* Social Links List - Mobile Centering */
.footer-social-links ul {
    display: flex;
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    justify-content: center;
    max-width: fit-content;
}

.footer-social-links li {
    margin: 0;
}

.footer-social-links a {
    color: white;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    color: #f1f1f1;
    transform: scale(1.1);
}

.footer-social-links i {
    font-size: 28px;
}

/* Desktop View */
@media (min-width: 768px) {
    .footer-row {
        flex-wrap: nowrap;
        gap: 30px;
    }
    
    .footer-logo {
        flex: 0 0 auto;
        margin-bottom: 0;
    }
    
    .footer-follow-text {
        flex: 0 0 auto;
        margin-bottom: 0;
    }
    
    .footer-social-links {
        flex: 0 0 auto;
    }
    
    .footer-social-links ul {
        justify-content: flex-start;
        margin: 0;
    }
}
