/* /css/footer.css */

.site-footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    padding-top: 4rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr; /* Four columns */
    gap: 2rem;
    padding-bottom: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 5%;
    padding-right: 5%;
}

.footer-column {
    min-width: 0;
}

.footer-title {
    font-family: 'Poppins', var(--font-family);
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-column p {
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-link:hover {
    color: white;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.social-link:hover {
    color: white;
    transform: scale(1.1);
}

.footer-bottom-bar {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 5%;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive styles for the footer */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr; /* Stack columns on mobile */
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}