/*
Theme Name: Vigilante Framework
Theme URI: https://vigilantestudios.com/
Description: A lightweight child theme framework for Hello Elementor.
Author: Vigilante Studios
Author URI: https://vigilantestudios.com/
Template: hello-elementor
Version: 1.0.0
Text Domain: vigilante-framework
*/

/* --------------------------------------------------------------
   Base
-------------------------------------------------------------- */

/* Smooth scrolling for anchor links */
html {
	scroll-behavior: smooth;
}

/* Prevent accidental horizontal scrolling */
body {
	overflow-x: hidden;
}

/* Responsive media */
img,
svg,
video,
iframe {
	max-width: 100%;
	height: auto;
}

/* Better SVG rendering */
svg {
	display: block;
}

/* Smooth hover transitions */
a,
button,
.elementor-button,
img {
	transition: all .3s ease;
}

/* Accessibility */
:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

/* WordPress screen reader text */
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}

/* Form fields inherit site typography */
input,
select,
textarea,
button {
	font: inherit;
}

textarea {
	resize: vertical;
}