/* Footer Styles */

footer {
    background-color: var(--dark-color);
    color: var(--light-text);
    padding: 3rem 0 1rem 0;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 2rem;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    color: var(--light-text);
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--light-text);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1.5rem;
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

.social-media {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--light-text);
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .social-media {
        margin-top: 1rem;
        justify-content: center;
    }
}
