@font-face {
  font-family: "Akira";
  src: url("../fonts/akira/Akira.otf") format("opentype");
}

/* Charley Font */
@font-face {
  font-family: "Charley";
  src: url("../fonts/charley/Charley.otf") format("opentype");
}

/* Moonget Font */
@font-face {
  font-family: "Moonget";
  src: url("../fonts/moonget/Moonget.otf") format("opentype");
}

/* Gemas Font */
@font-face {
  font-family: "Gemas";
  src: url("../fonts/gemas/Gemas.otf") format("opentype");
}
body {
  color: white;
  background-color:black;
  width: 100vw;
  overflow-x: hidden;
  font-family: "Helvetica";
  display: block;
}
.text-justify {
    text-align:justify!important;
}
.charley {
    font-family: "Charley"!important;
}
.moonget {
    font-family: "Moonget"!important;
}
.gemas {
    font-family: "Gemas"!important;
}
.akira {
    font-family: "Akira"!important;
}
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 1); /* Semi-transparent background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9998; /* Ensure loading spinner is on top */
}

.loading-spinner {
  border: 5px solid #3f3f3f; /* Light gray border */
  border-top: 5px solid #f3f3f3; /* Blue border on top */
  border-radius: 50%;
  width: 100px;
  height: 100px;
  animation: spin 1s linear infinite; /* Rotate animation */
  z-index: 9999;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Akira", sans-serif;
  color: white;
}
p {
    font-family: "Helvetica";
}
.opacify {
  transition: opacity 0.3s ease-in-out; /* Smooth transition for opacity changes */
}
.mobile, .desktop {
  display:none;
}
.outer-container {
  position: fixed; /* Fixed positioning to keep it at the top */
  top: 0;
  left: 0;
  width: 100vw;
  overflow-x: auto;
  display: none;
  z-index: 1; /* Ensure it's below other content initially */
}
.underneath-container {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  width: 100vw;
  min-height: auto;
  position: relative;
  z-index: 2;
  top: 100vh;
  background-color: rgba(0, 0, 0, 0.5); /* Opaque background color */
  backdrop-filter: blur(10px); /* Blurry effect */
}
.main-container {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  width: 200vw;
  height: 100vh;
  max-width: 250vw;
  position: relative;
}

.background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 150%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);;
  background-size: cover;
  background-repeat: no-repeat;
  opacity:0;
  transition:opacity linear .5s;
  z-index: -1;
}
.like {
  transition: all 0.3s ease; /* Smooth transition for all properties */
}

.like:hover {
  font-weight: 900;
  letter-spacing: 0.5px;      /* Increase the spacing between letters */
  cursor:pointer;
}
.timeline {
  cursor:grab;
}
#main {
  height: fit-content;
  margin:auto 0;
  width:100vw;
  display: none;
  justify-content: center;
  align-items: center;
  color: white;
  position: relative;
}
.card-body {
  color:#000;
}
.border-none {
  border:none!important
}
.profile-pic {
  width: 120px; /* Adjust size as needed */
  height: 120px; /* Adjust size as needed */
}
.side-panel {
  background-color: rgba(0, 0, 0, 0.5); /* Opaque background color */
  backdrop-filter: blur(10px); /* Blurry effect */
  padding: 2em;
  height: 100vh;
  width:100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  position: relative;
}
.side-panel-container {
  margin:auto 0;
}
.list-item {
  visibility: hidden;
  color: rgba(255, 255, 255, 0.5); /* Initial color for list items */
  transition: color 0.5s; /* Transition for color change */
}
.list-item.active {
  color: white; /* Color for the active list item */
}
.panel-row::-webkit-scrollbar {
  display: none; /* Hide scrollbar for WebKit browsers (Chrome, Safari) */
}

