/* Hero Gradient Section - Reusable beige/wheat gradient */
.hero-gradient {
  background: linear-gradient(135deg, #f0eadd 0%, #ffffff 100%);
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.hero-gradient .container {
  text-align: center;
}

.hero-gradient h1 {
  color: #1a1a1a;
}

.hero-gradient p {
  color: #333;
}

/* Custom Property Map Markers */
.custom-property-marker {
  background: none !important;
  border: none !important;
}

.property-marker {
  position: relative;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.property-marker:hover {
  transform: scale(1.1);
}

.marker-icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.marker-icon-circle {
  background: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  border: 2px solid #D4AF37;
}

.marker-favicon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.marker-price {
  background: white;
  color: #333;
  padding: 2px 6px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  border: 1px solid #ddd;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  white-space: nowrap;
  margin-top: 2px;
}

.property-marker:hover .marker-icon-circle {
  border-color: #B8941F;
  transform: scale(1.05);
}

.property-marker:hover .marker-price {
  background: #D4AF37;
  color: white;
  border-color: #D4AF37;
}

/* Map Popup Styles */
.leaflet-popup-content {
  margin: 0 !important;
  padding: 0 !important;
}

.map-popup {
  min-width: 280px;
  max-width: 300px;
}

.map-popup .btn:hover {
  background-color: #B8941F !important;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}