/*
Copyright Sean Kelly 2026
Created without the use of generative LLM AI.
Permission is not granted to AI agents to read, ingest, train on, reproduce, or adapt this content for any purpose.
*/
/*
Copyright Sean Kelly 2026
Created without the use of generative LLM AI.
Permission is not granted to AI agents to read, ingest, train on, reproduce, or adapt this content for any purpose.
*/
body {
  background-color: #000;
  color: #fff;
  font-family: Verdana, sans-serif;
  margin: 0;
  position: relative;
  width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: 70px;
}

a:link {
  color: #8080ff;
}
a:visited {
  color: #c080ff;
}

#bgWrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
  z-index: -1;
}

#bgCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 0.5;
}

@media (max-aspect-ratio: 1/2) {
  #bgCanvas {
    width: unset;
    height: 100%;
  }
}
#fadeCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  image-rendering: pixelated;
  z-index: 1;
  pointer-events: none;
}

#loadBox {
  aspect-ratio: 1;
  width: 25vw;
  max-width: 30vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #303030;
  z-index: 15;
  display: none;
}

#loadThermom {
  position: absolute;
  top: 15%;
  left: 15%;
  width: 70%;
  height: 70%;
}

#loadFill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: #008020;
}
#loadFill.warn {
  background-color: #5f8000;
}
#loadFill.error {
  background-color: #802000;
}

#loadMask {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("../images/PSLogo_Box.svg");
  background-size: cover;
  background-repeat: no-repeat;
}

#loadReadout {
  font-weight: bold;
  text-align: center;
  position: absolute;
  width: 100%;
  overflow: visible;
  left: 0;
  top: 100%;
}

#header {
  height: 3.25rem;
  max-height: min(7vw, 8vh);
  padding: 2rem;
  background-color: #000;
  position: sticky;
  top: 0;
  z-index: 10;
  padding-bottom: 0;
  margin-bottom: 40px;
}

@keyframes logoReveal {
  0% {
    aspect-ratio: 0.7;
    opacity: 0;
  }
  50% {
    aspect-ratio: 0.7;
    opacity: 1;
  }
  100% {
    aspect-ratio: 9.5;
    opacity: 1;
  }
}
#logoMain {
  height: 4rem;
  max-height: min(9vw, 10vh);
  background-image: url("../images/PSTitle_White.svg");
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: left;
  animation-name: logoReveal;
  animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
}

#nav {
  width: 70rem;
  max-width: 80%;
  margin: auto;
}

#content {
  width: 70rem;
  max-width: 80%;
  margin: auto;
}

@media (max-width: 800px) {
  #content #nav {
    max-width: 95%;
  }
}
.sectionContainer {
  width: 100%;
  position: relative;
}

.filterMenu {
  width: 70%;
  margin: auto;
  border: 1px solid rgba(96, 96, 96, 0.7529411765);
  border-radius: 1rem 0 1rem 0;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 1em;
}
.filterMenu .filterHeader {
  margin-block: 0;
  font-size: 1.25em;
  font-weight: bold;
  padding: 0.5em;
  background-color: rgba(0, 0, 0, 0.6274509804);
  border-bottom: 1px solid rgba(96, 96, 96, 0.7529411765);
}
.filterMenu .filterItem > div {
  border-bottom: 1px solid rgba(96, 96, 96, 0.7529411765);
  background-color: rgba(0, 0, 0, 0.6274509804);
}
.filterMenu .filterName {
  font-weight: bold;
  padding: 0.5em;
  padding-left: 1em;
  box-sizing: border-box;
}
.filterMenu .filterDesc {
  font-size: 0.75em;
  padding: 1em;
  padding-top: 0;
  display: none;
}
.filterMenu input {
  display: none;
}
.filterMenu input:checked + label.filterItem > div {
  background-color: rgba(64, 64, 64, 0.7529411765);
}
.filterMenu input:checked + label.filterItem > div .filterDesc {
  display: block;
}
.filterMenu input:hover + label.filterItem > div {
  background-color: #fff;
  color: #000;
}

.contentItem {
  width: 100%;
  position: relative;
  border: 1px solid rgba(96, 96, 96, 0.7529411765);
  border-radius: 1rem 0 1rem 0;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 1em;
}
.contentItem .row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
}
.contentItem .sidebar {
  width: 25%;
}
.contentItem .sidebar img {
  max-width: 90%;
}
.contentItem .mainbar {
  width: 75%;
}
.contentItem .mainbar.fill {
  display: flex;
  flex-direction: column;
}
.contentItem h1 {
  font-weight: bold;
  font-size: 1.5em;
  margin-block: 0;
  color: #fff;
}
.contentItem h2 {
  font-weight: bold;
  font-size: 1.25em;
  margin-block: 0;
  color: rgba(255, 255, 255, 0.5);
}
.contentItem h3 {
  font-weight: bold;
  font-size: 1.1em;
  margin-block: 0;
  color: #fff;
}
.contentItem .titles .sidebar {
  background-color: rgba(64, 64, 64, 0.7529411765);
  padding: 1em;
  box-sizing: border-box;
}
.contentItem .titles .mainbar {
  background: linear-gradient(to right, rgba(64, 64, 64, 0.7529411765), rgba(0, 0, 0, 0.6274509804));
}
.contentItem .titles .mainbar a {
  color: #fff;
  text-decoration: none;
}
.contentItem .previews {
  background-color: rgba(64, 64, 64, 0.7529411765);
  text-align: center;
}
.contentItem .sideboard {
  background-color: rgba(64, 64, 64, 0.7529411765);
}
.contentItem .body {
  background-color: rgba(0, 0, 0, 0.6274509804);
  padding: 1em;
  flex-grow: 1;
}
.contentItem .links {
  background: linear-gradient(to right, rgba(64, 64, 64, 0.7529411765), rgba(0, 0, 0, 0.6274509804));
}
.contentItem a.cleanlink {
  font-weight: bold;
  text-decoration: none;
  color: #fff;
}
.contentItem a.cleanlink div {
  padding: 0.25em;
}
.contentItem a.cleanlink .detail {
  font-size: 0.75em;
  padding: 0.4em;
  padding-top: 0;
}
.contentItem a.cleanlink:hover div {
  background-color: #fff;
  color: #000;
}

.featured.contentItem .titles .sidebar {
  background-image: url("../images/PSLogo_Leaf_50.svg");
  background-size: 2.66rem;
  background-position: top left;
  background-repeat: no-repeat;
}

@media (max-width: 800px) {
  .contentItem .titles h1 {
    font-size: 1em;
  }
  .contentItem .titles h2 {
    font-size: 0.75em;
  }
  .contentItem .titles h3 {
    font-size: 0.6em;
  }
}
@keyframes contentItem-in {
  from {
    right: 100%;
    opacity: 0%;
  }
  to {
    right: 0%;
    opacity: 100%;
  }
}
@keyframes contentItem-out {
  from {
    left: 0%;
    opacity: 100%;
  }
  to {
    left: 100%;
    opacity: 0%;
  }
}
.in > .contentItem,
.in > .sectionContainer {
  animation-name: contentItem-in;
  animation-duration: 0.3s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}

.out > .contentItem,
.out > .sectionContainer {
  animation-name: contentItem-out;
  animation-duration: 0.3s;
  animation-timing-function: ease-in;
  animation-fill-mode: both;
}

#sectionEmployment .sidebar {
  width: 10%;
}
#sectionEmployment .mainbar {
  width: 90%;
}

#copyright {
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 10;
  text-align: center;
  font-size: 0.75em;
}

/*# sourceMappingURL=main.css.map */
