/* Custom theme styles for light/dark mode header text colors */

/* Light theme (default) - Header text colors */
body:not(.body_dark) .menu > .nav-item > .nav-link {
    color: #282835 !important;
}

body:not(.body_dark) .navbar_fixed .menu > .nav-item > .nav-link {
    color: #282835 !important;
}

/* Dark theme - Header text colors */
body.body_dark .menu > .nav-item > .nav-link {
    color: #fff !important;
}

body.body_dark .navbar_fixed .menu > .nav-item > .nav-link {
    color: #fff !important;
}

/* Hover states for light theme */
body:not(.body_dark) .menu > .nav-item:hover > .nav-link,
body:not(.body_dark) .menu > .nav-item.active > .nav-link {
    color: var(--brand_color) !important;
}

/* Hover states for dark theme */
body.body_dark .menu > .nav-item:hover > .nav-link,
body.body_dark .menu > .nav-item.active > .nav-link {
    color: var(--brand_color) !important;
}

/* .light-mode {
    color: #000000;
    background-color: #fff;
  }
  .dark-mode {
    color: #fff;
    background-color: #121212;
  } */
  