:root {
  --bs-primary: #8fc243;
  --bs-primary-hover: #7aad36;
  --bs-primary-rgb: 143, 194, 67;
}

.btn-primary {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: var(--bs-primary-hover);
  border-color: var(--bs-primary-hover);
  color: #fff;
}

.btn-outline-primary {
  color: var(--bs-primary);
  border-color: var(--bs-primary);
  background-color: transparent;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
  color: #fff;
  background-color: var(--bs-primary-hover);
  border-color: var(--bs-primary-hover);
}

.text-primary {
  color: var(--primary-color);
}

.custom-fill {
  background-color: var(--bs-primary);
  color: white;
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.ribbon {
  width: 120px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-weight: bold;
  color: white;
  background-color: #8fc243;
  position: absolute;
  top: -15px;
  left: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  font-size: 0.9rem;
  z-index: 10;
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('../img/property-sales-jumbotron.webp') center/cover no-repeat;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 50px;
}

.hero-large {
  height: 80vh;
}

.hero-small {
  height: 50vh;
}

@media (max-width: 768px) {
  .hero {
    height: 90vh;
    background-position: center top;
  }
}

footer a.text-light:hover {
  color: #8fc243;
  transition: color 0.3s ease;
}

footer {
  font-size: 0.95rem;
}

footer .text-muted {
  color: #bbb !important;
}