:root { 

  --color-secondary: #FE5252;
  --color-secondary-light: #FE5252;
  --color-secondary-rgb: 254, 82, 82;
  --background-color: #091121; /* Background color for the entire website, including individual sections */
  --default-color: #f3f6f4; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #e1eff9; /* Color for headings, subheadings and title throughout the website */
  --header-text-color: #e1eff9;
  --header-text-color-span: #279ae4;
  --accent-color: #279ae4; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --accent-color-dark: #279ae4;
  --surface-color: #151d2d; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --scroll-top: var(--accent-color);
  --scroll-top-hover: var(--accent-color-dark);
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #f3f6f4;  /* The default color of the main navmenu links */
  --nav-hover-color: #279ae4; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #0a152a; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #10192b; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #f3f6f4; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #279ae4; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
  --nav-toggle: var(--color-white);
}
