/* assets/styles/styles.css */

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Open Sans", "Noto Sans", "Trebuchet MS", "Helvetica Neue", Arial, sans-serif;
    color: #1d1d1d;
}

.content-container {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.site-header .content-container {
    background-color: #fff;
    padding: 0px;
}

.site-footer .content-container {
    background-color: #004789;
    padding: 5px;
}

.site-header {
    background-color: #fff;
    border-top: 5px solid #004789;
    border-bottom: 5px solid #906a22;
    padding: 15px 0; /* Adjust vertical padding as needed */
    position: relative; /* For positioning the extra bar */
}

.site-header-extra-bar {
    background-color: #c99d54; /* Replace with your desired color */
    height: 25px;
    /* Ensure width matches content container and is centered */
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.site-header .header-inner {
    display: flex; /* Enable flexbox for alignment within the content container */
    align-items: center; /* Vertically align items in the center */
    max-width: 1000px; /* Match the main content container's max-width */
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px; /* Add some left padding for alignment with main content */
    padding-right: 15px; /* Add some right padding for alignment with main content */
    color: #004789; /* Set text color for header items */
}

.site-header .header-inner img.logo {
    margin-right: 30px; /* Add 30px space to the right of the logo */
}

.site-header .header-inner h1 {
    font-size: 2.0em; /* Default larger size for larger screens */
    margin: 0; /* Remove default heading margins */
}

.site-footer {
    background-color: #004789;
    border-top: 5px solid #a2acbd;
    box-shadow: 0 50vh 0 50vh #004789;
    min-height: 130px;
}

#main-content .content-container {
    display: flex;
    flex-direction: column;
}

.breadcrumbs-menu-container {
    width: 100%;
    /* background-color: #a2acbd; */
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breadcrumbs-old {
    /* Hiding for now */
    display: none;
}

#flexContainer {
    display: flex;
    flex-grow: 1;
    align-items: flex-start;
}

#navMenu {
    background-color: #1c74bc;
    padding: 0px;
    box-sizing: border-box;
    flex-shrink: 0;
    flex-basis: 24%;
    font-size: 16px;
    font-weight: 800;
    border: 5px solid #1c74bc;
    border-right-width: 0;
}

#navMenu ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    background-color: #1c74bc;
}

#navMenu ul li {
    display: block;
    border-bottom: 1px solid #a2acbd;
}

#navMenu ul li:first-child {
    border-top: 1px solid transparent;
}

#navMenu ul li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

#navMenu ul li.current-page {
    background-color: #ffffff;
}

/* Style the anchor tag to take up the full li */
#navMenu ul li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 16px 48px;
    box-sizing: border-box;
    text-decoration: none; /* Remove default underline */
    color: #ffffff; /* Inherit text color from li */
}

/* Style the list item on hover */
#navMenu ul li:hover {
    background-color: #ffffff; /* Background white */
}

/* Style the anchor tag on hover for text underline and yellow color */
#navMenu ul li:hover a {
    text-decoration: underline; /* Underline text on li hover */
    color: #1c74bc;
}

#navMenu ul li.current-page a {
    color: #1c74bc;
    text-decoration: none;
}

#navMenu ul li.current-page a:hover {
    text-decoration: underline;
}

.main-content-area {
    background-color: #ffffff;
    flex-grow: 1;
    /* top, left and right, bottom */
    padding: 0px 20px 20px;
}

.content-padding {
    padding: 5px;
    padding-bottom: 75px;
}

.menu-button {
    background-color: #a2acbd;
    padding: 10px;
    cursor: pointer;
    display: none;
    border: 1px solid #222;
    text-align: center;
}

.menu ul {
    list-style-type: none;
    padding: 0;
}

.menu a {
    text-decoration: none;
    color: #333;
}

.copyright {
    color: #ffffff;
}

.contact-information {
    text-decoration: underline;
    font-weight: 500; /* A semi-bold weight */
}

@media (max-width: 600px) {
    #main-content .content-container {
        display: block;
    }

    #navMenu {
        display: none;
        width: 100%;
    }

    .menu-button {
        display: block;
    }

    #flexContainer {
        display: block;
    }

    h1 {
        font-size: 1.5em; /* Even smaller size for phones */
    }

    h2 {
        font-size: 1.2em; /* Even smaller size for phones */
    }
}

/* Media query for screens with a maximum width of 768 pixels (typical for tablets) */
@media (max-width: 768px) {
    h1 {
        font-size: 2.0em; /* Smaller size for tablets */
    }

    h2 {
        font-size: 1.5em; /* Smaller size for tablets */
    }
}

h2 {
    font-size: 1.5em; /* Default larger size for larger screens */
    color: #906a22;
}