/**
 * Footer Styles
 */

.site-footer {
    background-color: #f8f9fa;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    border-top: 1px solid #dee2e6;
}

.footer-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Widget Area Container */
.footer-widgets-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-widget {
    padding: 1rem;
}

.footer-widget-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
    font-size: 0.9rem;
    color: #6c757d;
}

.footer-copyright {
    margin: 0;
}

.footer-menu {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-menu a:hover {
    color: #333;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-widgets-container {
        grid-template-columns: 1fr;
    }
}
