/* Custom Footer Styles */
.custom-footer {
    background-color: var(--main-color) !important;
    color: var(--white-color);
    padding: 60px 0 0px 0;
    position: relative;
}

.site-footer{
    padding-bottom: 0 !important;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-column h4{
    margin-top: 0;
    text-align: center;
}

/* Social Media Column */
.social-links {
    display: flex;
    flex-direction: row;
    gap: 35px;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0px;
    color: white !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
    font-size: 16px;
}

.social-links a span{
    color: white !important;
}

.social-link:hover {
    color: var(--secondary-color);
}

.social-link i {
    font-size: 20px;
    width: 24px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .custom-footer {
        padding: 40px 0 20px 0;
    }
    
    .social-links {
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 25px;
    }
    
    .footer-column h3 {
        font-size: 2em;
    }
    
    .social-link {
        font-size: 14px;
    }
    
    .social-link i {
        font-size: 18px;
    }
}