/* base/static/base/css/footer.css */

.footer {
    background: #0f0f0f;
    color: white;
    padding: 60px 0 40px;
}

.footer-content {
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid white;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: white;
    color: #0f0f0f;
}

.footer-info {
    margin-bottom: 40px;
    line-height: 1.8;
}

.address {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.hours {
    margin-bottom: 15px;
}

.maps-link {
    color: #ccc;
    font-size: 0.9rem;
}

.copyright {
    font-size: 0.8rem;
    color: #ccc;
    border-top: 1px solid #555;
    padding-top: 20px;
}

@media (max-width: 768px) {
    .social-links {
        gap: 15px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}