/* HEADLINE FONT (Alte Haas Grotesk) */
@font-face {
  font-family: 'Alte Haas Grotesk';
  src: url('../fonts/AlteHaasGrotesk-Regular.ttf') format('truetype');
  font-weight: normal;
}

@font-face {
  font-family: 'Alte Haas Grotesk';
  src: url('../fonts/AlteHaasGrotesk-Bold.ttf') format('truetype');
  font-weight: bold;
}

/* BODY FONT (NB International) */
@font-face {
  font-family: 'NB International';
  src: url('../fonts/NBInternational-Regular.ttf') format('truetype');
  font-weight: normal;
}

@font-face {
  font-family: 'NB International';
  src: url('../fonts/NBInternational-Light.ttf') format('truetype');
  font-weight: 300;
}

/* HEADLINES */
h1, h2, h3, .sitename {
  font-family: 'Alte Haas Grotesk', sans-serif;
}

/* BODY TEXT */
body, p, li {
  font-family: 'NB International', sans-serif;
}

/* Make portfolio detail images uniform */
.portfolio-details .portfolio-details-slider img {
  width: 100%;
  height: 450px; /* adjust height you want */
  object-fit: cover; /* crop nicely & keep ratio */
  object-position: center; /* center the focus */
}

/* 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: #e9f7fe; /* Background color for the entire website, including individual sections */
  --default-color: #5a656e; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #cd2033; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #cd2033; /* 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: #e9f7fe; /* 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: #e9f7fe; /* 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: #5a656e;  /* The default color of the main navmenu links */
  --nav-hover-color: #cd2033; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #e9f7fe; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #e9f7fe; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #5a656e; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #cd2033; /* 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: #e9f7fe;
  --surface-color: #e9f7fe;
}

.dark-background {
  --background-color: #060606;
  --default-color: #e9f7fe;
  --heading-color: #e9f7fe;
  --surface-color: #252525;
  --contrast-color: #e9f7fe;
}
