/* === BRJ Custom Footer === */
.brj-footer {
    background: #090909;
    color: rgba(255, 255, 255, 0.85);
    padding: 50px 0 30px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    line-height: 1.8;
}

.brj-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.brj-footer h6 {
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brj-footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    padding: 2px 0;
}

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

.brj-footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.brj-footer-logo .brj-footer-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.brj-footer-logo .brj-footer-btns a {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    text-align: center;
    font-size: 13px;
}

.brj-footer-logo .brj-footer-btns a:hover {
    border-color: #ffffff;
    color: #ffffff;
}

.brj-footer-address p {
    margin: 0 0 8px;
    color: rgba(255,255,255,0.7);
}

.brj-footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding: 20px 20px 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.brj-footer-bottom a {
    display: inline;
    color: rgba(255,255,255,0.5);
}

.brj-footer-bottom a:hover {
    color: #ffffff;
}

/* Hide original OJS footer */
.pkp_structure_footer_wrapper {
    display: none;
}

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