/* Premium UI Upgrades */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif !important;
    background-color: var(--bg-color, #f8f9fa);
    color: var(--text-color, #333);
    transition: background-color 0.4s ease, color 0.4s ease;
}

body.dark-mode {
    --bg-color: #121212;
    --text-color: #f1f1f1;
}

body.dark-mode .housing-style-search {
    background: rgba(30, 30, 30, 0.9);
}

body.dark-mode .property-item {
    background: #1e1e1e;
    color: #fff;
}

body.dark-mode .property-item h5, 
body.dark-mode .property-item p,
body.dark-mode h1, body.dark-mode h2, body.dark-mode h3, body.dark-mode h4, body.dark-mode h5 {
    color: #fff !important;
}

/* Glassmorphism search bar */
.housing-style-search {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.housing-style-search input {
    background: transparent;
    border: none !important;
    box-shadow: none !important;
}

/* Property Cards Premium Lift Effect */
.property-item {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    border-radius: 16px;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.property-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Premium Buttons */
.btn-primary, .btn-orange {
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary:hover, .btn-orange:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(94, 35, 220, 0.3);
}

/* Soft rounded images */
img {
    border-radius: 8px;
}
