/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
/* @font-face {
  font-family: "GillRoy";
  src: url("assets/fonts/GillRoy-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "GillRoy";
  src: url("assets/fonts/GillRoy-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

:root {
  --default-font: "GillRoy", sans-serif;
  --heading-font: "GillRoy", sans-serif;
  --nav-font: "GillRoy", sans-serif;
} */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --default-font: "Inter", sans-serif;
    --heading-font: "Inter", sans-serif;
    --nav-font: "Inter", 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: #ffffff;
    /* Background color for the entire website, including individual sections */
    --default-color: #444444;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #012970;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #0015d4;
    /* 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: #012970;
    /* The default color of the main navmenu links */
    --nav-hover-color: #4154f1;
    /* 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: #212529;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #4154f1;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
    --header-height: 84px;
}

:root {
    /* shared radii */
    --radius-xl: 18px;
    /* same as nav-surface */
    --radius-2xl: 24px;
    /* a touch rounder for big elements */

    /* glass look */
    --glass-bg: rgba(255, 255, 255, 0.72);
    --glass-border: rgba(255, 255, 255, 0.55);
    --glass-blur: 14px;

    /* elevation */
    --elev-shadow: 0 10px 30px rgba(20, 21, 56, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
    --elev-shadow-hover: 0 12px 40px rgba(66, 61, 252, 0.12), 0 3px 8px rgba(0, 0, 0, 0.06);
}

/* 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: #f9f9f9;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}