/*
Theme Name: Nestly Custom
Author: Amin Ali
Description: Custom Zillow-style Real Estate Theme
Version: 1.0
*/


body {
    background-color: #f0f2f5;
    color: #2d3e50;
    line-height: 1.6;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.property-card {
    background: #fff;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e1e4e8;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.property-info h2 {
    font-size: 1.25rem;
    margin: 10px 0;
    color: #006aff; /* Zillow Blue */
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
}

.view-btn {
    display: block;
    text-align: center;
    background: #006aff;
    color: #fff;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
}

.view-btn:hover {
    background: #0055cc;
}