/* Navbar */
.navbar {
    background-color: #333;
    padding: 1rem;
    color: white;
}

.navbar .brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.menu a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem;
    margin: 0 0.5rem;
}

/* Banner */
.banner {
    position: relative;
    text-align: center;
}

.banner img {
    width: 100%;
    filter: brightness(70%);
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

/* About Section */
.about {
    padding: 2rem;
    text-align: center;
}

/* Properties Section */
.properties {
    padding: 2rem;
}

.property-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.property-card {
    border: 1px solid #ddd;
    padding: 1rem;
    border-radius: 8px;
    transition: transform 0.3s;
}

.property-card:hover {
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    padding: 2rem;
    background: #f9f9f9;
}

.contact form {
    display: flex;
    flex-direction: column;
}

.contact input, .contact textarea {
    margin-bottom: 1rem;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 1rem;
}
