/* variables.css - (colors, spacing, etc.) */
:root {
  /* Colors */
  --primary-green: #236255;
  --secondary-green: #8ed3b7;
  --light-green: #bce8d0;
  --accent-yellow: #98c104;
  --bg-light: #f4f9e7;
  --text-dark: #1a1a1a;
  --text-gray: #666666;
  --white: #f2f2f2;

  /* Typography */
  font-family: "General Sans", sans-serif;
  --font-primary: "General Sans", sans-serif;

  /* Spacing */
  --container-width: 1200px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 18px;

  /* display none */
  --lg-none: none;
  --sm-none: none;
}

/* reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: 2px solid red; */
}

img {
  -webkit-user-drag: none;
  user-select: none;
}

body {
  font-family: var(--font-primary);
  font-family: "General Sans", sans-serif;

  color: var(--text-primary);
  line-height: 1.5;
}
