/*
 * parent-theme-overrides.css
 *
 * Hides the parent theme's default header/footer (#site-header,
 * #site-footer from `hello-elementor`) so they don't render alongside
 * Elementor Theme Builder's custom header/footer.
 *
 * Without this rule, pages that go through Theme Builder show both:
 * Hello Elementor's bare-bones header AND the LEXX custom header,
 * stacked.
 *
 * Historical name: this file was `theme-bandaid.css` until 2026-05-28.
 * Renamed for clarity per ADR-0012 / ADR-0006 §"Handle namespacing".
 * The old filename remains on the server until the ezCache window expires
 * (cached HTML pages still reference the old URL); it will be deleted
 * from the server in a follow-up deploy. See docs/handoffs/.
 *
 * If/when Elementor Theme Builder is confirmed to fully replace the
 * parent theme's chrome on every public path, this whole file can be
 * deleted and its enqueue in inc/enqueue.php removed.
 */

#site-header,
#site-footer {
	display: none !important;
}
