/* =========================
   FOOTER
========================= */

footer{
    background:#0f172a;
    color:white;
    margin-top:60px;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;

    padding:60px 8%;
}

.footer-section h3{
    margin-bottom:20px;
    color:#fbbf24;
}

.footer-section p{
    color:#cbd5e1;
    margin-bottom:10px;
    line-height:1.7;
}

/* =========================
   QUICK LINKS
========================= */

.footer-links{
    list-style:none;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#cbd5e1;
    transition:0.3s;
}

.footer-links a:hover{
    color:#ffffff;
    padding-left:5px;
}

/* =========================
   SOCIAL ICONS
========================= */

.social-links{
    display:flex;
    gap:15px;
    margin-top:15px;
}

.social-links a{
    width:40px;
    height:40px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:#1e293b;

    color:white;

    transition:0.3s;
}

.social-links a:hover{
    background:#2563eb;
}

/* =========================
   COPYRIGHT
========================= */

.copyright{
    border-top:1px solid rgba(255,255,255,0.1);

    text-align:center;

    padding:20px;

    color:#94a3b8;

    font-size:14px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .footer-container{
        text-align:center;
        padding:40px 5%;
    }

    .social-links{
        justify-content:center;
    }
}