@import 'common.css';

.footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 3rem 0 2rem;
}

.footer-heading {
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.1rem;
    opacity: 0.8;
    transition: all 0.2s ease;
}

/* Container styles are now in common.css */

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.footer-description {
    opacity: 0.8;
    margin: 0;
    font-size: 0.95rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

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

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-copyright {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.7;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-heading {
        margin-bottom: 0.75rem;
    }
}