/* Footer Section Design */
.footer-container{
    background-color: var(--header-bg);
    color: var(--light-grey);
    padding: 60px 0 20px;
    font-size: 0.95em;
}

.footer-content-container{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-info{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-info h3,
.footer-social h3,
.footer-links h3{
    color: var(--header-text);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-info a,
.dev-credit a{
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.footer-info a:hover,
.dev-credit a:hover{
    color: var(--primary-color);
}

.social-links-container{
    width: 100%;
    display: flex;
    gap: 10px;
}

.social-link{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary-color);
    transition: background-color 0.3s ease;
}
.social-link:hover{
    background-color: var(--primary-color);
}

.social-link a{
    border-radius: 2px;
    font-size: 0.9rem;
    padding: 5px 10px;
    color: var(--header-text);
}

.footer-links-container{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-link a{
    color: var(--light-grey);
    transition: color 0.3s ease;
}

.footer-link a:hover{
    color: var(--primary-color);
}

.copy-rights,
.dev-credit{
    margin-top: 20px;
    text-align: center;
    border-top: 1px solid var(--light-grey);
    padding: 20px 0 0 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-container{
        padding: 50px 0 20px;
    }
    
    .footer-content-container{
        gap: 25px;
    }
    
    .footer-info h3,
    .footer-social h3,
    .footer-links h3{
        font-size: 1.4rem;
    }
    
    .social-link a{
        font-size: 1.2rem;
    }
    
    .copy-rights,
    .dev-credit{
        margin-top: 20px;
        text-align: center;
        border-top: 1px solid var(--light-grey);
        padding: 20px 0 0 0;
    }

    .dev-credit{
        font-size: 0.8rem;
    }
}