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

.site-footer {
    background: #0c0c0c;
    color: #A0A0A0;
    padding: 80px 20px 30px;
    width: 100%;
    font-family: Arial, sans-serif;
}

/* ===== Layout Container ===== */

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* ===== Columns ===== */

.footer-col {
    display: flex;
    flex-direction: column;
}

/* ===== Logo ===== */

.footer-logo {
    display: flex;
    align-items: center;
    height: 60px;
    margin-bottom: 20px;
    overflow: hidden;
}

.footer-logo img {
    height: 100%;
    transform: scale(2.8);   /* same scale as navbar */
    transform-origin: left center;
}

/* ===== About Text ===== */

.footer-about p {
    font-size: 0.95rem;
    color: #A0A0A0;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 300px;
}

/* ===== Section Headings ===== */

.footer-col h4 {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #fbbf24;
    font-weight: 600;
}

/* ===== Links ===== */

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-col ul li a {
    color: #A0A0A0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #fbbf24;
    padding-left: 4px;
}

/* ===== Social Icons ===== */

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #1a1a1a;
    border-radius: 50%;
    color: #A0A0A0;
    transition: 0.3s ease;
    text-decoration: none;
}

.footer-socials a:hover {
    background: #fbbf24;
    color: #111;
}

/* ===== Footer Bottom ===== */

.footer-bottom {
    text-align: center;
    margin-top: 70px;
    padding-top: 25px;
    border-top: 1px solid #1f1f1f;
    font-size: 0.85rem;
    color: #A0A0A0;
}

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

/* Tablet (2 columns) */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Mobile (1 column) */
@media (max-width: 600px) {

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-logo img {
        transform-origin: center center;  
    }

    .footer-about p {
        margin: 0 auto 25px;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-col ul li a:hover {
        padding-left: 0;
    }
}