/* Real Estate Styles */
:root {
  --primary-color: #d4af37; /* Gold */
  --secondary-color: #b8972e;
  --text-main: #1f2937;
  --text-muted: #6b7280;
  --bg-main: #ffffff;
  --bg-dark: #111827;
  --font-family: 'Prompt', sans-serif;
  --header-font: 'Cinzel', serif;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
}

.navbar {
  padding: 1.5rem 0;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--header-font);
  font-size: 2rem;
  color: white;
  letter-spacing: 3px;
}

.logo span {
  color: var(--primary-color);
}

.nav-links a {
  margin-left: 2rem;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  letter-spacing: 1px;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links .btn-outline {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.nav-links .btn-outline:hover {
  background: var(--primary-color);
  color: white;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 1rem 2.5rem;
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(17, 24, 39, 0.7) 0%, rgba(17, 24, 39, 0.4) 100%);
  z-index: -1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5rem;
}

.subtitle {
  font-family: var(--header-font);
  color: var(--primary-color);
  letter-spacing: 5px;
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-family: var(--header-font);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.hero-content p:not(.subtitle) {
  font-size: 1.125rem;
  max-width: 700px;
  font-weight: 300;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.concept-section {
  background-color: #f9fafb;
}

.concept-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.concept-text h2 {
  font-family: var(--header-font);
  font-size: 2.5rem;
  color: var(--bg-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.concept-text p {
  color: var(--text-muted);
  font-weight: 300;
}

.features-list {
  list-style: none;
}

.features-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.features-list li::before {
  content: '❖';
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.concept-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-box {
  background: white;
  padding: 2.5rem 1.5rem;
  text-align: center;
  border: 1px solid #e5e7eb;
  transition: var(--transition);
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.stat-box.highlight {
  background: var(--bg-dark);
  color: white;
  border-color: var(--bg-dark);
}

.stat-box.highlight h3 {
  color: var(--primary-color);
}

.stat-box h3 {
  font-family: var(--header-font);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--bg-dark);
}

.stat-box p {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.stat-box.highlight p {
  color: #9ca3af;
}

@media (max-width: 992px) {
  .concept-grid {
    grid-template-columns: 1fr;
  }
}
