/* FILE: assets/css/footer.css */

.main-footer {
    background-color: #333;
    color: #f9f9f9;
    padding: 1.5rem 2rem 0.8rem;
    margin-top: 2rem;
    border-top: 3px solid var(--primary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto 1rem;
}

.footer-section h3 {
    font-size: 0.95rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.footer-section p {
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0.25rem 0;
    color: #ccc;
}

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

.footer-section ul li {
    margin-bottom: 0.25rem;
}

.footer-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.8rem;
}

.footer-section a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 0.6rem;
    text-align: center;
    font-size: 0.75rem;
    color: #999;
    max-width: 960px;
    margin: 0 auto;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .main-footer {
        padding: 2rem 1rem 0.5rem;
        margin-top: 3rem;
    }
}
