.loader {
  z-index: 100000;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: black;
  display: flex;
}
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9); /* White with some transparency */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000; /* Ensure it's above other content */
}
.loading-throbber {

  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.highlighter {
  display: none;
  z-index: -10000;
}
.highlighter.visible {
  display: block;
  z-index: 10000;
  position: absolute;
  top: 0;
  width: 100%;
}
.content.homepage {
  --content-gap: 10px;
  --gradient-height: 600px;
  --max-width: 1600px;
  color: white;
}
.content.homepage > .hero {
  height: calc(100dvh - var(--header-height));
  display: flex;
  flex-direction: column;
  background: url(https://slutforbutt.com/images/portfolio/photo/47%20_Roman%20Image.jpg) no-repeat top center;
  background-size: cover;
}
.content.homepage > .card-section {
  padding: 80px 80px;
}
.content.homepage > .card-section > .card-preview-holder-outer, .content.homepage > .card-section > .card-section-header {
  max-width: var(--max-width);
  margin: 0 auto;
}
.content.homepage > .card-section > .card-section-header {
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}
.content.homepage > .card-section > .card-section-header  h2 {
  font-weight: bold;
  font-size: 250%;
}
.content.homepage > .card-section > .card-section-header  h2 > span {
  letter-spacing: 2px;
}
.content.homepage > .card-section.diary {
  background-color: white;
}
.content.homepage > .card-section.diary > .card-section-header {
  color: black;
}
.content.homepage > .card-section.diary > .card-section-header  h2 > .icon {
  color: rgb(75, 75, 75);
}
.content.homepage > .card-section.exposed {
  background-color: #ed1808;
}
.content.homepage > .card-section.exposed > .card-section-header  h2 > .icon {
  color: #ff928b;
}
.content.homepage > .card-section.alpha {
  background-color: #f9c814;
}
.content.homepage > .card-section.alpha > .card-section-header  h2 > .icon {
  color: #ffe893;
}
.content.homepage > .card-section > .card-section-header {
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.content.homepage > .card-section > .card-section-header  p {
  margin: 0;
}
.content.homepage > .card-section > .card-section-header  h2 {
  display: inline-flex;
  align-items: center;
  margin: 0;
  position: relative;
}
.content.homepage > .card-section > .card-section-header  h2 > .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  color: darkgrey;
  font-size: 80%;
  margin-left: 10px;
}
.content.homepage > .card-section > .card-section-header  h2 > .icon > .fa-solid {
  font-size: 70%;
  margin-left: 5px;
}
.content.homepage > .card-section > .card-section-header  h2:hover .icon {
  visibility: visible;
}
.content.homepage > .card-section > .card-preview-holder-outer {
  position: relative;
}
.content.homepage > .card-section > .card-preview-holder-outer > .gimme-more {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  margin: 10px 0;
  z-index: 10000;
  position: absolute;
  right: 50%;
  transform: translate(50%, 0%);
  width: 100%;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}
.content.homepage > .card-section > .card-preview-holder-outer > .gimme-more > .text {
  padding: 10px 20px;
  font-weight: bold;
  text-transform: lowercase;
  font-size: 110%;
  position: relative;
  top: 0;
  transition: top 0.2s ease-in-out;
}
.content.homepage > .card-section > .card-preview-holder-outer > .gimme-more > .fa-solid {
  position: relative;
  top: 0px;
  transition: top 0.3s ease-in-out;
  animation: bounce 1s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% {
    top: 0px;
  }
  50% {
    top: -5px;
  }
}
.content.homepage > .card-section > .card-preview-holder-outer > .gimme-more:hover > .text {
  top: 5px;
}
.content.homepage > .card-section > .card-preview-holder-outer.see-more > .gimme-more {
  pointer-events: all;
  opacity: 1;
}
.content.homepage > .card-section > .card-preview-holder-outer.complete-load > .card-preview-holder {
  -webkit-mask-image: none;
          mask-image: none;
}
.content.homepage > .card-section > .card-preview-holder-outer.complete-load.see-more > .gimme-more {
  pointer-events: none;
  opacity: 0;
}
.content.homepage > .card-section > .card-preview-holder-outer > .card-preview-holder {
  --content-columns: 4;
  margin-top: 15px;
  overflow: hidden;
  transition: --gradient-height 0.5s ease, height 0.3s ease-in-out;
  display: flex;
  flex-wrap: wrap;
  gap: var(--content-gap);
  align-items: flex-start;
  position: relative;

}
body:not(.month-selected) .content.homepage > .card-section > .card-preview-holder-outer > .card-preview-holder:last-child {
    -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) calc(100% - var(--gradient-height)), rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to bottom, rgb(0, 0, 0) calc(100% - var(--gradient-height)), rgba(0, 0, 0, 0) 100%);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-position: bottom;
          mask-position: bottom;
}
.content.homepage > .card-section > .card-preview-holder-outer > .card-preview-holder > .card {
  flex: 0 0 calc((100% - var(--content-gap) * (var(--content-columns) - 1)) / var(--content-columns));
  outline: 2px solid transparent;
  transition: outline 0.1s ease-in-out, transform 0.25s ease-in-out, box-shadow 0.1s ease-in-out;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}
