/*
 * BlueCoat French Bulldogs — Footer stylesheet
 * Theme: blue-coat-french-bulldog-theme
 * ------------------------------------------------------------------
 * Site footer and the back-to-top button. Loaded on EVERY page.
 */

/* ============================================================
   FOOTER
   ============================================================ */
.bc-footer {
    background: #fff;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.bc-footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.bc-footer-brand-text {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.8;
    margin: 20px 0 24px;
    max-width: 300px;
}

.bc-footer-social-links {
    display: flex;
    gap: 10px;
}

.bc-footer-social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #f5f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bc-footer-social-link svg {
    width: 18px;
    height: 18px;
    color: #888;
}

.bc-footer-social-link:hover {
    background: #1B73B8;
    transform: translateY(-3px);
}

.bc-footer-social-link:hover svg {
    color: #fff;
}

.bc-footer-col h4 {
    font-family: 'Playfair Display';
    font-size: 1rem;
    margin-bottom: 24px;
    color: #0a0a0a;
}

.bc-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bc-footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.3s ease;
}

.bc-footer-links a:hover {
    color: #1B73B8;
}

.bc-footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bc-footer-copy {
    font-size: 0.78rem;
    color: #bbb;
}

.bc-footer-legal {
    display: flex;
    gap: 24px;
}

.bc-footer-legal a {
    font-size: 0.78rem;
    color: #bbb;
    text-decoration: none;
}

.bc-footer-legal a:hover {
    color: #1B73B8;
}

/* Back to top */
.bc-back-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #1B73B8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(27, 115, 184, 0.3);
}

.bc-back-top svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

.bc-back-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.bc-back-top:hover {
    transform: translateY(-4px) scale(1.1);
}

/* ============================================================
   FOOTER RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
    .bc-footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .bc-footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bc-footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}
