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

.container {
  flex: 1;
}

/* navbar */

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

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

.nav-link {
  color: #222 !important;
}
/* =========================
   SEARCH BAR CONTAINER
========================= */
.search-bar {
  background: #ffffff;
  border-radius: 50px;
  padding: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(26, 188, 156, 0.3);
  transition: all 0.3s ease;
}

/* =========================
   INPUT FIELD
========================= */
.search-input {
  border: none;
  outline: none;
  padding: 10px 16px;
  width: 220px;
  border-radius: 50px;
  font-size: 15px;
  color: #333;
  background: transparent;
}

.search-input::placeholder {
  color: #999;
}

/* =========================
   SEARCH BUTTON
========================= */
.search-btn {
  background: #1abc9c;
  border: none;
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.search-btn i {
  font-size: 16px;
}

/* HOVER */
.search-btn:hover {
  background: #17a589;
}

/* =========================
   FOCUS EFFECT
========================= */
.search-bar:focus-within {
  box-shadow: 0 10px 30px rgba(26, 188, 156, 0.35);
  border-color: #1abc9c;
}

/* =========================
   TABLET RESPONSIVE
========================= */
@media (max-width: 992px) {
  .search-input {
    width: 180px;
  }
}

/* =========================
   MOBILE / NAVBAR COLLAPSE
   (Bootstrap toggle menu)
========================= */
@media (max-width: 768px) {
  /* When inside collapsed navbar */
  .navbar-collapse .search-bar {
    width: 100%;
    padding: 8px;
    margin-top: 12px;
  }

  .navbar-collapse .search-input {
    width: 100%;
    font-size: 14px;
  }

  .navbar-collapse .search-btn {
    width: 40px;
    height: 40px;
  }
}

/* Footer */

.f-info-links a {
  text-decoration: none;
  color: #222;
}

.f-info-links a:hover {
  text-decoration: underline;
  color: #1abc9c;
}
.f-info-links,
.f-info-socials,
.f-info-brand {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.f-info-socials i {
  font-size: 1.2rem;
  margin-right: 1rem;
}

.f-info {
  text-align: center;
  height: 8rem;
  background-color: #ebebeb;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: space-evenly;
}

/* Cards */

.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 p {
  font-weight: 400 !important;
}

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

/* Card effect */

.card-img-overlay {
  opacity: 0;
}

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

/* New page */

.add-btn {
  background-color: #1abc9c !important ;
  border: none !important;
}

.add-btn:hover {
  background-color: #222 !important ;
  border: none !important;
}

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

.edit-btn:hover {
  background-color: #222 !important ;
  border: none !important;
}

/* show page */

.show-img {
  height: 30vh;
}

.btns {
  display: flex;
}

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

/*footer */

.fa-linkedin {
  color: #0a66c2;
}

.fa-github {
  color: #181717;
}

.fa-x-twitter {
  color: #000000;
}

.review-card {
  border: 2px solid gray !important;
  height: fit-content !important;
}

@media screen and (max-width: 800px) {
  .review-card {
    display: flex !important;
    flex-flow: column !important;
    width: 100% !important; /* important: override col-5 */
  }
}

/* =========================
   FILTERS WRAPPER
========================= */
.filters-wrapper {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 0;
  position: relative;
}

/* =========================
   SCROLL ARROWS
========================= */
.scroll-arrow {
  width: 42px;
  height: 42px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.scroll-arrow i {
  font-size: 14px;
  color: #444;
}

.scroll-arrow:hover {
  background: #1abc9c;
  border-color: #1abc9c;
}

.scroll-arrow:hover i {
  color: #fff;
}

/* =========================
   FILTER LIST
========================= */
#filters {
  display: flex;
  gap: 1.8rem;
  flex: 1;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 12px 16px;
  white-space: nowrap;
  scrollbar-width: none;
}

#filters::-webkit-scrollbar {
  display: none;
}

/* =========================
   FILTER ITEM
========================= */
.filter {
  min-width: 72px;
  text-align: center;
  font-size: 13px;
  color: #555;
  opacity: 0.75;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

/* ICON */
.filter .icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px;
  font-size: 18px;
  background: #fff;
  transition: all 0.25s ease;
}

/* HOVER */
.filter:hover {
  opacity: 1;
}

.filter:hover .icon {
  transform: translateY(-6px);
  border-color: #1abc9c;
  color: #1abc9c;
}

/* ACTIVE */
.filter.active {
  opacity: 1;
  color: #1abc9c;
  font-weight: 500;
}

.filter.active .icon {
  background: #1abc9c;
  color: #ffffff;
  border-color: #1abc9c;
  box-shadow: 0 8px 20px rgba(26, 188, 156, 0.35);
}

/* =========================
   TAX TOGGLE
========================= */
#tax-toggle {
  padding: 12px 18px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  white-space: nowrap;
}

.form-check-label {
  font-size: 14px;
  color: #444;
}

.form-check-input:checked {
  background-color: #1abc9c;
  border-color: #1abc9c;
}

/* =========================
   HIDDEN TAX TEXT
========================= */
.taxes {
  display: none;
}

/* =========================
   MOBILE RESPONSIVENESS
========================= */
@media (max-width: 768px) {
  .filters-wrapper {
    flex-wrap: wrap;
    row-gap: 12px;
  }

  .scroll-arrow {
    width: 36px;
    height: 36px;
    order: 0;
  }

  #filters {
    order: 1;
    width: 100%;
  }

  .filter {
    min-width: 64px;
  }

  /* TAX TOGGLE ON NEXT LINE */
  #tax-toggle {
    order: 2;
    width: 100%;
    padding: 10px 14px;
    font-size: 13px;
    display: flex;
    justify-content: center;
    border-radius: 999px;
    background: #f9f9f9;
  }
}

/* map */
#map {
  width: 100%;
  max-width: 900px;
  height: 400px;
  margin: auto;
}

@media (max-width: 768px) {
  #map {
    height: 300px;
  }
}
