/* ------------- Custumozided Style For NCLEX-PN 
# Make sure to import style-homepages-default.css first
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/

/* 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: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #330099; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ffff33; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --light-accent-color: #ffffad;
  --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. */
  --secondary-color: #8469C9;
}

/* 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: #6141b4;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #6141b4;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #fe9900;
  --default-color: #212529;
  --heading-color: #001973;
  --accent-color: #ffffff;
  --surface-color: #fff;
  --contrast-color: #212529;
}

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

/*--------------------------------------------------------------
# Custom Bonuses Card
--------------------------------------------------------------*/

.bonuses .card {
  background-color: var(--accent-color);
  color: var(--default-color);
}

.bonuses .card h3 {
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
}

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

.bonuses .card .icon {
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.bonuses .card .cta-btn {
  background: color-mix(in srgb, var(--secondary-color), transparent 80%);
  border: 2px solid color-mix(in srgb, var(--secondary-color), transparent 90%);
  color: var(--background-color);
}

.bonuses .card:hover {
  background: var(--light-accent-color);
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.bonuses .card:hover .cta-btn {
  background: color-mix(in srgb, var(--secondary-color), transparent 50%);
  border: 2px solid color-mix(in srgb, var(--secondary-color), transparent 90%);
  color: var(--background-color);
}

/*--------------------------------------------------------------
# Custom Book Card
--------------------------------------------------------------*/
.book .card {
  background-color: color-mix(in srgb, var(--secondary-color), transparent 75%);
  box-shadow: none;
}

.book .card .cta-btn {
  color: var(--background-color);
  border: 2px solid color-mix(in srgb, var(--secondary-color), transparent 90%);
  background-color: color-mix(in srgb, var(--secondary-color), transparent 70%);
}

.book .card:hover {
  background-color: color-mix(in srgb, var(--secondary-color), transparent 85%);
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.book .card:hover .cta-btn {
  color: var(--background-color);
  border: 2px solid color-mix(in srgb, var(--secondary-color), transparent 90%);
  background-color: color-mix(in srgb, var(--secondary-color), transparent 40%);
}

/*--------------------------------------------------------------
# Custom Hero
--------------------------------------------------------------*/

.hero {
  padding: 100px 0 180px 0;
}