/* ===========================================================
   FOOTER
=========================================================== */

.site-footer{

    position:relative;

    margin-top:8rem;

    padding:4rem 0 2rem;

    border-top:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.015);

    backdrop-filter:blur(20px);

}

.footer-container{

    max-width:1200px;

    margin:0 auto;

    padding:0 2rem;

    display:grid;

    grid-template-columns:1fr auto auto;

    gap:3rem;

    align-items:center;

}

.footer-name{

    margin:0;

    font-size:1.5rem;

    font-weight:700;

}

.footer-role{

    margin-top:.5rem;

    color:var(--text-secondary);

}

.footer-nav{

    display:flex;

    gap:2rem;

    flex-wrap:wrap;

}

.footer-nav a{

    position:relative;

    color:rgba(255,255,255,.72);

    text-decoration:none;

    transition:
            color .25s ease,
            transform .25s ease;

}

.footer-nav a:hover{

    color:#ffffff;

    transform:translateY(-2px);

}

.footer-nav a::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-8px;

    transform:translateX(-50%);

    width:0;

    height:2px;

    border-radius:999px;

    background:#5EA8FF;

    transition:width .25s ease;

}

.footer-nav a:hover::after{

    width:100%;

}

.footer-actions{

    display:flex;

    justify-content:flex-end;

}

.footer-resume{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 28px;

    border-radius:999px;

    background:linear-gradient(
            135deg,
            #5EA8FF,
            #2B6DFF
    );

    color:#ffffff;

    text-decoration:none;

    font-weight:600;

    transition:
            transform .3s ease,
            box-shadow .3s ease;

    box-shadow:
            0 8px 24px rgba(43,109,255,.28);

}

.footer-resume:hover{

    transform:translateY(-3px);

    box-shadow:
            0 16px 36px rgba(43,109,255,.45);

}

.footer-bottom{

    margin-top:3rem;

    padding-top:2rem;

    border-top:1px solid rgba(255,255,255,.06);

    text-align:center;

}

.footer-bottom p{

    color:var(--text-secondary);

    font-size:.95rem;

    margin:0;

}

@media (max-width:900px){

    .footer-container{

        grid-template-columns:1fr;

        text-align:center;

    }

    .footer-brand{

        display:flex;

        flex-direction:column;

        align-items:center;

    }

    .footer-nav{

        justify-content:center;

    }

    .footer-actions{

        justify-content:center;

    }

}
.footer-tagline{

    margin-top:1rem;

    max-width:280px;

    color:rgba(255,255,255,.55);

    line-height:1.7;

    font-size:.95rem;

}
