/* Override Bootstrap primary and secondary colors */
:root {
    --bs-primary: #002644;   /* Custom primary color */
    --bs-secondary: #FACE20; /* Custom secondary color */
}

/* Set custom fonts */
:root {
    --bs-font-heading: 'Barlow Condensed', serif;
    --bs-font-body: 'Montserrat', sans-serif;      
}

/* Body */
body {
    background-color: #fff;
}

/* Apply the custom fonts to headers and paragraphs */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--bs-font-heading), serif;  
}

body, p {
    font-family: var(--bs-font-body), sans-serif;  
}

/* Default rounded button appearance */
.btn-rounded {
  border-radius: 50px;
  padding: 10px 20px;
  border: none;
}

.btn-rounded.btn-primary {
    background-color: var(--bs-primary);
    color: #fff;
}

.btn-rounded.btn-primary:hover {
    background-color: var(--bs-secondary);
    color: #000;
}

.feature-icon-small {
  width: 3rem;
  height: 3rem;
}