/* residential.css */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #333; /* Dark gray background color */
    color: #fff; /* White text color */
}

header {
    background-color: #2c3e50;
    text-align: center;
    padding: 1em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border-bottom: 4px solid #f39c12; /* Gold color for the bottom border */
}

nav {
    background-color: #333;
    padding: 10px 0;
    text-align: center;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 10px;
    margin: 0 10px;
    font-size: 18px;
}

nav a:hover {
    background-color: #555;
    border-radius: 5px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
}

.column {
    flex: 1;
    width: 19%; /* Adjust the width as needed */
    margin-right: 20px; /* Add margin between columns */
}

.property-card {
    width: 100%;
    margin-bottom: 20px;
    border: 2px solid #f39c12; /* Gold border color */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #333; /* Match background color */
    transition: transform 0.3s ease-in-out;
    position: relative;
    color: #fff; /* White text color for property card content */
}

.property-card:hover {
    transform: scale(1.05);
}

.property-code {
    font-size: 14px; /* Adjust the font size as needed */
    margin-top: 10px; /* Add margin at the top */
    color: #bdc3c7; /* Light gray text color */
}

.property-image {
    width: 100%;
    height: 150px;
    background: #444; /* Darker background for the image placeholder */
    background-size: cover;
    background-position: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.property-details {
    padding: 15px;
}

h2 {
    color: #f39c12; /* Gold color for headings */
    margin-top: 0;
}

/* Only the text inside the property cards will be white */
.property-details p {
    color: #fff; /* White text color for property card content */
}

/* Add styling for the search container */
.search-container {
    margin: 20px 0;
    text-align: center;
}

.search-container label {
    margin-right: 10px;
    color: #fff; /* White color for labels */
}

.search-container select {
    padding: 5px;
}

.search-container button {
    padding: 5px 10px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.search-container button:hover {
    background-color: #2980b9;
}
