.hero-bg {
  background: url("images/Estate-bg.jpg") center/cover no-repeat;
}

html {
  scroll-behavior: smooth;
}

/* Add margin for fixed header */
section[id] {
  scroll-margin-top: 3rem;
}

/* Product Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
}

.modal-content {
  position: relative;
  background-color: white;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 auto;
  padding: 20px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.close {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  cursor: pointer;
}
