/* ------------- 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: #005252; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #61E6E6; /* 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: #83ECEC;
    --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: #006666;
  }
  
  /* 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: #006666;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #006666;
    --contrast-color: #ffffff;
  }
  
  .accent-background {
    --background-color: #C2FFFF;
    --default-color: #212529;
    --heading-color: #006666;
    --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(--background-color), transparent 10%);
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    color: var(--accent-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(--heading-color), transparent 80%);
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
    color: var(--background-color);
  }
  
  /*--------------------------------------------------------------
  # Custom Book Card
  --------------------------------------------------------------*/
  .book .card {
    background-color: color-mix(in srgb, var(--accent-color), transparent 75%);
    box-shadow: none;
  }
  
  .book .card .cta-btn {
    color: var(--background-color);
    border: 2px solid color-mix(in srgb, var(--heading-color), transparent 90%);
    background-color: color-mix(in srgb, var(--heading-color), transparent 80%);
  }
  
  .book .card:hover {
    background-color: color-mix(in srgb, var(--accent-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(--heading-color), transparent 90%);
    background-color: color-mix(in srgb, var(--heading-color), transparent 70%);
  }
  
  /*--------------------------------------------------------------
  # Custom Hero
  --------------------------------------------------------------*/
  
  .hero {
    padding: 100px 0 180px 0;
  }