/* ============================================================
 * wiseland theme — base.css
 * Primary color: misty blue #EAF1F9 (header nav & footer)
 * Accent: #4A7AB5 / hover #2E5A8F, text on mist: #2B3A4A
 * ============================================================ */

/* header navigation (overrides bootstrap navbar-dark / bg-dark) */
header nav.navbar {
    background-color: #EAF1F9 !important;
    box-shadow: 0 1px 4px rgba(43, 58, 74, 0.08);
}
header .navbar.navbar-dark .navbar-brand,
header .navbar.navbar-dark .navbar-nav .nav-link {
    color: #2B3A4A;
}
header .navbar.navbar-dark .navbar-nav .nav-link:hover,
header .navbar.navbar-dark .navbar-nav .nav-link:focus {
    color: #4A7AB5;
}
header .navbar.navbar-dark .navbar-brand:hover {
    color: #4A7AB5;
}
/* brand site name uses text-white in the core base template */
header .navbar .text-white {
    color: #2B3A4A !important;
}
/* nav icons use hardcoded color-white in user_navigation.html */
header .navbar .color-white {
    color: #2B3A4A !important;
}
header .navbar a:hover .color-white {
    color: #4A7AB5 !important;
}
/* dark toggler bars on the light background */
header .navbar.navbar-dark .navbar-toggler {
    border-color: rgba(43, 58, 74, 0.4);
}
header .navbar.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(43, 58, 74, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* footer band in misty blue */
footer.page-footer {
    background-color: #EAF1F9;
    margin-bottom: 0;
    padding: 1.5em 0;
}
footer.page-footer,
footer.page-footer .block-list-item,
footer.page-footer .text-secondary {
    color: #4A5A6A !important;
}
footer.page-footer a {
    color: #2B3A4A;
}
footer.page-footer a:hover {
    color: #4A7AB5;
}
#footer-logo {
    opacity: 0.55;
}

/* page background band in misty blue (was #0b1f2a/#303030 from theme_mode css) */
body {
    background-color: #EAF1F9 !important;
}

/* harmonize bootstrap bg-dark (#212529) with the misty blue palette */
.bg-dark {
    background-color: #2B3A4A !important;
}

/* generic accents adjusted to the misty blue tone */
a {
    color: #4A7AB5;
}
a:hover {
    color: #2E5A8F;
}
.text-primary {
    color: #4A7AB5 !important;
}
