:root {
    --paragraph-size: 16px;
    /* --step-circle-width: 40pt; */

    /* Basic Text */
    --body-fg: #012030;
    --body-bg: #FFFFFF;

    /* ENVRI colors */
    --primary1: #0099cc;
    --primary2: #FF9900;
    --secondary1: #ccffff;
    --secondary2: #99ff99;

    /* font colors */
    --default-text: #012030;

    /* Highlighted Text, Cards, Input Fields, etc */
    --secondary-fg: #012030;
    --secondary-bg: #F4F8FB;
    --secondary-border: 2pt solid var(--secondary-fg);
    --secondary-border-radius: 5pt;

    /* Buttons, etc */
    --primary-fg: #FFFFFF;
    --primary-bg: #012030;

    /* Navigation, Footer */
    --header-bg: #FFFFFF;
    --header-fg: #012030;
    --footer-bg: #E9F6FF;
    --footer-fg: #012030;

    --placeholder-fg: #7d7d7d !important;

    /* bullet point symbol replacement */
    --icon-height: 40px;
}


html {
    font-size: 16px; /* Default browser value */
}

body, p {
    font-family: 'Inter Tight Light', sans-serif;
    text-align: justify;
    font-size: 1.1rem;
}

b, strong {
    font-family: 'Inter Tight SemiBold', sans-serif;
}


/******************************
 * Navigation
 ******************************/

.navbar {
    background-color: var(--header-bg);
    margin-bottom: 0pt;
}

.nav-item a {
    font-family: 'Inter Tight SemiBold', sans-serif;
    font-size: 22px;
    color: var(--header-fg) !important;
    margin-right: 20px;
    text-align: left;
    justify: left;
}



/* Ensure the parent dropdown items look correct */
.dropdown-menu {
    padding: 0;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}


/* Submenu items */
.dropdown-subitem {
    position: relative;
    padding-left: 1.5rem;  /* Space for the arrow */
    list-style: none;
}

/* Small right arrow before subitems */
.dropdown-subitem::before {
    content: "▸";
    color: #666;
    font-size: 12px;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
}

.dropdown-subitem a {
    display: block;
    padding: 0.5rem 0.5rem;
    color: #212529;
    text-decoration: none;
    transition: background-color 0.2s ease-in-out;
}
.dropdown-subitem a:hover,
.dropdown-subitem a:focus {
    background-color: #e9ecef;
    text-decoration: none;
}



/******************************
 * Footer
 ******************************/

footer {
    background-color: var(--footer-bg);
    color: var(--footer-fg);
    margin-top: 50px;
    padding-top: 50pt;
    padding-bottom: 0pt;
    font-size: 18pt;
}



/* p { */
/*     font-family: 'Inter Tight Light', sans-serif; */
/*     font-size: var(--paragraph-size) !important; */
/*     text-align: justify; */
/* } */


h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	margin: 0;
	text-rendering: optimizeLegibility;
}


h1 {
    font-family: "Inter Tight ExtraBold" !important;
    position: relative;
    display: inline-block;
    font-size: 3rem;
    line-height: 1;
    z-index: 1;
    text-align: center !important;
    margin-bottom: 20px;
}

h1::before {
    content: "";
    position: absolute;
    left: -10px;
    right: -10px;
    bottom: 0.40rem;
    height: 0.60rem;
    background-color: var(--secondary2);
    z-index: -1;
}

h2 {
    font-family: "Inter Tight SemiBold" !important;
    position: relative;
    font-size: 2.5rem;
    line-height: 1;
    z-index: 1;
    text-align: center;
    padding: 0 10px;
    width: max-content; /* Prevents stretching */
    /* margin: 20px auto; */
    margin-top: 60px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

h2::before {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0.3rem;
    height: 0.4rem;
    background-color: var(--primary2);
    z-index: -1;
}


h3 {
    font-family: "Inter Tight SemiBold" !important;
    font-size: 2rem;
    text-align: center !important;
    margin-top: 50px !important;
    margin-bottom: 20px;
}

h4 {
    font-family: "Inter Tight Regular" !important;
    font-size: 2rem;
    text-align: center !important;
    margin-top: 50px !important;
    margin-bottom: 20px;
}

h5 {
    font-family: "Inter Tight SemiBold" !important;
    font-size: 1.1rem;
    /* margin-top: 50px !important; */
    margin-bottom: 10px;
}


.page-title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.content-container {
    margin-top: 1.1rem;
}


/* Breadcrumb container */
.breadcrumb-content {
    font-family: Arial, sans-serif;
    font-size: 14px;
}

/* Breadcrumb list */
.breadcrumb {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0;
    margin: 0;
}

/* Breadcrumb links */
.breadcrumb li {
    display: inline;
}

.breadcrumb li a {
    text-decoration: none;
    color: #76a6c8;
    transition: color 0.3s ease;
}

.breadcrumb li a:hover {
    color: #0055aa;
}

/* Breadcrumb separator */
.breadcrumb li::after {
    content: "›";
    color: #666;
    margin: 0 5px;
}

/* Remove separator from last item */
.breadcrumb li:last-child::after {
    content: "";
}

/* Active breadcrumb (current page) */
.breadcrumb li.active {
    color: #AAAAAA;
    font-weight: bold;
}



/* Download button */
.download-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: fit-content;
    width: auto;
    padding: 0 20px;
    white-space: nowrap;
    height: 40px;
    border-radius: 50px;
    border: 2px solid var(--secondary2);
    background: var(--secondary2);
    /* background: #fff; */
    /* color: var(--secondary2); */
    color: black;
    font-weight: bold;
    text-align: center;
    overflow: hidden;
    transition: background-color 0.5s, color 0.5s;
    text-decoration: none !important;
}

