/*
Theme Name: Technical School
Theme URI: https://example.com/technical-school-theme
Author: Your Institution
Author URI: https://example.com
Description: A modern, professional, responsive WordPress theme built for technical schools and colleges. Includes a hero slider, notice ticker, custom Course/Notice/Download post types, a principal's message section, and a fully manageable WordPress dashboard.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: technical-school
Tags: education, e-learning, custom-menu, featured-images, threaded-comments, translation-ready, responsive-layout, sticky-post

Technical School is a custom WordPress theme built from scratch for technical/vocational schools and colleges.
*/

/* -----------------------------------------------------------
   Base reset (kept minimal here; full styles live in
   assets/css/main.css and assets/css/responsive.css, which
   are enqueued via functions.php so WordPress can manage
   dependency ordering/versioning properly).
----------------------------------------------------------- */

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: #1f2937;
	background: #ffffff;
	line-height: 1.6;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

button {
	font-family: inherit;
	cursor: pointer;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.skip-link {
	position: absolute;
	top: -100px;
	left: 0;
	background: #0b3d91;
	color: #fff;
	padding: 12px 20px;
	z-index: 100000;
	transition: top 0.2s ease-in-out;
}

.skip-link:focus {
	top: 0;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
