/*Fonts (Needs to be cleaned up)*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Homemade+Apple&family=Over+the+Rainbow&family=Playwrite+GB+S:ital,wght@0,100..400;1,100..400&family=UnifrakturMaguntia&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barriecito&family=Handjet:wght@100..900&family=Homemade+Apple&family=Old+Standard+TT:ital,wght@0,400;0,700;1,400&family=Over+the+Rainbow&family=Playwrite+GB+S:ital,wght@0,100..400;1,100..400&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&family=UnifrakturMaguntia&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");

/*Base of bases*/
main {
  top: 0;
  /* padding: 2rem; */
  padding-bottom: 2rem;
}

body {
  /* background-color: rgb(44, 44, 44); */
  background-color: rgb(40, 40, 40);
  color: rgb(255, 255, 255);
  margin: 0;
  font-family: "Source Sans 3", serif;
  font-weight: 400;
  font-style: normal;
}

#backgroundImg {
  z-index: -5;
  width: 100%;
  object-fit: cover;
  position: fixed;
  filter: brightness(25%) saturate(0%);
}

@media (max-width: 700px) {
  #backgroundImg {
    z-index: -5;
    height: 100%;
    width: auto;
    object-fit: cover;
    position: fixed;
    filter: brightness(35%) saturate(0%);
  }
}

/*Links*/
a {
  color: cyan;
}
a:link {
  color: cyan;
}
a:visited {
  color: cyan;
}
a:focus {
  color: rgb(114, 255, 255);
}
a:hover {
  color: rgb(134, 255, 255);
}
a:active {
  color: cyan;
}

#siteNav a {
  color: white;
  text-decoration: none;
}
#siteNav a:link {
  color: white;
  text-decoration: none;
}
#siteNav a:visited {
  color: white;
  text-decoration: none;
}
#siteNav a:focus {
  color: white;
  text-decoration: none;
}
#siteNav a:active {
  color: white;
  text-decoration: none;
}

img {
  outline: rgb(255, 255, 255) solid 3px;
}

/*------------------------ALL NAVBAR RELATED CODE BELOW!!! vvvv----------------------------*/

/*Navbar base*/
.navbar {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  background: rgb(41, 41, 41);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 0 1rem;
}

/*Site Navigation*/
#siteNav {
  box-sizing: border-box;
  height: 7vh;
  display: flex; /* Flexbox for alignment */
  align-items: center; /* Vertically center elements */
  justify-content: center; /* Center elements horizontally */
  background: rgb(28, 28, 28);
}

#siteNav .element {
  display: flex;
  align-items: center;
  padding: 0;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s linear;
  height: 100%;
}

#siteNav .element:hover {
  background-color: rgba(0, 132, 132, 0.893);
  transition: background-color 0.3s linear;
  cursor: pointer;
}

#siteNav #name {
  background-color: #00abb100;
  cursor: pointer;
  margin: 0px;
  margin-right: auto;
  padding: 0;
  outline: none;
}

#siteNav #name img {
  outline: none;
}

#siteNav .element h3 {
  color: white;
}

.dropdown {
  position: relative;
  /* display: flex; */
  align-items: center;
  height: 100%;
  color: white;
  transition: background-color 0.2s linear;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%; /* Position dropdown below the button */
  left: 0;
  background-color: #000000b9;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  min-width: 150px;
  flex-direction: column;
}

.dropdown-content-sub {
  display: none;
  position: absolute;
  top: 0; /* Position dropdown below the button */
  left: 100%;
  background-color: #000000b9;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  min-width: 150px;
  border-radius: 4px;
  flex-direction: column;
}

.dropdown-content h3 {
  color: white;
  text-decoration: none;
  padding: 5px;
  display: flex;
  align-items: center; /* Ensures vertical alignment */
  justify-content: space-between; /* Ensures spacing */
  transition: background-color 0.3s linear;
}

.dropdown-content .fa-caret-right {
  margin-left: auto;
}

.dropdown-content hr {
  padding: 0;
  margin: 0;
}

.dropdown-content a:hover {
  background-color: rgba(0, 132, 132, 0.893);
}

/* Show dropdown content on hover */
.dropdown:hover .dropdown-content {
  display: flex;
}

.dropdown:hover .dropdown-content-sub {
  display: none;
}

.dropdown-sub:hover .dropdown-content-sub {
  display: flex;
}

.dropdown:hover #last {
  display: flex;
  justify-content: flex-end; /* Aligns items to the right */
}
/* Show dropdown content on hover */
.dropdown:hover {
  background-color: rgba(0, 132, 132, 0.893);
}

#siteNav .dropdown .dropdown-content a.active {
  color: rgba(0, 132, 132, 0.893);
}

@media (max-width: 700px) {
  #siteNav i {
    display: none;
  }

  #siteNav .element {
    padding: 0rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

/* #navbar .button:hover a{
    color: white;
} */

/*------------------------ALL NAVBAR RELATED CODE ABOVE!!! ^^^^----------------------------*/

/*Text*/
h1 {
  text-align: left;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
}

h2 {
  text-align: center;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 0;
  /* margin-top: 2rem; */
  /* color: #00fefe; */
}

h3 {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-style: normal;
}

#pageNav h3 {
  font-size: 16px;
  margin-bottom: 0px;
}

#siteNav h3 {
  font-size: 16px;
  margin-bottom: 0px;
}

p {
  text-align: left;
  font-size: 17px;
}

ul {
  text-align: left;
  font-size: 17px;
}

p,
dd {
  /* font-family: "Old Standard TT", serif; */
  color: rgb(255, 255, 255);
  font-size: 17px;
}

/*For larger monitors*/
@media (min-width: 1600px) {
  body {
  }
  h1 {
    font-size: 50px;
  }
  h2 {
    font-size: 40px;
  }
  p,
  dd {
    font-size: 18px;
  }
}

/*Breaks and section dividers*/
hr {
  color: cyan;
  opacity: 100%;
}

.break {
  /* padding: 7vh; */
  z-index: -4;
  display: inline;
}

h1 {
  /* background-color: #00c9cd; */
}

h2 {
  /* color: #00fff7; */
}

footer {
  background: rgb(28, 28, 28);
  margin: 0;
  padding: 2rem;
  padding-top: 2rem;
}

footer p {
  text-align: center;
  margin: 0px;
}
