/*
Theme Name: Maya Kilburn
Theme URI: https://thefreewebsiteguys.com
Author: The Free Website Guys
Author URI: https://thefreewebsiteguys.com
Description: Custom WordPress theme built by The Free Website Guys.
Version: 1.1.0
License: GNU General Public License v2 or later
Text Domain: tmt
*/

*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; padding: 0; }

/* -------------------------------------------------------------------------
 * Theme layout tokens
 * ------------------------------------------------------------------------- */
:root {
  --tmt-header-height: 72px;
  --tmt-header-offset: 0px;
}

body.admin-bar {
  --tmt-header-offset: var(--wp-admin--admin-bar--height, 32px);
}

/* WordPress pushes html down via margin-top; reset so the fixed header aligns. */
html {
  margin-top: 0 !important;
  scroll-padding-top: calc(var(--tmt-header-height) + var(--tmt-header-offset));
}

/* Keep admin bar fixed at every breakpoint (WP uses position:absolute ≤600px). */
#wpadminbar {
  position: fixed !important;
}

.tmt-site-header {
  top: var(--tmt-header-offset) !important;
}

.tmt-main-offset {
  padding-top: calc(var(--tmt-header-height) + var(--tmt-header-offset));
}

[id].scroll-mt-header {
  scroll-margin-top: calc(var(--tmt-header-height) + var(--tmt-header-offset));
}

/* Customizer preview iframe also receives admin-bar class when logged in. */
body.customize-preview.admin-bar .tmt-site-header {
  top: var(--tmt-header-offset) !important;
}
