/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #ffffff;
    color: #1a1a1a;
}
/* Header Styles */
header {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
    justify-content: center;
}

.logo img {
    max-width: 150px;
    height: auto;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-grow: 1;
}

nav ul li a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
}

.login-button {
    background-color: #ffd700;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
}


/* Property Search Section */
.property-search {
    text-align: center;
    padding: 50px 20px;
    background-color: #f8f8f8;
}

.search-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.search-container select, .search-container input, .search-container button {
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.search-container select, .search-container input {
    width: 200px;
}

.search-container button {
    background-color: #ffd700;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.search-container button:hover {
    background-color: #e6c200;
}

/* Property Listings */
.property-listings {
    text-align: center;
    padding: 50px 20px;
}

.properties-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.property {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 300px;
}

.property img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.property h3 {
    font-size: 1.2rem;
    color: #333;
}

.property p {
    font-size: 1.1rem;
    font-weight: bold;
    color: #27ae60;
}

/* Call to Action */
.list-your-property {
    text-align: center;
    padding: 50px 20px;
    background-color: #f8f8f8;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ffd700;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.cta-button:hover {
    background-color: #e6c200;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-top: 10px;
}

.social-icons a {
    color: #ffd700;
    font-size: 1.5rem;
    transition: transform 0.3s ease-in-out;
}

.social-icons a:hover {
    transform: scale(1.2);
}
