/* Minimal base stylesheet — replaces the old theme's style.css + color-2.css.
   Only the :root custom properties (read via var(...) throughout
   src/components/sections/home2/) and a couple of base rules survive; every
   component here is self-contained (inline styles / scoped <style> blocks),
   so there's no page-wide theme framework to maintain. */

:root {
  /* Warm gold accent — used by the lead-capture popup (LeadPopup.tsx) against
     its dark modal background; needs to stay light enough for #111 text on top. */
  --theme-color: #D4AF6A;
  --text-color: rgba(32, 31, 27, 0.75);
  --title-color: #201f1b;
  --text-font: 'Satoshi', sans-serif;
  --title-font: 'Outfit', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--text-color);
  font-family: var(--text-font);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}
