/* =========================================
   ZAREEI STUDIO
   PROFESSIONAL FOOTER
========================================= */

.site-footer {
    margin-top: 80px;
    padding: 75px 0 25px;
    background: #111;
    color: #fff;
    border-top: 1px solid rgba(201,165,90,.18);
}

.site-footer .footer-main {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1.2fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
}


/* =========================================
   BRAND
========================================= */

.site-footer .footer-brand {
    max-width: 390px;
}

.site-footer .footer-logo {
    display: inline-block;
    margin-bottom: 22px;

    color: #fff;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 4px;

    text-decoration: none;
}

.site-footer .footer-logo:hover {
    color: var(--gold);
}

.site-footer .footer-brand p {
    margin: 0 0 25px;

    color: #aaa;
    font-size: 14px;
    line-height: 1.9;
}


/* =========================================
   CTA
========================================= */

.site-footer .footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 45px;
    padding: 11px 20px;

    border: 1px solid var(--gold);
    border-radius: 6px;

    color: var(--gold);
    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition: .3s ease;
}

.site-footer .footer-cta:hover {
    background: var(--gold);
    color: #111;
}


/* =========================================
   COLUMNS
========================================= */

.site-footer .footer-column h3 {
    margin: 0 0 22px;

    color: #fff;
    font-size: 15px;
    font-weight: 700;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* بسیار مهم:
   جلوگیری از تأثیر CSS عمومی روی Footer
*/

.site-footer .footer-column ul {
    display: block;
    margin: 0;
    padding: 0;

    list-style: none;
}

.site-footer .footer-column li {
    display: block;
    width: auto;

    margin: 0 0 12px;
    padding: 0;

    text-align: left;
}

.site-footer .footer-column li a {
    display: inline-block;

    padding: 0;

    color: #aaa;

    font-size: 14px;
    line-height: 1.6;

    text-decoration: none;

    transition: .3s ease;
}

.site-footer .footer-column li a:hover {
    padding-left: 5px;
    color: var(--gold);
}


/* =========================================
   CONTACT
========================================= */

.site-footer .footer-contact p {
    margin: 0 0 12px;

    color: #aaa;
    font-size: 14px;
}

.site-footer .footer-contact > a {
    display: inline-block;

    margin-bottom: 22px;

    color: var(--gold);
    font-size: 14px;

    text-decoration: none;
}

.site-footer .footer-contact > a:hover {
    text-decoration: underline;
}


/* =========================================
   SOCIAL
========================================= */

.site-footer .footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.site-footer .footer-social a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 36px;
    padding: 7px 13px;

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 6px;

    color: #aaa;
    font-size: 12px;

    text-decoration: none;

    transition: .3s ease;
}

.site-footer .footer-social a:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(201,165,90,.06);
}


/* =========================================
   BOTTOM
========================================= */

.site-footer .footer-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding-top: 25px;

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

.site-footer .footer-bottom p {
    margin: 0;

    color: #777;
    font-size: 12px;
}

.site-footer .footer-bottom span {
    color: #777;

    font-size: 11px;
    letter-spacing: 1.5px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .site-footer .footer-main {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 40px;
    }

    .site-footer .footer-brand {
        grid-column: span 3;
        max-width: 600px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .site-footer {
        margin-top: 60px;
        padding: 55px 0 20px;
    }

    .site-footer .footer-main {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .site-footer .footer-brand {
        grid-column: auto;
        max-width: 100%;
    }

    .site-footer .footer-logo {
        font-size: 21px;
        letter-spacing: 3px;
    }

    .site-footer .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

}
