/* assets/css/style.css */
:root {
    --primary: #10b981; /* Emerald Green */
    --primary-dark: #047857;
    --secondary: #0f172a; /* Dark Navy */
    --light: #f8fafc;
    --text-gray: #64748b;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -2px rgb(0 0 0 / 0.05);
    --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Roboto, Helvetica, sans-serif; }
body { color: var(--secondary); background-color: var(--light); line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* Utilities */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.flex { display: flex; }
.grid { display: grid; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-4 { margin-top: 2.5rem; } .mb-4 { margin-bottom: 2rem; }
.p-4 { padding: 1.5rem; }
.btn { padding: 12px 24px; border-radius: 50px; font-weight: 600; display: inline-block; border: none; cursor: pointer; }
.btn-primary { background: var(--primary); color: white; box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.39); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); background: white; }
.btn-outline:hover { background: var(--primary); color: white; }

/* Navbar */
header { background: white; box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 1000; padding: 15px 0; }
.logo { font-size: 1.5rem; font-weight: 800; color: var(--secondary); }
.logo span { color: var(--primary); }
.nav-menu { gap: 30px; }
.nav-link { font-weight: 600; color: var(--secondary); font-size: 0.95rem; }
.nav-link:hover { color: var(--primary); }
.mobile-menu-btn { display: none; font-size: 1.5rem; background: none; border: none; cursor: pointer; }

/* Hero Section */
.hero {
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
}
.hero h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.hero p { font-size: 1.25rem; margin-bottom: 40px; color: #e2e8f0; max-width: 700px; margin-left: auto; margin-right: auto; }

/* Section Titles */
.section-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; color: var(--secondary); text-align: center; }
.section-subtitle { color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; text-align: center; display: block; margin-bottom: 10px; }

/* Property Cards */
.prop-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.prop-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: 0.3s; border: 1px solid #e2e8f0; position: relative; }
.prop-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.prop-img { height: 220px; background-color: #cbd5e1; position: relative; overflow: hidden; }
.prop-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.prop-card:hover .prop-img img { transform: scale(1.05); }
.status-badge { position: absolute; top: 15px; left: 15px; padding: 5px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; color: white; z-index: 2; }
.status-available { background-color: #3b82f6; } /* Blue */
.status-booked { background-color: #f59e0b; } /* Orange */
.status-sold { background-color: #ef4444; } /* Red */
.prop-content { padding: 20px; }
.prop-price { color: var(--primary); font-size: 1.5rem; font-weight: 800; margin-bottom: 5px; }
.prop-block { font-size: 1.1rem; font-weight: 700; color: var(--secondary); margin-bottom: 10px; }
.prop-features { display: flex; gap: 15px; color: var(--text-gray); font-size: 0.9rem; margin-bottom: 20px; }
.prop-features i { color: var(--primary); margin-right: 5px; }

/* Footer */
footer { background: var(--secondary); color: white; padding: 60px 0 20px; }
.footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { font-size: 1.5rem; font-weight: 700; margin-bottom: 15px; display: block; }
.footer-links a { display: block; margin-bottom: 10px; color: #94a3b8; }
.footer-links a:hover { color: white; padding-left: 5px; }
.copyright { text-align: center; border-top: 1px solid #334155; padding-top: 20px; color: #64748b; font-size: 0.9rem; }

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .mobile-menu-btn { display: block; }
    .nav-menu { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: white; flex-direction: column; padding: 20px; box-shadow: var(--shadow-lg); }
    .nav-menu.active { display: flex; }
    .footer-grid { grid-template-columns: 1fr; }
}