/*
Theme Name: CMPRO Car Care
Description: Custom WordPress Theme for Premium Car Care
Author: Antigravity
Version: 1.0.0
Text Domain: cmprocarcare
*/

/* 
 * The theme uses component-level styling (inline <style> tags within template-parts).
 * Global resets, CSS variables, and typography definitions can go here.
 */

:root {
  --color-electric-blue: #00B8FF; /* Legacy */
  --color-accent-red: #E30613;
  --color-accent-red-hover: #C40010;
  --color-success: #16A34A;
  
  --color-background: #FFFFFF;
  --color-surface: #F8F9FA;
  --color-surface-alt: #F3F4F6;
  
  --color-on-background: #111111;
  --color-on-surface: #555555;
  --color-border: #E5E7EB;
  
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --grid-margin-desktop: 80px;
  --grid-margin-mobile: 24px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-background);
  color: var(--color-on-background);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  margin: 0;
}

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

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

* {
  box-sizing: border-box;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}
