/*
Theme Name: Anza Driving School Custom Theme
Author: Web Design Consultant
Description: Modern, minimalist, high-converting theme built with the Deep Blue, Electric Blue, and Dynamic Orange framework.
Version: 1.0.0
License: GNU General Public License v2 or later
*/

:root {
    /* Color Palette Rules */
    --deep-blue: #0B1F3A;      /* Primary Base / Trust Barriers */
    --electric-blue: #29B6FF;  /* Interactive Highlights / Accent */
    --dynamic-orange: #FF7A1A; /* Call To Action / Conversions */
    --neutral-light: #F8F9FA;   /* Backgrounds */
    --text-dark: #1C2833;      /* High Readability Body Text */
    
    /* Typography */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

/* Primary Conversion CTA */
.btn-cta-orange {
    background-color: var(--dynamic-orange);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease-in-out;
    display: inline-block;
}

.btn-cta-orange:hover {
    background-color: #E0650F; /* Slightly deeper for tactile hover effect */
}
