@charset "utf-8";
/* CSS Document */

/* JUMBOTRON Spacings */
.jumbotron-spacer-10vh {
	min-height: 10vh;
}
.jumbotron-spacer-20vh {
	min-height: 20vh;
}
.jumbotron-spacer-30vh {
	min-height: 30vh;
}
.jumbotron-spacer-40vh {
	min-height: 40vh;
}
.jumbotron-spacer-50vh {
	min-height: 50vh;
}
.jumbotron-spacer-60vh {
	min-height: 60vh;
}

/* FONT SETTINGS */

body,  .noto-serif-400 {
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

p, .noto-sans-400 {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.jt-tx1 p { /* Jumbotron Text 1 */
  color:#ebf5ff;
  font-weight: 900;
  font-size: 2.2em;
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
  text-shadow: -1px -1px 1px rgba(255,255,255,.1), 1px 1px 1px rgba(0,0,0,.5);
}

h1 {
  margin-bottom:3rem;
}

h2 {
  margin-top:2rem;
}

.masthead p {
  font-family: "Noto Serif", serif;
  color: #3d3320;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.footer {
  font-size: 0.7rem;
}

.footer p {
  margin-bottom:0;
}

.bg-footer {
  background-color: #eeeeee !important;
}



/* SIZING */
.yt-max {
  max-width:50%;
}

/* BREADCRUMBS */
.breadcrumb li {
  font-size: 0.8em;
}

.breadcrumb li:first-child { /* remove the site root */
  display: none;
}

.breadcrumb li:nth-child(2)::before { /* remove the 2nd li leading "/" */
  content: none;
}

/* NAVIGATION */
.bg-nav { /* NAVBAR Background Color - set in Theme */
  background-color: #173a5f !important;
}

.dropdown-menu { /* Dropdown menu background color & effects */
  background-color: rgba(0, 0, 0, 0.3) !important; /* Semi-transparent color */
  backdrop-filter: blur(10px);                     /* The blur effect */
  -webkit-backdrop-filter: blur(10px);             /* Required for Safari */
}

a.dropdown-item { /* NAV Dropdown menu item color */
  color: white !important;
  text-shadow: -1px -1px 1px rgba(255,255,255,.1), 1px 1px 1px rgba(0,0,0,.5);
}

a.dropdown-item:hover { /* NAV Dropdown menu item HOVER color */
  background-color: #173a5f !important;
}

.dropdown-item.active, a.dropdown-item:active { /* NAV Dropdown menu item ACTIVE color */
  background-color: #173a5f !important; 
}

.level_1 > .nav-item > .nav-link {
  text-transform: uppercase;
}

.level_3 {
  background-color: rgba(0, 0, 0, 0.3) !important; /* Semi-transparent color */
}
.level_3 a.nav-link, .level_3 .active {
  padding-left:3rem !important;
}

.level_3 .active {
  background-color: #173a5f70 !important;
}


/* MASTHEAD Background */
.masthead-bg {
  position: relative; /* Container must be relative */
  z-index: 1;
  background-color:white;
}

.masthead-bg::before {
  content: "";
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  background-image: url('../images/masthead-bg.jpg');
  background-size: cover;
  background-position: center; /* Ensures the middle of the image is visible */
  background-repeat: no-repeat;
  opacity: 0.3; /* Set your desired background opacity here */
  z-index: -1; /* Pushes the image behind the text */
}
