@font-face {
    font-family: Rubik;
    src: url(FONTSS/Rubik-VariableFont_wght.ttf);
}

@font-face {
    font-family: Poppins;
    src: url(FONTSS/Poppins-Thin.ttf);
}

@font-face {
    font-family: Poppins Bold;
    src: url(FONTSS/Poppins-Bold.ttf);
}

body {
    /* Old browsers */
    background: #ededed;
    /* Chrome 10-25, Safari 5.1-6 */
    background: #ededed;
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background: #ededed;
    margin: 0;
    padding: 0;
  }



header{
    z-index: 1;
    background-color:#fcf6f0;
    

}
nav{background-color:#fcf6f0;
    box-sizing: border-box;
    overflow: hidden;
  

}

nav img{display:block;
    width: 20%;
    margin: 0 auto; 
    padding: 5px 0px;


}

nav img:hover {
    opacity: 0.8; /* Slight hover effect */
  }


  body {
    font-family: Poppins;
    font-weight: 900;
    background-color: #ededed;
    margin: 0;
    padding: 0;
}
h1 {font-family: Poppins;
    color: rgb(53, 50, 50);
    font-size:40px;
    text-align: center;
    position: relative;
    top:10px;
    padding-left: 25%;
    padding-right: 25%;}



/* Filter button + icon */
.filter-toggle{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#e7ccab;
  border:none;
  padding:10px 14px;
  border-radius:6px;
  cursor:pointer;
  font-family:'Poppins Bold',sans-serif;
  line-height:1;
  /* If you previously tried a background icon, kill it: */
  background-image: none !important;
}

.icon{
  width:5px !important;     /* ← adjust to taste */
  height:5px !important;
  flex:0 0 20px;
  object-fit:contain;
  display:inline-block;
  max-width:none !important; /* neutralize any global img rules */
}

/* Container for all listings */
.property-listing {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Individual property item */
.property-item {
    display: flex;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

/* Image on the left side */
.property-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* Info on the right side */
.property-info {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Styling for the property title and details */
.property-info h2 {
    margin: 0 0 10px 0;
    font-size: 1.5em;
}

.property-info p {
    margin: 5px 0;
    color: #555;
}








/* Link to view more details */
.view-details {
    display: inline-block;
    text-decoration: none;
    background-color: #e7ccab; /* same color as your other button */
    color: #353232;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: 'Poppins Bold', sans-serif; /* if you use a bold version of Poppins */
    font-size: 1em;
    transition: background-color 0.3s ease;
    margin-top: 10px; /* Add spacing above button if needed */
  }
  
  .view-details:hover {
    background-color: #d2bba0;
  }
  
  /* Property listing styles (example) */
  .property-listing {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px;
  }
  
  .property-item {
    display: flex;
    background-color: #fff5e9;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }
  
  .property-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .property-info {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .property-info h2 {
    margin: 0 0 10px 0;
    font-size: 1.5em;
  }
  
  .property-info p {
    margin: 5px 0;
    color: #555;
  }














/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .property-item {
        flex-direction: column;
        align-items: center;
    }

    .property-image {
        width: 100%;
        max-width: 400px;
        height: auto;
    }

    .property-info {
        margin-left: 0;
        margin-top: 20px;
        text-align: center;
    }
}