/*
Theme Name: Techtronic Learning
Theme URI: https://techtronic.example.com
Author: Ribal Raza
Author URI: https://github.com/Ribal-Raza
Description: Custom WordPress theme for Techtronic Learning - an online industrial automation training platform specializing in SCADA, TIA Portal, Simatic Step 7, and Arduino courses. Features WooCommerce integration, dark mode design, and accessibility-focused architecture.
Version: 1.1.3
Requires at least: 6.6
Tested up to: 6.6
Requires PHP: 8.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: techtronic
Tags: education, woocommerce, dark-mode, accessibility-ready, custom-menu, featured-images, threaded-comments, translation-ready
*/

/**
 * Minimal CSS Reset to Prevent FOUC
 * Full styles are loaded from assets/css/
 */

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

body {
	min-height: 100vh;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

body.loaded {
	opacity: 1;
}

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}

input,
button,
textarea,
select {
	font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
}
