:root {
  /* Palette 3: Green/Red/Cream */
  --primary-color: #337357;    /* Forest Green */
  --secondary-color: #5F6F52;  /* Olive */
  --accent-color: #FB4141;     /* Bright Red (CTA) */
  --light-color: #EAE4D5;      /* Beige */
  --dark-color: #0F1021;       /* Dark Background */
  --highlight-color: #FFEB00;  /* Bright Yellow */
  
  --background-color: #FEFAE0; /* Cream Background */
  --text-color: #4B5563;
  
  --heading-font: 'Oswald', sans-serif;
  --body-font: 'Lato', sans-serif;
  
  --site-container: 1300px;
  --image-width: 380px;
}

body {
  font-family: var(--body-font);
  background-color: var(--background-color);
  color: var(--text-color);
}

h1, h2, h3, .btn {
  font-family: var(--heading-font);
}

.background-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23337357' fill-opacity='1'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}