/* PNG theme colors - overrides base styles */

:root {
  --theme-primary: #b4191f;
  --theme-primary-light: #FF0000;
  --theme-primary-dark: #8f1c21;
  --theme-header-bg: #FF0000;
  
  /* Legacy variable names for compatibility */
  --theme-color: #FF0000;
  --theme-color-dark: #b4191f;
  --theme-color-darker: #8f1c21;
}

/* Primary theme color for active menu items */
.nav-main .menu-active > a {
  background-color: var(--theme-primary-light) !important;
  color: #FFF;
}
