
/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  /* Layout Variables */
  --header-height-desktop: 125px;
  --header-height-tablet: 100px;
  --header-height-mobile: 90px;

  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #3c4049; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #112344; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #175cdd; /* 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: #ffffff; /* 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. */
}

/* 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: #3c4049;  /* The default color of the main navmenu links */
  --nav-hover-color: #175cdd; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #3c4049; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #175cdd; /* 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: #f4f8ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #021418;
...

/*--------------------------------------------------------------
# Header Fixes
--------------------------------------------------------------*/
.header {
  background-color: #ffffff !important;
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

/* Prevent content from being hidden behind the fixed header */
html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  padding-top: var(--header-height-desktop) !important;
}

@media (max-width: 1199px) {
  body {
    padding-top: var(--header-height-tablet) !important;
  }
}

@media (max-width: 576px) {
  body {
    padding-top: var(--header-height-mobile) !important;
  }
}

/*--------------------------------------------------------------
# Counter Glass (White Color Theme)
--------------------------------------------------------------*/
.counter-glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);