html {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding-bottom: 0;
}

nav {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  opacity: 1 !important;
}

nav .navbar-brand,
nav .nav-link {
  color: #ffffff !important;
  font-family: 'Syncopate';
}

nav .navbar-brand img {
  height: clamp(.5rem, 3.5vw, 4.5rem) !important;
  width: auto !important;
  display: block;
  object-fit: contain;
}

nav .navbar-brand {
  margin-right: 0.12rem;
}

nav .navbar-nav {
  margin-left: 0;
  gap: 0.18rem;
  transform: translateX(-2px);
}

nav .navbar-nav .nav-link {
  padding-left: 0.4rem;
  padding-right: 0.4rem;
}

.footer {
  position: static;
  left: auto;
  bottom: auto;
  width: 100%;
  font-family: 'Syncopate';
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  color: white;
  text-align: center;
  cursor: default;
  margin-top: auto;
}

#vanta-bg {
  position: fixed;
  top: 0;
  left: 1rem;
  right: 1rem;
  width: auto;
  height: 100%;
  z-index: -1;
  filter: brightness(.3);
  pointer-events: none;
}

body::before,
body::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  width: 1.8px;
  background: #444;
  pointer-events: none;
  z-index: 0;
}

body::before {
  left: 1rem;
}

body::after {
  right: 1rem;
}

.splash {
  font-family: 'Bungee Hairline';
  color: rgb(255, 255, 255);
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 4rem;
  cursor: default;
}

.splash h1 {
  font-size: 60pt;
  font-weight: 300;
}

.splash hr {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}

