/*
 * Theme adjustments requested on top of the original design.
 * Loaded after Check6.css so these win the cascade.
 */

/* Bring the header/nav down a little — taller header bar with the nav
   sitting lower inside it. The hero offsets itself with
   padding-top: var(--header-height), so it stays clear automatically. */
:root {
    --header-height: 104px;
}

.header .navbar {
    margin-top: 34px !important;
}

/* Keep the mobile menu panel aligned below the taller header. */
@media (max-width: 768px) {
    :root {
        --header-height: 90px;
    }

    .header .navbar {
        margin-top: 22px !important;
    }
}
