/* =====================================================
   GBCC Site Footer
===================================================== */

.site-footer {
    background: #080c10;
    color: #ffffff;
    border-top: 1px solid #263139;
    margin-top: 10px;
}

.site-footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 45px 30px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.7fr;
    gap: 50px;
    align-items: center;
}

.site-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.site-footer-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 18px;
}

.site-footer-club-logo {
    width: 95px;
    height: 95px;
    object-fit: contain;
}

.site-footer-affiliation {
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-footer-affiliation-logo {
    width: 85px;
    height: 85px;
    object-fit: contain;
}

.site-footer-club-name {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.site-footer-tagline {
    margin: 7px 0 0;
    color: #8da39a;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.site-footer-heading {
    margin: 0 0 18px;
    color: #8da39a;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.site-footer-sponsor-logos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.site-footer-sponsor {
    width: 125px;
    height: 65px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-footer-sponsor:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.site-footer-sponsor img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.site-footer-social {
    justify-self: end;
}

.site-footer-social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-footer-social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-footer-social-link:hover {

    transform: translateY(-2px);
}

.site-footer-social-link img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.site-footer-bottom {
    border-top: 1px solid #1b242b;
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-footer-copyright {
    color: #68757d;
    font-size: 0.78rem;
}

.site-footer-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4d5a62;
    font-size: 0.78rem;
}

.site-footer-meta a {
    color: #8da39a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer-meta a:hover {
    color: #ffffff;
}

/* =====================================================
   Tablet
===================================================== */

@media (max-width: 850px) {
    .site-footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .site-footer-brand {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }

    .site-footer-social {
        justify-self: start;
    }
}

/* =====================================================
   Mobile
===================================================== */

@media (max-width: 600px) {
    .site-footer-main {
        grid-template-columns: 1fr;
        padding: 35px 20px;
        gap: 35px;
        text-align: center;
    }

    .site-footer-brand {
        grid-column: auto;
    }

    .site-footer-logos {
        justify-content: center;
    }

    .site-footer-sponsor-logos {
        justify-content: center;
    }

    .site-footer-social {
        justify-self: center;
    }

    .site-footer-social-links {
        justify-content: center;
    }

    .site-footer-bottom {
        padding: 18px 20px;
        flex-direction: column;
        text-align: center;
    }
}