@charset "utf-8";

/* /home/headajyj/public_html/headsntail/assets/partials/footer/footer.css */

.f-footer{
    padding:56px 24px 26px;
    background:#121212;
    border-top:1px solid #3a3a3a;
    position:relative;
}

/* =========================
   Footer Layout
========================= */

.f-footer-content{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:36px;
    margin-bottom:34px;
}

.f-footer-section{
    display:flex;
    flex-direction:column;
    gap:14px;
}

/* =========================
   Logo
========================= */

.f-logo{
    display:flex;
    align-items:center;
    text-decoration:none;
    color:inherit;
}

.f-logo-icon{
    width:44px;
    height:44px;
    margin-right:12px;
}

.f-logo-text{
    font-size:22px;
    font-weight:900;
    letter-spacing:2px;
    text-transform:uppercase;
}

.f-logo-text .prism{
    background:linear-gradient(135deg,#ffffff,#00ffff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* =========================
   Description
========================= */

.f-footer-description{
    color:rgba(255,255,255,.70);
    line-height:1.6;
    font-size:13px;
}

/* =========================
   Footer Links
========================= */

.f-footer-section h4{
    color:#ffffff;
    margin-bottom:12px;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:14px;
}

.f-footer-links{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.f-footer-links a{
    color:rgba(255,255,255,.70);
    text-decoration:none;
    transition:all .3s ease;
    font-size:13px;
}

.f-footer-links a:hover{
    color:#9945ff;
    padding-left:6px;
}

/* =========================
   Footer Bottom
========================= */

.f-footer-bottom{
    padding-top:22px;
    border-top:1px solid #3a3a3a;
    display:flex;
    justify-content:center;
    align-items:center;
    max-width:1200px;
    margin:0 auto;
}

.copyright{
    color:rgba(255,255,255,.55);
    font-size:13px;
}

/* =========================
   Responsive
========================= */

@media (max-width:900px){

    .f-footer-content{
        grid-template-columns:1fr 1fr;
        gap:28px;
        text-align:center;
    }

    .f-logo{
        justify-content:center;
    }

    .f-footer-links{
        align-items:center;
    }

}

@media (max-width:768px){

    .f-footer-content{
        grid-template-columns:1fr;
    }

    .f-footer-bottom{
        text-align:center;
        flex-direction:column;
        gap:6px;
    }

}