/*
 Theme Name:   My Child Theme
 Theme URI:    https://example.com
 Description:  Hello Elementor child theme
 Author:       Author Name
 Template:     hello-elementor
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  my-child
*/

/* ==========================================================================
   Design Tokens (edit these for your project)
   ========================================================================== */

:root {
  /* Colors */
  --color-primary: #333333;
  --color-primary-dark: #1a1a1a;
  --color-accent: #0066cc;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-bg-light: #f5f5f5;

  /* Typography */
  --font-family: system-ui, -apple-system, sans-serif;

  /* Layout */
  --container-max: 1100px;
}

/* ==========================================================================
   Base
   ========================================================================== */

body {
  font-family: var(--font-family);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--color-accent); }
a:hover { color: var(--color-primary-dark); }

/* ==========================================================================
   Components — add your own below
   ========================================================================== */
