/* Path: /assets/css/style.css */

:root {
    --primary-blue: #2563eb;
    --secondary-orange: #f97316;
    --text-dark: #1e2937;
    --bg-light: #f8fafc;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Ensure images don't break layout */
img {
    max-width: 100%;
    height: auto;
}

/* Property Card Styling */
.property-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
}