/*
Theme Name: Car Rental Pro Theme
Description: A lightweight, SEO-first Full Site Editing (block) theme built for a car-rental agency's commercial website. Designed to pair with the Car Rental Pro plugin (vehicle catalog, booking form, and vehicle spec shortcodes). No external fonts, no page-builder, no JavaScript framework — core WordPress blocks only, styled through theme.json so the client can edit colors, typography, and layout from the Site Editor.
Version: 1.0.0
Requires at least: 6.4
Requires PHP: 8.0
Author: Your Agency
Text Domain: car-rental-theme
*/

/* Nearly all visual design lives in theme.json (colors, typography, spacing,
   radii) so the client can edit it from the Site Editor without touching
   code. Only the handful of rules below — things theme.json has no field
   for — live here. */

/* Border-box everywhere avoids width/padding surprises for a non-technical
   editor resizing columns and groups in the editor. */
*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Visible keyboard focus in the theme's accent color. WordPress core
   supplies a default outline; this only re-colors it to match the brand
   and keeps a comfortable offset for readability. Never removed/hidden. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.wp-block-button__link:focus-visible {
	outline: 3px solid var(--wp--preset--color--accent);
	outline-offset: 2px;
}

/* Images and the plugin's vehicle-card thumbnails should never overflow
   their container regardless of the source image's native size. */
img {
	max-width: 100%;
	height: auto;
}
