/*
 * Global layout chrome.
 *
 * Loaded through {css} — i.e. AFTER the theme stylesheet and after its
 * minified build (`atameken.min.css`), which is what production/dev deploys
 * actually serve. Putting these overrides in the theme source alone is not
 * enough: environments that ship the minified bundle never see them.
 */

/*
 * Full-bleed top bar and footer: the coloured band spans the whole viewport
 * while its content stays inside a centered container.
 *
 * The theme paints every container white (`div.container { background: white }`),
 * so the two inner wrappers have to be reset back to transparent.
 */
.navbar-fixed-top > div.container,
#footer > .footer > div.container {
    background-color: transparent;
}

/* The band itself must never be constrained by a container width. */
.navbar.navbar-fixed-top {
    width: auto;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

#footer > .footer {
    width: 100%;
}
