/*----------------------------------------
  Navbar Styling
----------------------------------------*/

.navbar-nav .nav-link {
  font-size: 18px;
  color: #234;
  transition: color 0.2s ease-in-out;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #FB3E7E;
}

.navbar .nav-link:focus,
.navbar .nav-link:hover {
  outline: none;
  box-shadow: none;
  border: none;
}

.navbar .dropdown-menu {
  margin-top: 0;
  transition: all 0.2s ease-in-out;
}

.dropdown-menu.no-border {
  border: none;
  box-shadow: none;
}



/*----------------------------------------
  Card Component
----------------------------------------*/

.card-img-top img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-text {
  flex-grow: 1;
}

/*----------------------------------------
  Buttons
----------------------------------------*/



.log-button .dropdown-menu {
  border: none;
  box-shadow: none;
}

/*----------------------------------------
  Utility / Effects
----------------------------------------*/

.transition-scale {
  transition: transform 0.2s ease-in-out;
}

.transition-scale:hover {
  transform: scale(1.02);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.075);
}

/*----------------------------------------
  Custom Shapes
----------------------------------------*/

.feature-image {
  border-radius: 0 60px 0 60px;
}

/*----------------------------------------
  Misc
----------------------------------------*/

.post-card-link {
  display: block;
}
