/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Source Sans Pro",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #f5f7f8; /* Background color for the entire website, including individual sections */
  --default-color: #0e0503; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #e69500; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #732817;
  --accent-color2: #af381d; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #f5f7f8; /* 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: #f5f7f8; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --contrast-color2: #013339;
}

/* 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: #732817; /*#898E94;*/  /* The default color of the main navmenu links */
  --nav-hover-color: #e09405; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #f5f7f8; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #f5f7f8; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #898E94; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #F29F05; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #eef0f2;
  --surface-color: #f5f7f8;
}

.dark-background {
  --background-color: #898E94;
  --default-color: #f5f7f8;
  --heading-color: #F29F05;
  --surface-color: #3c3f42;
  --contrast-color: #f5f7f8;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}
