/* ==========================================================
   CUCUPOT FOOTER STYLESHEET
   Version : 1.0
========================================================== */

/* ---------- Footer ---------- */

.footer{

    background:var(--light-color);

    color:var(--text-color);

    border-top:1px solid var(--border-color);

    text-align:center;

    padding:18px 15px;

    margin-top:40px;

    font-size:14px;

    box-shadow:0 -1px 4px rgba(0,0,0,.05);
}

/* ---------- Copyright ---------- */

.footer p{

    margin:0;

    line-height:1.6;
}

/* ---------- Social Links ---------- */

.social-links{

    margin-top:8px;
}

.social-links a{

    color:var(--primary-color);

    margin:0 8px;

    font-weight:500;
}

.social-links a:hover{

    color:var(--primary-hover);
}

/* =====================================================
   TABLETS
===================================================== */

@media screen and (max-width:900px){

    .footer{

        padding:16px 12px;

        font-size:13px;
    }

}

/* =====================================================
   MOBILE
===================================================== */

@media screen and (max-width:768px){

    .footer{

        padding:14px 10px;

        font-size:12px;
    }

    .social-links{

        display:flex;

        justify-content:center;

        flex-wrap:wrap;

        gap:10px;
    }

}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media screen and (max-width:480px){

    .footer{

        padding:12px 8px;

        font-size:11px;
    }

}