.logo {
  margin: 5px;
  display: inline-block;
  background: url("/assets/logo_small.png");
  background-size: contain;
  background-repeat: no-repeat;
  height: 40px;
  width: 80px;
}

#full-page-header {
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(50vh - 50px);
  z-index: -1;
}

#full-page-header:before {
  content: "";
  position: absolute;
  max-height: calc( 50vh - 50px );
  height: calc( 50vh - 50px );
  width: 100vw;
  z-index: -1;
  background-image: url("/assets/pamela-saunders-unsplash.jpg");
  background-size: cover;
  background-position: center;
  animation: slow-zoom 120s infinite;
}

@keyframes slow-zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

#full-page-header-content {
  display: flex;
  height: calc(50vh - 50px);
  flex-direction: column;
}

.navbar-placeholder {
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  height: 50px;
  width: 100%;
}

.navbar {
  background-color: white;
  display: flex;
  align-items: center;
  position: fixed;
  font-weight: 700;
  height: 50px;
  z-index: 1000;
  overflow: visible;
}

.dark .navbar-placeholder {
  background-color: #00182f;
}
.dark .navbar {
  background-color: #00182f;
}


.navbody {
  display: flex;
  align-items: center;
}

.navbody > * {
  margin: 5px 10px;
}

.navbody > * {
}

.sticky-navbar { 
  /*box-shadow: rgba(18, 18, 18, 0.05) 0px 10px 25px 0px;*/
}

.navlink {
  
}

.main {
  display: flex;
  flex-direction: column;
  padding-top: 50px;
  min-height: calc(100vh - 50px);
}

.footer {
  display: flex;
  align-items: center;
  font-weight: 400;
  gap: 20px;
  width: 100%;
  height: 50px;
}

.footer-placeholder {
  position: absolute;
  left: 0;
  z-index: -1;
  min-height: 50px;
  min-width: 100%;
}

.container {
  min-height: 100vh;
  padding: 0 15px;
  margin: 0 auto;
  width: 100%;
  max-width: calc(100vw - 40px);
  overflow-x: hidden;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.flex-row {
  display: flex;
  flex-direction: row;
}

@media only screen and (max-width: 991px) {
  .flex-row {
    flex-direction: column;
  }
}

.box-shadow {
  box-shadow:
    0 -6px 12px rgba(0, 0, 0, 0.06),       /* stronger top bleed */
    0 3px 6px rgba(23, 25, 51, 0.08),
    0 16px 32px rgba(23, 25, 51, 0.1);
}

.dark .box-shadow {
  box-shadow:
    0 -6px 12px rgba(255, 255, 255, 0.05), /* stronger top bleed in dark mode */
    0 3px 6px rgba(255, 255, 255, 0.07),
    0 16px 32px rgba(255, 255, 255, 0.1);
}


.pointer {
  cursor: pointer;
}

.disabled {
  color: lightgrey;
}

.error {
  color: red;
  font-size: 14px;
}

.cardGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(410px, auto));
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.hp-title {
  display: flex; 
  justify-content: center;
  margin: 50px 0;
}

.window {
  border-radius: 5px;
  padding: 20px;
  margin: 20px;
}

.grey-text {
  color: #9D9D9D;
}

.dark-grey-text {
  color: black;
}

@media only screen and (max-width: 991px) {
  .hide-mobile {
    display: none;
  }
  .fullwidth-mobile {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
  }
}
.page-content {
  margin-top: 50px;
  padding: 20px;
}