/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

/* Header and Navigation */


/* Hero Section */
#hero {
    background: url('https://via.placeholder.com/1920x600') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

#hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

#hero p {
    font-size: 1.2rem;
}

/* Sections */
section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

#about, #contact ,#properties{
    text-align: center;
}

.property-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.property {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    width: calc(33.333% - 40px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.property:hover {
    transform: translateY(-10px);
}

.property h3 {
    margin-bottom: 10px;
}


/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    
    .nav-links li {
        margin: 10px 0;
    }
    
    .burger {
        display: block;
    }

    .property {
        width: calc(50% - 40px);
    }
}

@media screen and (max-width: 500px) {
    .property {
        width: calc(100% - 40px);
    }
}
