/**
* Template Name: CT BASE - v5.3.3
* Base Template URL: https://bootstrapmade.com/hidayah-free-simple-html-template-for-corporate/
* Author: Heinz-Josef Colley
* Datum: 15.02.2026
* License: https://bootstrapmade.com/license/
*/
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
/* 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: "Nunito",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
  --nav-logo-font: "Inter",  sans-serif;
  --ct-font: "CT Script",  sans-serif;
}

:root { 
  --background-color: #070708; /* Background color for the entire website, including individual sections */
  /*--default-color: rgba(255, 255, 255, 0.8); /* Default color used for the majority of the text content across the entire website */
  --default-color: #ffffff; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ffffff; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #428bca; /* 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: #1f1f23; /* 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. */
  --error-color: #ed2f0d;
  --success-color: rgb(3, 136, 25);
  --ct-theme-gradient: linear-gradient(320deg, rgb(117, 63, 1) 0%, rgb(188, 102, 3) 10%, rgb(247, 245, 243) 100%);
}

/* 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: rgba(255, 255, 255, 0.8);  /* The default color of the main navmenu links */
  --nav-hover-color: #428bca; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #1f1f23; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #1f1f23; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: rgba(255, 255, 255, 0.8); /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #428bca; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

:root{
  --ct-gray-100: #f8f9fa;
  --ct-gray-200: #e9ecef;
  --ct-gray-300: #dee2e6;
  --ct-gray-400: #ced4da;
  --ct-gray-500: #adb5bd;
  --ct-gray-600: #6c757d;
  --ct-gray-700: #495057;
  --ct-gray-800: #343a40;
  --ct-gray-900: #212529;
}

/* 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: #1d1d1e;
  --surface-color: #37373e;
}

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


