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

body {
background: #f7f8fa;
color: #333;
}

/* HEADER */

header {
width: 100%;
height: 80px;
background: white;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 8%;
box-shadow: 0 3px 15px rgba(0,0,0,0.08);
position: sticky;
top:0;
z-index:1000;
}

.logo {
font-size: 32px;
font-weight: bold;
color:#222;
}

.logo span {
color:#e8a317;
}

nav {
display;
gap:30px;
}

nav a {
text-decoration;
color:#333;
font-weight:600;
}

nav a {
color:#e8a317;
}

.login-btn {
background:#e8a317;
color;
border;
padding:12px 25px;
border-radius:30px;
cursor;
}




/* HERO SECTION */

.hero {

height:90vh;
background:
linear-gradient(
rgba(0,0,0,.55),
rgba(0,0,0,.55)
),
url("../images/hero.jpg");

background-size:cover;
background-position:center;

display:flex;
align-items:center;
justify-content:center;
text-align:center;

}




.hero-content {
color;
max-width:900px;
}




.hero h1 {

font-size:60px;
margin-bottom:20px;

}

.hero p {

font-size:22px;
margin-bottom:40px;

}




.search-box {

background:white;
padding:20px;
border-radius:15px;
display:flex;
gap:15px;
flex-wrap:wrap;

}




.search-box input,
.search-box select {

padding:15px;
border:none;
outline:none;
background:#eee;
border-radius:8px;
flex:1;

}

.search-box button {

background:#e8a317;
color:white;
border:none;
padding:15px 35px;
border-radius:8px;
cursor:pointer;

}




/* FEATURED PROPERTIES */

.featured {

padding:80px 8%;

}

.featured h2,
.agents h2 {

text-align:center;
font-size:40px;
margin-bottom:50px;

}




.property-container {

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}

.property-card {

background:white;
border-radius:15px;
overflow:hidden;
box-shadow:
0 10px 30px rgba(0,0,0,.1);

}




.property-card img {

width:100%;
height:250px;
object-fit:cover;

}

.property-info {

padding:25px;

}

.property-info h3 {

font-size:24px;
margin-bottom:15px;

}

.property-info h4 {

color:#e8a317;
font-size:22px;
margin:15px 0;

}

.property-info a {

display:inline-block;
background:#222;
color:white;
padding:12px 20px;
border-radius:20px;
text-decoration:none;

}







/* ABOUT */

.about-preview {

padding:80px 8%;
display:flex;
gap:50px;
align-items:center;
background:white;

}




.about-preview div {

flex:1;

}

.about-preview img {

width:45%;
border-radius:20px;

}

.about-preview h2 {

font-size:40px;
margin-bottom:20px;

}

.about-preview li {

list-style:none;
margin:15px 0;

}




/* AGENTS */

.agents {

padding:80px 8%;

}




.agent-container {

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}




.agent-card {

background:white;
text-align:center;
padding-bottom:30px;
border-radius:15px;
overflow:hidden;

}




.agent-card img {

width:100%;
height:280px;
object-fit:cover;

}




.agent-card h3 {

margin-top:20px;

}




/* CONTACT BANNER */

.contact-banner {

padding:70px;
text-align:center;
background:#222;
color:white;

}

.contact-banner h2 {

font-size:40px;

}

.contact-banner a {

display:inline-block;
margin-top:25px;
background:#e8a317;
color:white;
padding:15px 35px;
border-radius:30px;
text-decoration:none;

}




/* FOOTER */

footer {

background:#111;
color:white;
padding:50px 8%;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}

footer a {

display:block;
color:#ddd;
margin:10px 0;
text-decoration:none;

}

.copyright {

grid-column:1/-1;
text-align:center;
margin-top:30px;

}




/* RESPONSIVE DESIGN */

@media(max-width:900px){

nav {
display;
}

.hero h1 {

font-size:40px;

}

.property-container,
.agent-container {

grid-template-columns:1fr;

}




.about-preview {

flex-direction:column;

}




.about-preview img {

width:100%;

}




footer {

grid-template-columns:1fr;

}

}