/* =========================
   Navigation
   ========================= */

.navbar-nav .nav-link,
.navbar-nav .nav-link:visited,
.dropdown-item,
.dropdown-item:visited {
    color: rgb(0, 78, 137);
}

.navbar-nav .nav-link:hover,
.dropdown-item:hover {
    color: #D06644;
}

.navbar {
    padding-top: 0;
    padding-bottom: 0;
    min-height: 64px;
}

.navbar-brand {
    margin-right: 1rem;
}

.navbar-brand img {
    max-height: 64px;
    height: auto;
}

.navbar-nav {
    font-size: 1.25em;
}

.navbar-toggler {
    border-color: rgba(0, 78, 137, 0.4);
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 78, 137, 0.25);
}

.navbar-toggler-icon {
    background-image: var(--bs-navbar-toggler-icon-bg);
}

/* =========================
   CTA Button
   ========================= */

.cta,
.cta:hover {
    background-color: #D06644;
    color: rgb(0, 78, 137) !important;
    font-weight: bold;
    border: solid 4px rgb(0, 78, 137);
}

/* =========================
   Base Layout
   ========================= */

body {
    background-color: #f5f7f6;
}

.container {
    background: white;
}

.row {
    padding-top: 48px;
}

/* =========================
   Hero Title
   ========================= */

.title {
    z-index: 100;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 0px 0px 10px rgba(255,255,255,1.0);
    text-align: center;
}

.title h1 {
    font-size: 2.5em;
    font-weight: bold;
}

@media (max-width: 991.98px) {
    .title {
        top: 50%;
    }

    .title h1 {
        font-size: 1.0em;
        font-weight: normal;
    }
}

/* =========================
   Visual Blocks
   ========================= */

.button {
    background-color: rgba(0, 78, 137, 1.0);
    color: white;
    text-align: center;
    padding: 12px;
    border-top: solid 1px silver;
    border-left: solid 1px silver;
    border-right: solid 1px gray;
    border-bottom: solid 1px gray;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.button p {
    margin-top: 16px;
    font-weight: bold;
    margin-bottom: 0px;
}

.button:hover {
    background-color: rgba(0, 117, 206, 1.0);
    border-top: solid 1px gray;
    border-left: solid 1px gray;
    border-right: solid 1px silver;
    border-bottom: solid 1px silver;
    box-shadow: 0 4px 12px rgba(0, 8, 0, 0.25);
}

.media {
    background-color: rgba(0, 78, 137, 1.0);
    color: white;
    margin-top: 24px;
    padding: 24px;
    border-top: solid 1px silver;
    border-left: solid 1px silver;
    border-right: solid 1px gray;
    border-bottom: solid 1px gray;
    border-radius: 24px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.media:hover {
    background-color: rgba(0, 117, 206, 1.0);
    border-top: solid 1px gray;
    border-left: solid 1px gray;
    border-right: solid 1px silver;
    border-bottom: solid 1px silver;
    box-shadow: 0 6px 16px rgba(0, 8, 0, 0.25);
}

/* =========================
   Link Rules
   ========================= */

/* Default inline links in body copy */
a {
    color: rgb(0, 78, 137);
    text-decoration: none;
}

a:visited {
    color: rgb(0, 78, 137);
    text-decoration: none;
}

a:hover {
    color: #D06644;
    text-decoration: underline;
}

/* Keep links white inside dark visual blocks */
.button a,
.button a:visited,
.button a:hover,
.media a,
.media a:visited,
.media a:hover {
    color: white;
    text-decoration: none;
}

/* =========================
   Header / Footer Shell
   ========================= */

.container-fluid.homenav {
    margin-top: 0px;
    z-index: 100;
    min-height: 64px;
    background: linear-gradient(
        rgba(255, 248, 230, 0.5),
        rgba(255, 248, 230, 0.2)
    );
}

.container.homenav {
    margin-top: 0px;
}

.foot-menu .nav-link {
    display: inline-block;
}

/* =========================
   Icon Colors
   ========================= */

.psl-logo {
    --fa-primary-color: #D06644;
    --fa-secondary-opacity: 1.0;
    --fa-secondary-color: #efefd0;
}

.psl-icon {
    --fa-primary-color: red;
    --fa-secondary-opacity: 1.0;
    --fa-secondary-color: blue;
    padding-top: 18px;
}

/* =========================
   Responsive float spacing
   ========================= */

.float-start,
.float-end {
    margin-left: 0;
    margin-right: 0;
}

@media (min-width: 768px) {
    .float-start {
        margin-right: 12px;
    }

    .float-end {
        margin-left: 12px;
    }
}