.panel-row {
  scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.nav:hover::-webkit-scrollbar {
  display: block; /* Show scrollbar when hovered */
}

/* Optional: if you want to show scrollbar when the user scrolls */
.panel-row::-webkit-scrollbar {
  width: 0; /* Make scrollbar width 0 by default */
  height: 0; /* Make scrollbar height 0 by default */
}
.panel-row:focus::-webkit-scrollbar,
.panel-row:hover::-webkit-scrollbar {
  width: 8px; /* Set scrollbar width when focused or hovered */
}

.panel-row::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.7); /* Color of the scrollbar thumb */
  border-radius: 4px; /* Round scrollbar thumb */
}
/* CSS classes to rate the darkness out of 100 */
.bg-darkness-10 { background-color: rgba(0, 0, 0, 0.1); }
.bg-darkness-20 { background-color: rgba(0, 0, 0, 0.2); }
.bg-darkness-30 { background-color: rgba(0, 0, 0, 0.3); }
.bg-darkness-40 { background-color: rgba(0, 0, 0, 0.4); }
.bg-darkness-50 { background-color: rgba(0, 0, 0, 0.5); }
.bg-darkness-60 { background-color: rgba(0, 0, 0, 0.6); }
.bg-darkness-70 { background-color: rgba(0, 0, 0, 0.7); }
.bg-darkness-80 { background-color: rgba(0, 0, 0, 0.8); }
.bg-darkness-90 { background-color: rgba(0, 0, 0, 0.9); }
.bg-darkness-100 { background-color: rgba(0, 0, 0, 1.0); }

.al-bottom {
  align-self:flex-end;
  transition: top 0.5s ease; /* Adjust the duration and easing function as needed */
}
.animation-gray-list {
  position: absolute;
  color: lightgray;
  opacity: 0;
}

.animation {
  vertical-align: middle;
  display: inline-flex; /* Use flexbox */
  margin-top: 0em;
  margin-bottom: 0em;
  height: 1em;
  max-width:89%;
}

.animation-window {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.animation ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  transition: top 300ms;
}

.animation li {
  margin: 0 0em;
  text-align: left;
}
.badge-outline-dark {
  background:transparent;
  border:solid 1px #212529;
  color:#212529!important;
}
.button-container {
  display: none;
  position: fixed;
  justify-content: center;
  width: 100%;
  margin-bottom: 60px;
  bottom: 0;
}
.login-group {
  background:transparent;
  border:none;
  border-radius:0;
  color:#c2c2c2;
  transition: border-bottom 0.3s ease-in-out, color 0.3s ease-in-out;
}
.input-group-text {
  background:transparent;
  color:#c2c2c2
}
.login-input {
  background:transparent;
  border:none;
  border-radius:0;
  color:#c2c2c2;
  border:1px solid #ced4da;
  border-top-right-radius:.25rem;
  border-bottom-right-radius:.25rem;
}
.login-input:focus {
  background:transparent;
  border:1px solid white;
  box-shadow: none;
  color:white!important;
}
.login-group:focus {
  background:transparent;
  box-shadow: none;
  border-bottom:solid 3px #fff;
  color:white!important;
}
a.badge {
  text-decoration:none;
}
.btn-lg {
  font-size:1.75rem;
}
.btn-xl {
  font-size:2.5rem;
}
.button-container button {
  font-family: "Helvetica", sans-serif;
  border-radius: 100px;
  padding-left: 1.5em;
  padding-right: 1.5em;
}
.btn {
  border-radius:100px;
}
.padded {
    padding-left:4rem;
}
.view-btn {
  text-decoration: none; /* Remove default underline */
  color: white; /* Set text color to white */
  background-color: var(--bs-primary); /* Use Bootstrap's primary color */
  padding: 0.25em 0.5em; /* Add some padding for better appearance */
  border-radius: 0.2rem; /* Match Bootstrap's badge border-radius */
  transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition */
}

/* MASONRY LAYOUT */
.grid-item {
  margin-bottom: 20px;
  width:calc(33% - 20px);
}
.grid-item img {
  width: 100%;
  display: block;
  border-radius: 5px;
}
.grid-sizer {
  width: calc(33% - 10px); /* Set the width of grid-sizer to 25% of the container width minus gutter */
}

.modal-content {
  background-color: rgba(210, 210, 210, 0.2); /* Opaque background color */
  backdrop-filter: blur(10px); /* Blurry effect */
}

.btn-close {
  background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat
}
.modal-header {
  border:none;
}
@media (min-width: 1000px) {
  .button-container {
    margin-bottom:60px;
  }
  .padded {
    padding-left:4rem;
  }
}
@media (max-width: 999px) {
    .button-container {
      margin-bottom:150px;
    }
    .padded {
      padding-left:2rem;
    }
  }