/* General Styling */
/*body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f8f8f8;
    color: #333;
}*/

/* Navigation Bar */
/*nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ff6f61;
    color: white;
    padding: 15px 30px;
}

    nav .logo {
        font-size: 24px;
        font-weight: bold;
    }

    nav ul {
        list-style: none;
        display: flex;
        gap: 20px;
    }

        nav ul li {
            display: inline;
        }

            nav ul li a {
                color: white;
                text-decoration: none;
                font-size: 16px;
                padding: 8px 12px;
            }

                nav ul li a:hover {
                    background: #555;
                    border-radius: 5px;
                }*/

/* Hero Section */
/*.hero {
    background: url('https://source.unsplash.com/1600x600/?house') no-repeat center center/cover;
    color: white;
    padding: 100px 20px;
}

    .hero h1 {
        font-size: 40px;
        margin-bottom: 10px;
    }

.search-box {
    margin-top: 20px;
}

    .search-box input {
        padding: 10px;
        width: 60%;
        font-size: 16px;
        border: none;
        border-radius: 5px;
    }

    .search-box button {
        padding: 10px 20px;
        background: #ff6f61;
        color: white;
        border: none;
        cursor: pointer;
        border-radius: 5px;
    }

        .search-box button:hover {
            background: #e65a50;
        }*/

/* Featured Listings */
/*.featured {
    margin: 40px 0;
}

.property-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.property {
    background: white;
    padding: 15px;
    border-radius: 10px;
    width: 250px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.image-placeholder {
    width: 100%;
    height: 150px;
    background: #ddd;
    border-radius: 5px;
    margin: 10px 0;
}

.property button {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
}

    .property button:hover {
        background: #0056b3;
    }*/

/* About Section */
/*.about {
    background: #eee;
    padding: 40px;
}*/

/* Footer */
/*footer {
    background: #333;
    color: white;
    padding: 20px;
    margin-top: 20px;
}*/

/* General Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f8f8f8;
    color: #333;
}

/* Navigation Bar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ff6f61;
    color: white;
    padding: 15px 30px;
}

    nav .logo {
        font-size: 24px;
        font-weight: bold;
    }

    nav ul {
        list-style: none;
        display: flex;
        gap: 20px;
    }

        nav ul li {
            display: inline;
        }

            nav ul li a {
                color: black;
                text-decoration: none;
                font-size: 16px;
                padding: 8px 12px;
            }

                nav ul li a:hover {
                    background: blue;
                    border-radius: 5px;
                }

/* Hero Section */
.hero {
    background: url('https://source.unsplash.com/1600x600/?house') no-repeat center center/cover;
    color: darkblue;
    padding: 100px 20px;
}

    .hero h1 {
        font-size: 40px;
        margin-bottom: 10px;
    }

.search-box {
    margin-top: 20px;
}

    .search-box input {
        padding: 10px;
        width: 60%;
        font-size: 16px;
        border: none;
        border-radius: 5px;
    }

    .search-box button {
        padding: 10px 20px;
        background: #ff6f61;
        color: white;
        border: none;
        cursor: pointer;
        border-radius: 5px;
    }

        .search-box button:hover {
            background: #e65a50;
        }

/* Featured Listings */
.featured {
    margin: 40px 0;
}

.property-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.property {
    background: white;
    padding: 15px;
    border-radius: 10px;
    width: 250px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

    /* Image Styling for Property Listings */
.property img {
width: 100%;
height: 200px; /* Fixed height */
object-fit: cover;
border-radius: 5px;
}

.property button {
background: #007bff;
color: white;
border: none;
padding: 10px;
cursor: pointer;
border-radius: 5px;
}

.property button:hover {
background: #0056b3;
}

/* About Section */
.about {
background: #eee;
padding: 40px;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 20px;
    margin-top: 20px;
}

/* Logout Button */
.logout-btn {
    background-color: darkblue;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    transition: 0.3s;
    position: absolute;
    right: 20px;
    top: 15px;
}

    .logout-btn:hover {
        background-color: #cc0000;
    }
