/* PadelPublic theme overrides — loaded after style.css */
/* Single source of truth for brand color. Change here, applies everywhere. */

:root {
    --brand: #1e8fd5;
    --brand-hover: #14608f;
    --brand-soft: rgba(30, 143, 213, 0.12);
}

/* Override INSPINIA's leftover green spots that are NOT already #1e8fd5 in style.css */
.onoffswitch-label,
.onoffswitch-switch {
    border-color: var(--brand);
}
.onoffswitch-inner:before {
    background-color: var(--brand);
}

/* Public-site tweaks */
body.top-navigation #page-wrapper {
    background: #f3f3f4;
}

.top-navigation .navbar-brand {
    background: var(--brand);
}

.top-navigation .nav > li > a:hover,
.top-navigation .nav > li > a:focus,
.top-navigation .nav > li.active > a {
    color: var(--brand);
}

/* Use brand color for default text-primary helper */
.text-brand {
    color: var(--brand) !important;
}
.bg-brand {
    background-color: var(--brand) !important;
    color: #fff !important;
}

/* Footer styling for public site (contact info block) */
.public-footer {
    background: #fff;
    border-top: 1px solid #e7eaec;
    padding: 20px 0;
    margin-top: 30px;
    color: #676a6c;
    font-size: 13px;
}
.public-footer .footer-contact {
    margin-bottom: 6px;
}
.public-footer .footer-contact i {
    color: var(--brand);
    margin-right: 6px;
}
.public-footer .footer-copy {
    color: #999;
    font-size: 12px;
}

/* Responsive: top nav collapse for small screens */
@media (max-width: 768px) {
    .top-navigation .navbar-brand {
        padding: 12px 18px;
        font-size: 16px;
    }
    .top-navigation .nav > li > a {
        padding: 12px 14px;
    }
}
