/*
Theme Name: Anthony Q. Davis
Theme URI: https://thefreewebsiteguys.com
Author: The Free Website Guys
Author URI: https://thefreewebsiteguys.com
Description: A custom WordPress theme made by The Free Website Guys.
Version: 1.1.2
License: GNU General Public License v2 or later
Text Domain: tmt
*/

*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; padding: 0; }

/* Fixed header + WordPress admin bar
   Desktop ≥783px: 32px bar. Tablet/mobile ≤782px: 46px bar.
   ≤600px: keep admin bar fixed (WP defaults to absolute) so the header does not float with a gap. */
.tmt-site-header {
  top: 0;
}

body.admin-bar .tmt-site-header {
  top: var(--wp-admin--admin-bar--height, 32px);
}

@media screen and (max-width: 782px) {
  body.admin-bar .tmt-site-header {
    top: var(--wp-admin--admin-bar--height, 46px);
  }
}

@media screen and (max-width: 600px) {
  body.admin-bar #wpadminbar {
    position: fixed !important;
  }
}
