/*
Theme Name: Kadence Child
Theme URI: https://www.kadencewp.com/
Author: Kadence WP
Author URI: https://www.kadencewp.com/
Template: kadence
Version: 1.0.0
Description: A child theme for Kadence Theme.
Text Domain: kadence-child
*/

/* --- Firebase Houses Grid --- */
.houses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    justify-content: center;
}

.house-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: transform 0.2s;
}

.house-card:hover {
    transform: translateY(-5px);
}

.house-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.house-details {
    padding: 15px;
}

.house-details p {
    margin: 5px 0;
}

.view-button {
    display: block;
    width: calc(100% - 30px);
    margin: 0 15px 15px;
    padding: 10px;
    text-align: center;
    background-color: #0073e6;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

/* --- Sticky Bottom Navigation --- */
.sticky-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 1000;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #333;
    text-decoration: none;
    font-size: 12px;
}

.nav-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
}