/* fastcashflow documentation -- brand colours and landing polish. */

html[data-theme="light"] {
    --pst-color-primary: #3b6ea5;
    --pst-color-secondary: #2a9d8f;
    --pst-color-link: #3b6ea5;
    --pst-color-link-hover: #2a9d8f;
}

html[data-theme="dark"] {
    --pst-color-primary: #6b9bd1;
    --pst-color-secondary: #4cb3a5;
    --pst-color-link: #6b9bd1;
    --pst-color-link-hover: #4cb3a5;
}

/* the home-page hero image */
img.hero {
    display: block;
    margin: 1.5rem auto 2.25rem auto;
    border-radius: 8px;
}

/* the navbar wordmark -- two-colour text in place of the logo image
   (logo-light.png / logo-dark.png are kept in _static/ but unused) */
.navbar-brand .logo__title {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 1.3rem;
}
.logo__fast { color: #2a9d8f; }
html[data-theme="light"] .logo__cashflow { color: #1d2b35; }
html[data-theme="dark"] .logo__cashflow { color: #e8ecef; }
