/* Add here all your CSS customizations */
@font-face {
    font-family: "Font Awesome 5 Free";
    src: url("/path/to/fontawesome-webfont.woff2") format("woff2");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "revicons";
    src: url("/path/to/revicons.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Use the fonts with fallback options */
.example-fa {
    font-family: "Font Awesome 5 Free", Arial, sans-serif;
}

.example-revicons {
    font-family: "revicons", "Helvetica Neue", sans-serif;
}

/* css accessibility adjustments */
/* Adjusted colors for contrast compliance */

/* 1. Text color in #layer-984941024 */
#layer-984941024 {
    color: #1a6bb3; /* Darker blue for better contrast */
}

/* 2. Top subtitle color for small text */
.top-sub-title.text-color-primary {
    color: #1a6bb3; /* Darker blue */
}

/* 3. Lead paragraph */
.lead.mb-0 {
    color: #666666; /* Darker gray */
}

/* 4. Button color */
.btn-primary {
    color: #1a6bb3; /* Darker blue for buttons */
}

/* 5. Top subtitle color in lighter background */
.top-sub-title.text-color-primary {
    color: #1a6bb3; /* Darker blue for subtitle */
}

/* 6. General top subtitle and paragraph color */
.top-sub-title, p {
    color: #505050; /* Darker gray */
}

/* 7. Light text on blue background */
.font-weight-light.text-light {
    color: #ffffff; /* Bright white */
}

/* 8. Footer link color */
footer a {
    color: #999999; /* Lighter gray for links */
}

/* 9. Footer text color */
footer p {
    color: #aaaaaa; /* Lighter gray for general text */
}