.btn.btn-dark {
  background-color: transparent !important;
  border: none !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

.btn.btn-dark:focus,
.btn.btn-dark:active {
  box-shadow: none !important;
  outline: none !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fade-in-text-3s {
  animation: fadeIn 3s ease-in-out forwards;
}

.fade-in-text-5s {
  animation: fadeIn 7s ease-in-out forwards;
}

.fade-out-text-3s {
  animation: fadeOut 3s ease-in-out forwards;
}


.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.25) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat;
  background-position: center;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: repeating-linear-gradient(45deg,
      black,
      black 10px,
      #444 10px,
      #444 11px);
  background-attachment: fixed;
}

.login-form {
  background: linear-gradient(167deg, rgba(46, 46, 46, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(5px);
  height: auto;
  width: 30rem;
  border-radius: 10px;
  margin-right: auto;
  margin-left: auto;
}

.login-title {
  color: rgb(255, 255, 255);
  font-family: "Bungee Hairline";
}

.login-hr {
  color: rgb(255, 255, 255);
}

.login-btn {
  color: white;
  background-color: black;
  font-family: "Bungee Hairline";
}

.login-btn:hover {
  color: white;
  background-color: black;
  font-family: "Bungee Hairline";
}

.login-label {
  color: rgb(255, 255, 255);
  font-family: "Bungee Hairline";
  font-size: 14px;
  font-weight: bold;
}

.login-form input {
  filter: brightness(.8);
}

.signup-form {
  background: linear-gradient(167deg, rgba(27, 27, 27, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(5px);
  height: auto;
  width: 50rem;
  padding: 2rem;
  border-radius: 10px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: clamp(2rem, 8vh, 6rem);
}

.signup-title {
  color: rgb(255, 255, 255);
  font-family: "Bungee Hairline";
}

.signup-hr {
  color: rgb(255, 255, 255);
}

.signup-btn {
  color: white;
  background-color: black;
  font-family: "Bungee Hairline";
}

.signup-btn:hover {
  color: white;
  background-color: black;
  font-family: "Bungee Hairline";
}

.signup-label {
  color: rgb(255, 255, 255);
  font-family: "Bungee Hairline";
  font-size: 14px;
  font-weight: bold;
}

.signup-form input,
select {
  filter: brightness(.8);
}

.profile-card {
  background: linear-gradient(167deg, rgba(27, 27, 27, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%);
  backdrop-filter: blur(3px);
  color: white;
}

.profile-card img {
  border-radius: 3px;
}

.accent {
  background-color: #5c2da2;
  color: white;
}

.accent:hover {
  background-color: #310f64;
  color: white;
}

.accent-outline {
  outline: #5c2da2;
}

input[type="checkbox"] {
  accent-color: #5c2da2;
}

/* explicit class for accenting checkboxes where needed */
.accent-checkbox {
  accent-color: #5c2da2;
}

.edit_profile_form input,
select,
textarea {
  filter: brightness(.8);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.25) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat;
  background-position: center;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: repeating-linear-gradient(45deg,
      black,
      black 10px,
      #444 10px,
      #444 11px);
  background-attachment: fixed;
}

.login-form {
  background: linear-gradient(167deg, rgba(46, 46, 46, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(5px);
  height: auto;
  width: 30rem;
  border-radius: 10px;
  margin-right: auto;
  margin-left: auto;
}

.login-title {
  color: rgb(255, 255, 255);
  font-family: "Bungee Hairline";
}

.login-hr {
  color: rgb(255, 255, 255);
}

.login-btn {
  color: white;
  background-color: black;
  font-family: "Bungee Hairline";
}

.login-btn:hover {
  color: white;
  background-color: black;
  font-family: "Bungee Hairline";
}

.login-label {
  color: rgb(255, 255, 255);
  font-family: "Bungee Hairline";
  font-size: 14px;
  font-weight: bold;
}

.login-form input {
  filter: brightness(.8);
}

.signup-form {
  background: linear-gradient(167deg, rgba(27, 27, 27, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(5px);
  height: auto;
  width: 50rem;
  padding: 2rem;
  border-radius: 10px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: clamp(2rem, 8vh, 6rem);
}

.signup-title {
  color: rgb(255, 255, 255);
  font-family: "Bungee Hairline";
}

.signup-hr {
  color: rgb(255, 255, 255);
}

.signup-btn {
  color: white;
  background-color: black;
  font-family: "Bungee Hairline";
}

.signup-btn:hover {
  color: white;
  background-color: black;
  font-family: "Bungee Hairline";
}

.signup-label {
  color: rgb(255, 255, 255);
  font-family: "Bungee Hairline";
  font-size: 14px;
  font-weight: bold;
}

.signup-form input,
select {
  filter: brightness(.8);
}

.profile-card {
  background: linear-gradient(167deg, rgba(27, 27, 27, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%);
  backdrop-filter: blur(3px);
  color: white;
}

.profile-card img {
  border-radius: 3px;
}

.accent {
  background-color: #5c2da2;
  color: white;
}

.accent:hover {
  background-color: #310f64;
  color: white;
}

.accent-outline {
  outline: #5c2da2;
}

input[type="checkbox"] {
  accent-color: #5c2da2;
}

.edit_profile_form input,
select,
textarea {
  filter: brightness(.8);
}

.card-img-top {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: #000;
}

@supports not (aspect-ratio: 4/3) {
  .card-img-top {
    height: 160px;
  }

  @media (min-width: 576px) {
    .card-img-top {
      height: 200px;
    }
  }
}

.nav-dropdown {
  font-family: "Rationale";
  color: white;
  font-size: 16px;
}

.rationale {
  font-family: "Rationale";
}

.syncopate {
  font-family: "syncopate";
}

.modal input,
textarea {
  filter: brightness(.8);
}

/* Muted pagination styling: subtle backgrounds and lighter text */
.pagination .page-link {
  color: #d0d0d0;
  background-color: transparent;
  border-color: rgba(255,255,255,0.06);
}
.pagination .page-link:hover {
  background-color: rgba(255,255,255,0.04);
  color: #ffffff;
}
.pagination .page-item.active .page-link {
  background-color: rgba(255,255,255,0.06) !important;
  color: #f5f5f5 !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.pagination .page-item.disabled .page-link {
  opacity: 0.5;
}

.form-label {
  color: rgb(255, 255, 255);
  font-family: "Bungee Hairline";
  font-size: 14px;
  font-weight: bold;
}

.modal-title {
  color: rgb(255, 255, 255);
  font-family: "Bungee Hairline";
  font-weight: bold;
}

.btn-close {
  color: white;
  background-color: white;
}
