:root {
  --navbar-height: 96px;
}

body,
html {
  height: 100%;
  margin: 0;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

.base-content {
  padding-top: var(--navbar-height);
  flex: 1;
}

/* FLUID CONTAINER */

.container-fluid {
  padding-left: 2em;
  padding-right: 2em;
}

.row {
  row-gap: 2em;
}

.container-fluid-image {
  max-width: 100%;
  width: 300px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* GLOBAL NAVBAR */
.navbar-toggler {
  z-index: 1000;
  margin-right: 20px;
  border: none;
}

.navbar-logo {
  height: 70px;
  margin-right: 0.5em;
  max-width: 70px;
}

.navbar-custom {
  background-color: #6098ba;
}

.nav-item .btn {
  color: white;
  border: solid 2px transparent;
  border-radius: 50px;
  padding: 0.5rem 1rem;
  margin: 0.5em 0.5em;
  flex-shrink: 1;
}

.nav-item .active {
  border: solid 2px white;
}

.nav-item .btn:hover {
  color: white;
  background-color: #8eb9ce;
}

.navbar-nav {
  margin-right: 40px; /* right margin spacing */
  flex-wrap: nowrap;
  display: flex;
  .nav-link,
  .nav-link.active {
    color: white;
    font-weight: 700;
  }
}

.navbar-brand {
  margin-left: 1em; /* left margin spacing */
  font-family: 'Coolvetica', sans-serif;
}

.navbar-brand-text {
  @media (max-width: 338px) {
    display: none;
  }
}

.navbar-toggler-icon {
  filter: invert(100%);
}

.navbar-toggler {
  box-shadow: none;
}

@media (max-width: 992px) {
  .navbar-nav {
    margin-right: 40px;
    margin-left: 40px;
  }

  .navbar-nav .nav-link {
    padding: 0.35rem 0.5rem;
    font-size: 0.85rem;
  }

  .navbar-brand {
    font-size: 1rem;
  }
}

/* SCROLL TO TOP BUTTON */

.scroll-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  display: none;
  text-align: center;
  color: #fff;
  text-decoration: none;
  background: rgba(90, 92, 105, 0.5);
  line-height: 46px;
  cursor: pointer;
  z-index: 1000;

  align-items: center;
  justify-content: center;
}

.scroll-to-top:focus,
.scroll-to-top:hover {
  color: white;
}

.scroll-to-top:hover {
  background: #5a5c69;
}

.scroll-to-top i {
  font-weight: 600;
}

/* GLOBAL FOOTER */
#footer {
  background-color: #533a29;
  color: white;
  height: 120px;
}

.sticky-footer {
  padding: 20px 0;
  position: relative;
  bottom: 0;
  width: 100%;
}

.sticky-footer .fa-brands {
  font-size: 40px;
  margin: 10px;
  color: white;
  text-decoration: none; /* remove underlines from icons */
}

.sticky-footer .fa-brands:hover {
  color: #d1d1d1; /* hover color */
}

.copyright {
  margin-top: 10px; /* copyright margin - TODO FIX THIS */
}
