/* Portal Branding — Marcel Bulla IT-Dienstleistungen
   Applied to all web/portal pages via web_include_css.
   Targets ERPNext standard portal + infrastructure_manager portal pages.
*/

/* Navbar brand */
.navbar-brand {
    font-weight: 600;
    color: #171717 !important;
}

/* Primary action buttons */
.btn-primary,
.btn-primary-dark {
    background-color: #171717;
    border-color: #171717;
    color: #fff;
}
.btn-primary:hover,
.btn-primary-dark:hover {
    background-color: #333;
    border-color: #333;
}
.btn-primary:focus,
.btn-primary-dark:focus {
    box-shadow: 0 0 0 3px rgba(23, 23, 23, 0.4);
}

/* Portal sidebar active link */
.portal-sidebar .list-group-item.active,
.portal-sidebar .list-group-item:focus {
    background-color: #171717;
    border-color: #171717;
    color: #fff;
}

/* Card styling */
.portal-card,
.web-list-item {
    border: 1px solid #e5e5e5;
    border-radius: 6px;
}

/* Links */
a.text-primary,
.portal-sidebar a {
    color: #171717;
}

/* Footer brand */
.web-footer .footer-brand {
    color: #171717;
    font-weight: 600;
}

/* Focus indicators for accessibility — WCAG AA minimum */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus,
[tabindex]:focus {
    outline: 2px solid #171717;
    outline-offset: 2px;
}

/* WCAG AAA text contrast overrides.
 * Bootstrap 4 default .text-muted is #6c757d → 4.68:1 on white (AA pass, AAA fail).
 * Darken to #495057 → 8.17:1 on white (AAA pass).
 * Verified via axe-core color-contrast tool.
 */
.text-muted {
    color: #495057 !important;
}

/* WCAG AAA: Bootstrap default .text-success is #28a745 → 4.5:1 on white (AA pass, AAA fail).
 * Darken to #1c6128 → 7.52:1 on white (AAA pass).
 * Used in portal/profile saved confirmation message.
 */
.text-success {
    color: #1c6128 !important;
}

/* WCAG AAA: ensure Bootstrap default .text-danger fails AAA (4.52:1).
 * Darken to #a51d29 → 7.47:1 on white (AAA pass).
 */
.text-danger {
    color: #a51d29 !important;
}
