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

.container {
  flex: 1;
}

/* Navbar */

  :root {
    --brand-red: #fe424d;
    --border-light: #ddd;
  }

  /* --- General Navbar Styles --- */
  .navbar {
    height: 80px;
  }

  .navbar-brand .title {
    color: var(--brand-red)  !important;
    font-size: 2rem;
  }

  /* --- Main Search Bar Styles --- */
  .search-input {
    border-radius: 25px 0 0 25px !important;
    border: 1px solid var(--border-light);
    height: 40px !important;
  }

  .search-input:focus {
    box-shadow: none !important;
    border-color: var(--brand-red) !important;
  }

  .search-btn {
    background-color: var(--brand-red) !important;
    color: white  !important;
    border-radius: 0 25px 25px 0 !important;
    border: none;
    padding: 0 1.25rem  !important;
  }

  /* --- Responsive Styles for the Collapsed Menu --- */
  @media (max-width: 767.98px) {
    .navbar-nav.mx-auto {
      padding-top: 1rem;
      padding-bottom: 1rem;
    }
    .search-input{
      width: 250px !important;
    }
  }

  @media (min-width: 996px) {
    .search-input{
      width: 450px !important;
    }
  }

    /* @media (min-width: 700px) {
    .search-input{
      width: 350px !important;
    } */
  /* } */

    /* @media (min-width: 1000px) {
    .search-input{
      width: 700px !important;
    } */
  /* } */

.navbar {
  height: 5rem;
  background-color: white;
}

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

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

.btn-opacity {
  background-color: #fe424d !important;
  color: white !important;
  border-radius: 1rem !important;
  padding: 0.5rem 1rem !important;
  margin-left: 0.5rem !important;
}

.btn-opacity:hover {
  background-color: #fe424d !important;
  color: white !important;
  opacity: 0.8 !important;
}

/* Filter Section */

#filters {
  display: flex;
  flex-wrap: wrap;
}

.filter {
  text-align: center;
  margin-right: 2rem;
  margin-left: 2rem;
  margin-top: 2rem;
  opacity: 0.7;
}
.filter:hover {
  opacity: 1;
  cursor: pointer;
}

.filter p {
  font-size: 0.8rem;
}

.tax-info{
  display: none;
}

.tax-toggle{
  border:1px solid black;
  border-radius: 1rem;
  height: 3.5rem;
  width: 16rem;
  margin-top: 2rem;
  padding: 1rem;
}

/* Footer */
/* Footer container */
.f-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center; /* better than space-evenly here */
  text-align: center;
  height: 8rem;
  background-color: #ebebeb;
  padding: 1rem;
}

/* Footer links */
.f-info-links {
  width: 100%;
}

.f-info-links a {
  text-decoration: none;
  color: #222222;
  margin: 0 0.5rem;
  transition: color 0.3s ease-in-out;
}

.f-info-links a:hover {
  text-decoration: underline;
  color: #0077b5; /* LinkedIn blue as hover example */
}

/* Social icons */
.f-info-socials {
  width: 100%;
  font-size: 1.5rem;
  padding-top: 0.75rem;
}

.f-info-socials i {
  margin: 0 1rem;
  cursor: pointer;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.f-info-socials i:hover {
  transform: scale(1.25);
  color: #0077b5; /* example hover color */
}

/* Brand section */
.f-info-brand {
  width: 100%;
  margin-top: 0.5rem;
  font-weight: 500;
}

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

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

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

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

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

/* Card Effect */
.card-img-overlay {
  opacity: 0;
}
.card-img-overlay:hover {
  opacity: 0.2;
  background-color: white;
}

.add-btn,
.edit-btn {
  background-color: #fe424d !important;
  color: white !important;
  border: none !important;
}

/* Show Page */
.show-img {
  height: 30vh !important;
}

.btns {
  display: flex;
}
.show-card {
  padding-left: 0;
  padding-right: 0;
}

/* Map */
#map {
  height: 400px;
  width: 100%; 
  border-radius: 10px;
}

/* Custom Input Focus State for Forms */
.form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(254, 66, 77, 0.25) !important;
  border-color: var(--brand-red) !important;
}