/*
 * Footer Styles
 * Version: 1.0.0
 */

.bp-footer {
    background-color: var(--bp-black-mid);
    border-top: var(--bp-border-gold);
    padding-top: var(--bp-space-16);
}

.bp-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--bp-space-10);
    padding-bottom: var(--bp-space-12);
}

/* Column 1: Brand */
.bp-footer__brand {}

.bp-footer__logo img {
    height: 60px;
    width: auto;
    margin-bottom: var(--bp-space-5);
    filter: brightness(0.9);
}

.bp-footer__about {
    font-size: var(--bp-text-sm);
    color: var(--bp-text-muted);
    line-height: var(--bp-leading-relaxed);
    max-width: 36ch;
    margin-bottom: var(--bp-space-5);
}

.bp-footer__partner-line {
    font-size: var(--bp-text-sm);
    color: var(--bp-text-muted);
    display: flex;
    align-items: center;
    gap: var(--bp-space-2);
    margin-bottom: var(--bp-space-5);
}

.bp-footer__partner-line a {
    opacity: 0.8;
    transition: opacity var(--bp-transition-fast);
}

.bp-footer__partner-line a:hover {
    opacity: 1;
}

.bp-footer__partner-logo {
    height: 36px;
    width: auto;
    display: inline;
}

.bp-footer__social {
    display: flex;
    gap: var(--bp-space-3);
}

.bp-footer__social .bp-soc-icon {
    width: 36px;
    height: 36px;
}

.bp-footer__social .bp-soc-icon svg {
    width: 16px;
    height: 16px;
}

/* Other columns */
.bp-footer__col {}

.bp-footer__col-title {
    font-family: var(--bp-font-body);
    font-size: var(--bp-text-xs);
    font-weight: 700;
    letter-spacing: var(--bp-tracking-widest);
    text-transform: uppercase;
    color: var(--bp-white);
    margin-bottom: var(--bp-space-5);
    padding-bottom: var(--bp-space-3);
    border-bottom: var(--bp-border-1);
}

/* Footer nav */
.bp-footer__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--bp-space-2);
}

.bp-footer__nav-list a {
    font-size: var(--bp-text-sm);
    color: var(--bp-text-muted);
    transition: color var(--bp-transition-fast);
    display: block;
    padding-block: var(--bp-space-1);
}

.bp-footer__nav-list a:hover {
    color: var(--bp-gold);
}

/* Contact */
.bp-footer__contact-block {
    display: flex;
    flex-direction: column;
    gap: var(--bp-space-1);
    margin-bottom: var(--bp-space-5);
}

.bp-footer__contact-block:last-child {
    margin-bottom: 0;
}

.bp-footer__contact-name {
    font-size: var(--bp-text-sm);
    font-weight: 600;
    color: var(--bp-white);
}

.bp-footer__contact-title {
    font-size: var(--bp-text-xs);
    color: var(--bp-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.bp-footer__contact-link {
    font-size: var(--bp-text-sm);
    color: var(--bp-text-muted);
    transition: color var(--bp-transition-fast);
}

.bp-footer__contact-link:hover {
    color: var(--bp-gold);
}

/* About mini */
.bp-footer__about-mini {
    font-size: var(--bp-text-sm);
    color: var(--bp-text-muted);
    line-height: var(--bp-leading-relaxed);
    margin-bottom: var(--bp-space-4);
}

.bp-footer__location-line {
    font-size: var(--bp-text-xs);
    color: var(--bp-text-ghost);
    font-weight: 600;
    letter-spacing: 0.06em;
    display: block;
}

/* Bottom bar */
.bp-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: var(--bp-space-5);
    border-top: var(--bp-border-1);
    gap: var(--bp-space-4);
    flex-wrap: wrap;
}

.bp-footer__copy,
.bp-footer__credit {
    font-size: var(--bp-text-xs);
    color: var(--bp-text-ghost);
}

.bp-footer__credit a {
    color: var(--bp-text-muted);
    transition: color var(--bp-transition-fast);
}

.bp-footer__credit a:hover {
    color: var(--bp-gold);
}

/* Responsive */
@media (max-width: 1023px) {
    .bp-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bp-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 599px) {
    .bp-footer__grid {
        grid-template-columns: 1fr;
    }

    .bp-footer__brand {
        grid-column: auto;
    }

    .bp-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
