/* Custom styles for pydata sphinx theme to make headers smaller and dark grey */

h1, h2, h3, h4, h5, h6 {
    color: #555555; /* Lighter grey */
    font-weight: 700; /* Less bold */
    margin-top: 2em; /* More padding above */
    margin-bottom: 0.7em; /* Little more padding below */
}

h1 {
    font-size: calc(1.8rem - 4px);
    margin-top: 0; /* Override the margin-top for h1 */
}

h2 {
    font-size: calc(1.5rem - 4px);
}

h3 {
    font-size: calc(1.25rem - 3px);
}

h4 {
    font-size: calc(1.1rem - 3px);
}

h5, h6 {
    font-size: calc(1rem - 2px);
}

/* Make the navbar header smaller too */
.navbar-brand {
    font-family: var(--pst-font-family-heading) !important;
    font-size: calc(1.1rem - 3px);
    color: #555555;
    font-weight: 700;
}