/* ------------- Custumozided Style For Journeyman Electrician 
# Make sure to import style-homepages-default.css first  
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
  
/* Page 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: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #001973; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0099ff; /* 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. */
}

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

.dark-background {
  --background-color: #0e1d34;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #19335c;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #0099ff;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #85ceff;
  --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# Custom Classess
--------------------------------------------------------------*/

.hero {
  background-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  padding: 100px 0 180px 0;
}

.bonuses .card .cta-btn,
.book .card .cta-btn {
  background: var(--accent-color);
  border: 0;
}

.bonuses .card:hover,
.book .card:hover {
  background: var(--accent-color);
}

.bonuses .card:hover h3,
.book .card:hover h3 {
  color: color-mix(in srgb, var(--background-color), transparent 20%);
}

.bonuses .card:hover .cta-btn,
.book .card:hover .cta-btn {
  background: color-mix(in srgb, var(--background-color), transparent 0%);
  color: var(--accent-color);
  border: 0;
}

.bonuses .card:hover .icon,
.book .card:hover .icon {
  color: color-mix(in srgb, var(--background-color), transparent 10%);
}

.bonuses .card:hover p,
.book .card:hover p {
  color: color-mix(in srgb, var(--background-color), transparent 10%);
}