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

.site-footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding-top: 80px;
}

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

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding-bottom: 60px;
}

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

.footer-section h3 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-logo {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 2rem;
}

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

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}

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

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 992px) {

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {

    /* FOOTER GRID */

    .footer-top {
        grid-template-columns: repeat(2, 1fr);

        gap: 2rem;
    }

    /* FOOTER TEXT */

    .site-footer {
        text-align: left;
    }

    /* FOOTER LINKS */

    .footer-section ul {
        align-items: flex-start;
    }

}

/* =========================
   SMALL MOBILE DEVICES
========================= */

@media (max-width: 480px) {

    .footer-top {
        grid-template-columns: repeat(2, 1fr);

        gap: 1.5rem;
    }

    /* FOOTER LOGO */

    .footer-logo {
        font-size: 1.6rem;
    }

    /* FOOTER HEADINGS */

    .footer-section h3 {
        font-size: 1rem;
    }

    /* FOOTER TEXT */

    .footer-section p,
    .footer-section ul li a {
        font-size: 0.9rem;
    }

}