.content.homepage > .card-section > .card-preview-holder-outer > .card-preview-holder > .card > .context {
  bottom: 0;
  position: absolute;
  color: white;
  width: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  background-color: black;
}
.content.homepage > .card-section > .card-preview-holder-outer > .card-preview-holder > .card > .context > .title {
  font-weight: bold;
  flex: 0 0 100%;
}
.content.homepage > .card-section > .card-preview-holder-outer > .card-preview-holder > .card > .context > .words {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 80%;
}
.content.homepage > .card-section > .card-preview-holder-outer > .card-preview-holder > .card > .context > .words .fa-solid {
  font-size: 80%;
  width: 20px;
  text-align: center;
}
.content.homepage > .card-section > .card-preview-holder-outer > .card-preview-holder > .card > .context > .play {
  background-color: white;
  color: black;
  padding: 10px;
  border-radius: 100px;
  width: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  aspect-ratio: 1;
  transition: transform 0.1s ease-in-out;
}
.content.homepage > .card-section > .card-preview-holder-outer > .card-preview-holder > .card > .context > .play > .fa-play {
  position: relative;
  left: 9%;
}
.content.homepage > .card-section > .card-preview-holder-outer > .card-preview-holder > .card > .context > .play:hover {
  transform: scale(1.1);
}
.content.homepage > .card-section > .card-preview-holder-outer > .card-preview-holder > .card:active > .context > .play {
  transform: scale(0.9);
}
.content.homepage > .card-section > .card-preview-holder-outer > .card-preview-holder > .card.new::after {
  content: "NEW";
  position: absolute;
  top: 0;
  left: 0;
  color: white;
  padding: 5px 10px;
  border-radius: var(--border-radius);
  font-weight: bold;
  margin: 10px;
  font-size: 80%;
  background: linear-gradient(124deg, #ff2400, #e81d1d, #e8b71d, #e3e81d, #1de840, #1ddde8, #2b1de8, #dd00f3, #dd00f3);
  background-size: 1800% 1800%;
  animation: rainbow 8s ease infinite;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.25);
}
.content.homepage > .card-section > .card-preview-holder-outer > .card-preview-holder > .card.available > .context {
  visibility: hidden;
}
.content.homepage > .card-section > .card-preview-holder-outer > .card-preview-holder > .card.available:hover {
  z-index: 1000;
}
.content.homepage > .card-section > .card-preview-holder-outer > .card-preview-holder > .card.available:hover > .preview-background {
  width: 105%;
  height: 105%;
}
.content.homepage > .card-section > .card-preview-holder-outer > .card-preview-holder > .card.available:hover > .context {
  visibility: visible;
}
.content.homepage > .card-section > .card-preview-holder-outer > .card-preview-holder > .card.locked > .context {
  visibility: hidden;
}
.content.homepage > .card-section > .card-preview-holder-outer > .card-preview-holder > .card.locked > .preview-background {
  width: 120%;
  height: 120%;
  filter: blur(8px);
}
.content.homepage > .card-section > .card-preview-holder-outer > .card-preview-holder > .card.locked > .locked-text {
  z-index: 1000;
  background-color: white;
  padding: 8px 12px;
  border-radius: var(--border-radius);
  color: black;
  font-size: 90%;
  font-weight: bold;
  box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.25);
  transition: transform 0.1s ease-in-out;
}
.content.homepage > .card-section > .card-preview-holder-outer > .card-preview-holder > .card.locked:hover > .locked-text {
  transform: scale(1.1);
}
.content.homepage > .card-section > .card-preview-holder-outer > .card-preview-holder > .card.locked:active > .locked-text {
  transform: scale(0.95);
}

@media (max-width: 1080px) {
  .content.homepage {
    --content-gap: 5px;
  }
  .content.homepage > .card-section {
    padding: var(--content-gap);
  }
  .content.homepage > .card-section > .card-section-header {
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 20px 0;
    flex-direction: column;
    gap: 20px;
  }
  .content.homepage > .card-section > .card-section-header > h2 {
    font-size: 200%;
  }
  .content.homepage > .card-section > .card-section-header > h2 > .icon {
    display: none;
  }
  .content.homepage > .card-section > .card-preview-holder-outer > .card-preview-holder {
    --content-columns: 4;
  }
  .content.homepage > .card-section > .card-preview-holder-outer > .card-preview-holder > .card.available:hover > .context {
    visibility: hidden;
  }
}/*# sourceMappingURL=homepage.css.map */

.card-preview-holder {
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
}
.gimme-more .loading-throbber {
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}

.navigator {
    position: relative;
    display: inline-block;
}

#navbymonth {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #f3f3f3;
    border: none;
    padding: 15px 40px 15px 15px;
    font-size: 1.2em;
    color: black;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.2s ease-in-out;
}

#navbymonth:hover {
    background-color: #e9e9e9;
}

.navigator::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    pointer-events: none;
}