/* Google Fonts Import - Refined Modern Design */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* Base Body Styles */
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin: 0;
  padding: 0;
}

/* Brand/Logo Styles - Ultra Refined */
header h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: none;
  font-size: 1.75rem;
}

/* Headings - Ultra Refined */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: white;
  margin-top: 0;
  letter-spacing: 1px;
  text-transform: none;
}

/* Big Hero Heading */
h1 {
  font-size: 2.75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
}

/* Secondary Headings */
h2 {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 1px;
}
h3 {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 1px;
}

/* Navigation Links - Clean & Modern */
nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: none;
  font-size: 1rem;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Property Cards */
.property-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s ease-in-out;
}
.property-card:hover {
  transform: translateY(-5px);
}
.property-card img {
  width: 100%;
  height: auto;
  display: block;
}
.property-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: none;
  margin: 10px;
  color: #333;
}
.property-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  margin: 0 10px 10px;
}
.property-card a {
  display: block;
  margin: 0 10px 10px;
  font-weight: 500;
}

/* Paragraphs - Clean and Readable */
p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.7;
}

/* Buttons - Ultra Refined */
button, .btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: none;
  font-size: 1rem;
}