.download-btn:hover {
    background-color: var(--primary2);
    border: 2px solid var(--primary2);
    /* color: #fff; */
    color: black;
}

.download-btn .icon {
    position: absolute;
    top: 50%;
    left: 5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    /* background: var(--secondary2); */
    background: white;
    /* color: #fff; */
    color: var(--secondary2);
    border-radius: 50%;
    transition: 0.5s;
    transform: translateY(-50%);
}

.download-btn:hover .icon {
    left: 100%;
    margin-left: -40px;
    background-color: #fff;
    color: var(--primary2);
}

.download-btn .text {
    display: inline-block;
    transition: opacity 0.3s;
    white-space: nowrap;
    padding-left: 20px;
}

.download-btn .hover-text {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    opacity: 0;
    white-space: nowrap;
    transition: opacity 0.3s;
}

.download-btn:hover .text {
    opacity: 0;
}

.download-btn:hover .hover-text {
    opacity: 1;
    padding-right: 25px;
}

.center-container {
    display: flex;
    justify-content: center;
}


/* ================================================================================ */
/* hyperlinks in wagtail richtext blocks and <li> */
/* ================================================================================ */
p[data-block-key] a, li[data-block-key] a {
    font-family: "Inter Tight Bold" !important;
    font-size: 1.1rem;
    text-decoration: none !important;
    color: var(--primary2);
}


p[data-block-key] a::after, li[data-block-key] a::after {
    /* content: "🔗"; */
    /* margin-left: 5px; */
    /* text-decoration: none !important; */
    font-family: "Font Awesome 6 Free";
    font-size: 1.1rem;
    font-weight: 900;
    content: "\f35d";
    margin-left: 5px;
}


/* ================================================================================ */
/* cta button */
/* ================================================================================ */
 a.cta-button {
   display: inline-block;
   background-color: var(--secondary2);
   color: var(--default-text);
   font-family: "Inter Tight SemiBold" !important;
   font-size: 1.4rem;
   text-align: center;
   padding: 15px 25px;
   border-radius: 10px;
   position: relative;
   text-decoration: none;
   white-space: nowrap;
   min-width: fit-content;
 }

 a.cta-button::before {
   content: "";
   position: absolute;
   top: 10px;
   left: 10px;
   right: 10px;
   bottom: 10px;
   border: 1px solid #cccccc;
}

a.cta-button:hover {
    background-color: var(--primary2);
}



/* ================================================================================ */
/* replacements for standard bullet list symbol */
/* ================================================================================ */
.custom-bullet {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    list-style: none;
    margin-top: 15px;
}

.list-icon {
    height: var(--icon-height);
    width: auto;
    flex-shrink: 0;
}


ol li {
    margin-bottom: 1em;  /* Adjust the space between list items */
}


/* ================================================================================ */
/* Services */
/* ================================================================================ */
 .gradient {
   background-color: var(--primary1);
   background-image: linear-gradient(to bottom right, var(--primary1), #007ca6);
   color: white;
 }

 .titlediv {
   border: 2px solid #E6E6E6 !important;
   border-radius: 16px !important;
   box-shadow: 0px 0px 24px 0px #0000001A;
   position: relative;
   z-index: 2;
 }
 
 .bodydiv {
   margin-left: 20px;
   margin-right: 20px;
   background-color: var(--primary1);
   border-bottom-left-radius: 16px;
   border-bottom-right-radius: 16px;
   box-shadow: 0px 0px 24px 0px #0000001A;
   position: relative;
   z-index: 1;
   clip-path: inset(-0px -50px -50px -50px);
 }

 .provider-button {
   background-color: white;
 }
 .services-button {
   background-color: transparent;
   color: white;
   border: 1px solid white;
 }
 .request-form-button {
   background-color: transparent;
   color: var(--default-text);
   border: 1px solid #007ca6;
 }
 

/* ================================================================================ */
/* Accessibility */
/* ================================================================================ */
 .skip-link {
    position: absolute;
    top: -30px;
}

.skip-link:focus-visible {
    top: 5px;
}
