/* Make header thicker */
.navbar {
    padding: 1.2rem 1rem;
    font-size: 1.1rem;
    flex-direction: column; /* Stack brand and nav */
    align-items: flex-start;
}

/* Site title - move to top and make bold/bigger */
.navbar-brand {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

/* Nav items below the brand */
.navbar-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 1.1rem;
}

/* Hide Previous/Next nav links */
.navbar-nav a[rel="prev"],
.navbar-nav a[rel="next"] {
    display: none !important;
}
