*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Poppins',sans-serif;
    background:#f5f7fa;
    color:#333;
    line-height:1.6;

}

.container{

    width:90%;
    max-width:1100px;
    margin:auto;

}

/* ---------------- Header ---------------- */

header{

    position:absolute;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 10%;
    color:white;
    z-index:100;

}

.logo{

    font-size:28px;
    font-weight:700;
    letter-spacing:2px;

}

nav{

    display:flex;
    gap:30px;

}

nav a{

    text-decoration:none;
    color:white;
    transition:.3s;

}

nav a:hover{

    color:#d4b26a;

}

/* ---------------- Hero ---------------- */

.hero{

    height:100vh;

    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("https://cdn.propertyupdate.com.au/wp-content/uploads/2017/08/property-development.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

}

.hero-content{

    color:white;
    width:80%;
    max-width:800px;

}

.hero h1{

    font-size:3.4rem;
    margin-bottom:20px;

}

.hero p{

    font-size:1.15rem;
    margin-bottom:30px;

}

button{

    background:#d4b26a;
    color:white;
    border:none;
    padding:15px 35px;
    border-radius:40px;
    font-size:16px;
    cursor:pointer;
    transition:.3s;

}

button:hover{

    background:#b08d3b;
    transform:translateY(-2px);

}

.hero-contact-info{

    margin-top:25px;
    font-size:15px;
    opacity:.9;

}

/* ---------------- About ---------------- */

.about{

    padding:90px 0;
    background:white;

}

.about h2{

    text-align:center;
    margin-bottom:30px;
    font-size:2rem;

}

.about-text{

    max-width:850px;
    margin:auto;
    text-align:center;
    color:#555;

}

/* ---------------- Projects ---------------- */

.projects-section{

    padding:90px 0;
    background:#eef2f5;

}

.projects-section h2{

    text-align:center;
    margin-bottom:50px;
    font-size:2rem;

}

.card-list{

    display:flex;
    gap:30px;
    flex-wrap:wrap;
    justify-content:center;

}

.project-card{

    background:white;
    width:340px;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
    transition:.3s;
    display: flex;
    flex-direction: column;
}

.project-card:hover{

    transform:translateY(-8px);

}

.project-image{

    width:100%;
    height:220px;
    object-fit:cover;

}

.project-title{

    font-size:1.3rem;
    font-weight:600;
    padding:20px;

}

.project-description{

    padding:0 20px 25px;
    color:#666;

}

.project-button{
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 15px;
}

/* ---------------- Join ---------------- */

.join{

    background:#1e2a38;
    color:white;
    text-align:center;
    padding:80px 20px;

}

.join h2{

    margin-bottom:15px;
    font-size:2rem;

}

.join p{

    margin-bottom:30px;

}

/* ---------------- Footer ---------------- */

footer{

    background:#111;
    color:#bbb;
    text-align:center;
    padding:25px;

}

/* ---------------- Responsive ---------------- */

@media(max-width:768px){

    header{

        flex-direction:column;
        gap:15px;

    }

    nav{

        gap:15px;
        flex-wrap:wrap;
        justify-content:center;

    }

    .hero h1{

        font-size:2.3rem;

    }

    .card-list{

        flex-direction:column;
        align-items:center;

    }

}