/* Footer */
.footer {
    background: linear-gradient(135deg, var(--midnight-blue) 0%, var(--eerie-black) 50%, var(--gunmetal) 100%);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-family: 'Audiowide', cursive;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--seasalt) 0%, var(--accent-blue) 50%, var(--steel-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 400;
}

.footer-logo p {
    color: var(--platinum);
    margin-bottom: 1.5rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--dark-slate-blue) 0%, var(--prussian-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid var(--accent-blue);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--steel-blue) 0%, var(--accent-blue) 100%);
    color: white;
    transform: translateY(-3px) scale(1.1);
    border-color: var(--muted-teal);
    box-shadow: 0 5px 15px var(--prussian-blue), 0 0 15px var(--dark-teal);
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section a {
    color: var(--platinum);
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--seasalt);
    padding-left: 5px;
}

.footer-section li {
    color: var(--platinum);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section i {
    color: var(--seasalt);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid var(--onyx);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--platinum);
    margin: 0;
}