/* Footer styles */
.footer-section {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.5);
}

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

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-link {
    color: #000;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 0.2rem 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-link svg {
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
    stroke: #000;
}

.footer-link:hover {
    transform: translateX(5px);
    color: #000;
    font-weight: 600;
}

.footer-link:hover svg {
    transform: translateX(2px);
}

/* Platform-specific colors */
.footer-link.home:hover svg,
.footer-link.projects:hover svg,
.footer-link.resume:hover svg,
.footer-link.contact:hover svg,
.footer-link.linkedin:hover svg,
.footer-link.github:hover svg,
.footer-link.instagram:hover svg,
.footer-link.x:hover svg {
    stroke: #000000;
    filter: drop-shadow(0 0 3px rgba(145, 8, 214, 0.4));
}

.footer-link.instagram:hover {
    color: #000;
}

.footer-link.instagram:hover svg {
    stroke-width: 0;
    fill: #000;
}

.footer-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #000;
    transition: width 0.3s ease;
}

.footer-link:hover::before {
    width: 100%;
    background-color: #000000;
}