* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f7f7f7;
    color: #111;
}

/* NAVBAR */
.navbar {
    width: 100%;
    padding: 18px 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #111;
    color: white;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 30px;
    font-weight: 900;
    color: #ff7a18;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 700;
}

.login-btn {
    background: #ff7a18;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: bold;
}

/* HERO */
.hero {
    min-height: 78vh;
    background:
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
        url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 7%;
    color: white;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 70px;
    line-height: 1.05;
    margin-bottom: 25px;
}

.hero p {
    font-size: 25px;
    margin-bottom: 30px;
}

.search-box {
    background: white;
    padding: 8px;
    border-radius: 50px;
    display: flex;
    max-width: 600px;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    padding: 18px 25px;
    font-size: 16px;
    border-radius: 50px;
}

.search-box button {
    border: none;
    background: #ff7a18;
    color: white;
    padding: 16px 30px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
}

/* SECTIONS */
.featured,
.about {
    padding: 70px 7%;
}

.featured h2,
.about h2 {
    font-size: 36px;
    margin-bottom: 35px;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.property-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.property-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.property-card video {
    height: 260px;
    object-fit: cover;
    background: #111;
    display: block;
}

.property-info {
    padding: 22px;
}

.property-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.property-info p {
    color: #555;
    margin-bottom: 10px;
}

.property-info h4 {
    color: #ff7a18;
    margin-bottom: 15px;
}

.property-info a {
    color: #ff7a18;
    font-weight: bold;
    text-decoration: none;
}

/* ABOUT */
.about {
    background: white;
}

.about p {
    max-width: 900px;
    line-height: 1.7;
    color: #555;
}

/* FOOTER */
footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 25px;
}

/* FORMS */
input,
textarea {
    font-family: Arial, sans-serif;
}

button {
    font-family: Arial, sans-serif;
}

/* MOBILE */
@media (max-width: 850px) {
    .navbar {
        padding: 16px 5%;
    }

    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 45px;
    }

    .hero p {
        font-size: 19px;
    }

    .search-box {
        flex-direction: column;
        border-radius: 20px;
    }

    .search-box button {
        margin-top: 8px;
    }

    .property-grid {
        grid-template-columns: 1fr;
    }
}
