/** FONTS **/

:root {
  --bs-font-sans-serif: 'Gilmer-Regular', Helvetica, sans-serif;
}

/** COLOURS **/

/* Primary brand background colours */
.bg-cai-vibrant-purple {
  background-color: #6c18eb;
}
.bg-cai-electric-blue {
  background-color: #001aeb;
}

/* Secondary brand background colours */
.bg-cai-deep-navy {
  background-color: #090737;
}
.bg-cai-deep-purple {
  background-color: #391099;
}
.bg-cai-light-purple {
  background-color: #9674ec;
}
.bg-cai-white {
  background-color: #ffffff;
}

/** HOMEPAGE **/

/* Custom CSS for the Jumbotron */
.jumbotron-full-bg {
  background-image: url("/images/bg-jumbotron.jpg");

  /* Full height */
  min-height: 720px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  /* Needed for the overlay */
  position: relative;
}

/* Black overlay for better text readability */
.jumbotron-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2); /* 20% black overlay */
  z-index: 1;
}

/* Position content above the overlay */
.jumbotron-content {
  position: relative;
  z-index: 2;
}

.feature-icon {
  font-size: 3rem;
  color: #001aeb;
}
