/*
Theme Name: Good Guy Mobile Mechanic
Theme URI: https://thefreewebsiteguys.com
Author: The Free Website Guys
Author URI: https://thefreewebsiteguys.com
Description: WordPress theme generated from the Good Guy Mobile Mechanic project.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: tmt
*/

*, *::before, *::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
}

/*
 * Barra de administración: los elementos `position: fixed` ignoran el
 * margin-top que WordPress aplica a html, por eso el nav queda tapado.
 */
body.admin-bar #tmt-app > div > header {
	top: var(--wp-admin--admin-bar--height, 32px);
}

/*
 * Hero: en móvil el padding superior debe compensar también la barra de admin
 * cuando el nav ya está desplazado hacia abajo.
 */
@media screen and (max-width: 767px) {
	body.admin-bar #tmt-app .hero-content {
		padding-top: calc(5rem + var(--wp-admin--admin-bar--height, 32px));
	}
}
