/* css/styles.css – Clean, modern, minimal */
:root {
  --primary: #1a2a44;
  --accent: #d4af37;
  --text: #f5f5f5;
  --bg: #0f1a2e;
  --gray: #a0a0a0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

header {
  height: 100vh;
  min-height: 700px;
  background: linear-gradient(rgba(15, 26, 46, 0.75), rgba(15, 26, 46, 0.9)),
              url('https://images.pexels.com/photos/235721/pexels-photo-235721.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
}

.logo-container {
  margin-bottom: 2rem;
}

.logo {
  max-width: 320px;
  height: auto;
  border-radius: 8px;
  border: 2px solid var(--accent);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
  background: rgba(26, 42, 68, 0.3);
}

header h1 {
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

header p {
  font-size: 1.25rem;
  max-width: 600px;
  color: var(--gray);
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  text-decoration: none;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--accent);
  color: var(--primary);
}

main {
  padding: 6rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

h2 {
  font-size: 2.4rem;
  text-align: center;
  color: var(--accent);
  font-weight: 300;
  margin-bottom: 3rem;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2.5rem;
}

.property-card {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.property-card:hover {
  transform: translateY(-8px);
}

.property-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.property-info {
  padding: 1.8rem;
  text-align: center;
}

.property-info h3 {
  font-size: 1.7rem;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.property-info p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.more-properties {
  text-align: center;
  margin-top: 4rem;
}

.contact {
  text-align: center;
}

.contact p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.contact a {
  color: var(--accent);
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--primary);
  color: var(--gray);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .logo { max-width: 280px; }
  header h1 { font-size: 2.4rem; }
  header p { font-size: 1.1rem; }
  main { padding: 4rem 1rem; }
}
