/* Custom Style Guide Tokens */
:root {
  --primary-color: #40abe0;     /* Primary Color from Style Guide.ai */
  --secondary-color: #000000;   /* Secondary Color from Style Guide.ai */
  --terciary-color: #ffffff;    /* Terciary Color from Style Guide.ai */
  --highlight-color: #2e82a3;   /* Highlight Color from Style Guide.ai */
  --alert-color: #ffb243;       /* Alert Color from Style Guide.ai */
  --alert-highlight: #e08814;   /* Alert Highlight from Style Guide.ai */
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--secondary-color);
  background-color: var(--terciary-color);
}

/* Custom Animation for Image Carousel */
.carousel-fadeIn {
  animation: fadeIn 0.8s ease-in-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(1.02); }
  to { opacity: 1; transform: scale(1); }
}