
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600&family=Montserrat:wght@300;400;600&display=swap');

:root {
  --bg: #faf9f6;
  --navy: #112233;
  --gold: #c5a880;
  --text: #333333;
  --font-title: 'Cinzel', serif;
  --font-body: 'Montserrat', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 30px; }

/* Navbar */
.nav { background: #fff; border-bottom: 1px solid #eaeae5; }
.nav-container { display: flex; justify-content: space-between; align-items: center; padding: 25px 30px; }
.logo { font-family: var(--font-title); font-size: 1.4rem; color: var(--navy); font-weight: 600; letter-spacing: 2px; }
.logo span { color: var(--gold); font-weight: 400; }
.nav-links { display: flex; gap: 35px; }
.nav-links a { text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px; font-weight: 600; color: #666; transition: color 0.3s; }
.nav-links a:hover { color: var(--gold); }

/* Hero */
.hero { height: 85vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-position: center; background-size: cover; z-index: 1; }
.hero-overlay { position: absolute; inset: 0; background: rgba(17, 34, 51, 0.45); z-index: 2; }
.hero-content { position: relative; z-index: 3; max-width: 800px; padding: 0 20px; }
.hero-content h1 { font-family: var(--font-title); font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 400; letter-spacing: 2px; line-height: 1.1; margin-bottom: 20px; }
.hero-content p { font-size: 1.1rem; font-weight: 300; letter-spacing: 1px; margin-bottom: 40px; }
.btn { display: inline-block; padding: 18px 45px; background: var(--gold); color: #fff; font-family: var(--font-title); text-transform: uppercase; font-size: 0.85rem; letter-spacing: 2px; border: none; cursor: pointer; transition: background 0.3s; }
.btn:hover { background: #b49770; }

/* Listings section */
.featured-listings, .listings-section { padding: 120px 0; }
.featured-listings h2, .listings-section h1 { font-family: var(--font-title); font-size: 2.2rem; color: var(--navy); margin-bottom: 60px; text-align: center; letter-spacing: 2px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; }
.listing-card { background: #fff; border: 1px solid #eaeae5; overflow: hidden; transition: transform 0.3s; }
.listing-card:hover { transform: translateY(-5px); }
.listing-card img { height: 260px; width: 100%; object-fit: cover; }
.listing-card .info { padding: 30px; }
.listing-card h3 { font-family: var(--font-title); font-size: 1.2rem; color: var(--navy); margin-bottom: 10px; }
.listing-card .location { color: #888; font-size: 0.9rem; margin-bottom: 15px; }
.listing-card .price { font-family: var(--font-title); font-size: 1.3rem; color: var(--gold); font-weight: 600; }

/* About split */
.about-hero { padding: 120px 0; }
.split { display: grid; grid-template-columns: 1.2fr 1.8fr; gap: 80px; align-items: center; }
.split .text h1 { font-family: var(--font-title); font-size: 3rem; color: var(--navy); margin-bottom: 10px; }
.split .text .title { color: var(--gold); font-family: var(--font-title); margin-bottom: 30px; letter-spacing: 2px; }
.split .text p { line-height: 1.8; color: #555; margin-bottom: 20px; }

/* Contact Section */
.contact-section { padding: 120px 0; }
.form-container { max-width: 650px; margin: 0 auto; text-align: center; }
.form-container h1 { font-family: var(--font-title); font-size: 2.2rem; color: var(--navy); margin-bottom: 15px; }
.form-container p { color: #888; margin-bottom: 50px; line-height: 1.6; }
.contact-form { display: flex; flex-direction: column; gap: 20px; text-align: left; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 16px; border: 1px solid #eaeae5; background: #fff; font-family: var(--font-body); font-size: 0.95rem; outline: none; }
.contact-form button { margin-top: 15px; width: 100%; }

.footer { background: var(--navy); color: #888; text-align: center; padding: 60px 0; font-size: 0.85rem; letter-spacing: 1px; line-height: 1.6; }

@media (max-width: 768px) {
  .nav-container { flex-direction: column; gap: 20px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
}
  