/*
Theme Name: The Auto Herald
Theme URI: https://theautoherald.com
Author: Advaith Krishnan
Description: Custom automotive consultancy theme for The Auto Herald.
Version: 2.0
License: All Rights Reserved
Text Domain: theautoherald
*/

/* ── Design tokens ── */
:root {
  --bg:          #1250A0;
  --bg-alt:      #1558B0;
  --bg-hi:       #1E66CB;
  --bg-dark:     #0e3d80;
  --bg-card:     rgba(255,255,255,0.10);
  --bg-card-h:   rgba(255,255,255,0.17);
  --border:      rgba(255,255,255,0.16);
  --ink:         #FFFFFF;
  --ink-2:       rgba(255,255,255,0.90);
  --soft:        rgba(255,255,255,0.80);
  --accent:      #C8E6FF;
  --ts-head:     0 2px 12px rgba(0,0,0,0.40), 0 1px 3px rgba(0,0,0,0.28);
  --sh-sm:       0 2px 12px rgba(0,0,0,0.18), 0 1px 4px rgba(0,0,0,0.10);
  --sh-md:       0 8px 32px rgba(0,0,0,0.22), 0 2px 8px rgba(0,0,0,0.12);
  --accent-glow: rgba(130,196,255,0.45);
}

/* ── Global Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Open Sauce One', system-ui, sans-serif;
}
em, i { font-style: normal; }
html  { scroll-behavior: smooth; }
body  {
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
p { color: var(--ink-2); line-height: 1.78; }
a { color: inherit; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }
img { max-width: 100%; height: auto; display: block; }

/* WordPress core classes */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
}
.aligncenter { display: block; margin: 0 auto; }
.alignleft   { float: left; margin: 0 20px 20px 0; }
.alignright  { float: right; margin: 0 0 20px 20px; }
