@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --brand-red: #991b1b;
    --brand-gold: #d97706;
    --bg-dark: #0c0a09;
    --bg-light: #fafaf9;
    --text-dark: #1c1917;
    --text-light: #fafaf9;
    --text-muted: #78716c;
    --surface: #ffffff;
    --border: #e7e5e4;
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    background-color: var(--bg-dark);
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.8);
}

.btn {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--brand-red);
    color: white;
}

.btn-primary:hover {
    background-color: #7f1d1d;
    transform: translateY(-3px);
}

/* About Section */
.about {
    padding: 120px 0;
    background-color: white;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.section-header span {
    color: var(--brand-red);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.8rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-top: 1rem;
}

/* Property Grid */
.properties {
    padding: 100px 0;
    background-color: #f5f5f4;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.property-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.4s;
}

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

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

.property-info {
    padding: 2rem;
}

.property-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.property-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.property-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-weight: 600;
    color: var(--brand-red);
}

/* Why Section */
.why {
    padding: 120px 0;
    display: flex;
    align-items: center;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.feature-item {
    margin-bottom: 2rem;
}

.feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--brand-gold);
}

/* Footer */
footer {
    padding: 80px 0;
    background-color: var(--bg-dark);
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: white;
}

@media (max-width: 1024px) {
    .property-grid { grid-template-columns: 1fr 1fr; }
    .why-content { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .property-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Navigation */
.nav-wrap { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 1.5rem 0; 
    position: absolute; 
    top: 0; 
    left: 50%; 
    transform: translateX(-50%); 
    width: 100%; 
    z-index: 100; 
    color: white; 
}

.links { 
    display: flex; 
    list-style: none; 
    gap: 2.5rem; 
}

.links a { 
    color: white; 
    text-decoration: none; 
    font-weight: 500; 
    font-size: 0.9rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

.brand { 
    font-family: 'Playfair Display', serif; 
    font-size: 1.5rem; 
    font-weight: 700; 
}

.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: 0.3s;
}
