/*
 Theme Name:   Corporate Plus Child
 Theme URI:    https://vedcraft.com
 Description:  Child theme for Corporate Plus — Vedcraft homepage redesign
 Author:       Ankur Kumar
 Template:     corporate-plus
 Version:      1.0.0
*/

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

:root{
  --vc-ink:#12151C;
  --vc-paper:#F7F7F4;
  --vc-signal:#2454FF;
  --vc-signal-dark:#173BB8;
  --vc-circuit:#0E9384;
  --vc-wire:#D8D6CC;
  --vc-slate:#5B5F6B;
}

/* Global typography — verify these selectors against your theme in browser
   dev tools first; Underscores-based themes usually use these, but Corporate
   Plus may have renamed a few. Adjust as needed rather than pasting blind. */
body{
  font-family:'Inter', -apple-system, sans-serif;
  color:var(--vc-ink);
  background:var(--vc-paper);
}
h1, h2, h3, h4,
.entry-title, .widget-title, .site-title{
  font-family:'Space Grotesk', sans-serif;
  font-weight:600;
  letter-spacing:-0.01em;
}
a{ color:var(--vc-signal); }
a:hover{ color:var(--vc-signal-dark); }

.btn, .button, input[type="submit"]{
  background:var(--vc-ink);
  border-radius:6px;
  font-weight:500;
  border:none;
}
.btn:hover, .button:hover{ background:var(--vc-signal); }
