footer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: black;
    padding: 10px 20px;
    font-family: "Sora", sans-serif;
    text-align: right;
    width: 100%;
}

footer .portfolio-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 10px;
    position: relative;
    padding-right: 18px; /* space for arrow */
    font-weight:700;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* arrow at end of links */
footer .portfolio-link::after {
    content: "→";
    position: absolute;
    right: 0;
    top: 44%;
    transform: translateY(-50%);
    color: white;
    font-size: 1rem;
    transition: transform 0.2s ease;
}

footer .portfolio-link:hover::after {
    transform: translateY(-50%) translateX(4px);
}
.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

footer p {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    margin: 0;
    padding: 10px 0;
}

.social-links {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 15px;
    padding: 10px 0;
}
.social-links a {
    display: inline-block;
}
.social-links img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

@media (max-width: 600px) {
    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-content{
        flex-direction: column;
        align-items: center;
        
    }

    .social-links {
        justify-content: center;
    }

    .social-links img{
        width: 36px;
        height: 36px;
    }
}
