/* Footer */
footer {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a2930 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 90%;
}

footer p {
    margin-bottom: 0;
    font-size: 1.1rem;
    opacity: 0.9;
}
.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    opacity: 0.8;
    position: relative;
}

.social-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-light);
    transition: width 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-light);
    transform: translateY(-5px);
    opacity: 1;
}

.social-links a:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    
    footer .container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}