:root {
    --primary: #1e293b;
    --accent: #b59449;
    --text: #334155;
    --light: #f1f5f9;
}

body { font-family: 'Noto Sans JP', sans-serif; margin: 0; color: var(--text); background: #fff; }

header {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../../../assets/realestate.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

header h1 { font-size: 4rem; font-weight: 900; margin-bottom: 20px; text-shadow: 0 4px 10px rgba(0,0,0,0.3); }

.search-box { background: white; padding: 30px; border-radius: 10px; width: 80%; display: flex; gap: 20px; align-items: center; transform: translateY(-50PX); margin: 0 auto; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); color: #333; }
.search-box input { flex: 1; padding: 15px; border: 1px solid #ddd; border-radius: 5px; }
.search-box button { background: var(--accent); color: white; border: none; padding: 15px 40px; border-radius: 5px; cursor: pointer; font-weight: bold; }

.section { padding: 100px 10%; }
.listing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 40px; }
.listing-card { background: var(--light); border-radius: 15px; overflow: hidden; transition: 0.3s; }
.listing-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.listing-card .price { color: var(--accent); font-size: 1.5rem; font-weight: bold; margin: 15px; display: block; }

footer { padding: 60px 10%; background: var(--primary); color: white; text-align: center; }
