body {
  font-family: "Plus Jakarta Sans", sans-serif !important;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Navbar */
.navbar {
  min-height: 5.5rem;
  background-color: white;
}

.fa-map {
  color: #fe424d;
  font-size: 2rem;
}

.nav-link {
  color: #222222 !important;
}

@media (max-width: 767.98px) {
  .navbar {
    min-height: auto;
  }

  .navbar-collapse {
    padding: 0.75rem 0 1rem;
  }

  .navbar-nav {
    gap: 0.25rem;
  }

  .nav-search-form {
    width: 100%;
    margin: 0.5rem 0;
  }

  .search-inp {
    padding: 0.3rem 0.8rem;
  }
}

/* Footer */
.f-info-links a {
  text-decoration: none;
  color: #222222;
}

.f-info-links a:hover {
  text-decoration: underline;
}

.f-info-links{
  /* center links within their container */
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.f-info-socials{
  /* center social icons */
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.f-info {
  display: flex;
  flex-direction: column;
  height: 8rem;
  background-color: #ebebeb;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

/* cards */
.listing-card {
  border: none !important;
  margin-bottom: 1.5rem
}

.card-img-top {
  border-radius: 1rem !important;
  width: 100% !important;
  object-fit: cover !important;
}

.card-body {
  padding: 0 !important;
}

.card-text {
  font-weight: 400 !important;
}

.listing-link {
  text-decoration: none !important;
}

/* image overlay */
.card-img-overlay {
  opacity: 0;
}

.card-img-overlay:hover {
  opacity: 0.2;
  background-color: white;
}

/* new page */
.add-btn {
  background-color: #fe424d !important;
  border: none !important;
}

/* edit page */
.edit-btn {
  background-color: #fe424d !important;
  border: none !important;
}

/* show page */
.show-img {
  height: 30vh;
}

.show-btn {
  display: flex;
}

#listing-map {
  height: 320px;
  width: 100%;
  border-radius: 0.75rem;
  margin: 1rem 0 1.5rem;
}
