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

body{
    font-family:'Inter', sans-serif;
    background:#f8fafc;
    color:#1e293b;
}

/* HERO */
.hero{
    height:100vh;
    background:url('terace\ new.HEIC') center/cover no-repeat;
    position:relative;
}

.hero::after{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
}

.hero-content{
    position: absolute;
    z-index: 2;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:white;
}

.hero h1{
    font-family:'Cormorant Garamond', serif;
    font-size:60px;
    letter-spacing:6px;
}

.hero p{
    letter-spacing:4px;
    margin-top:10px;
}

.btn{
    display:inline-block;
    margin-top:30px;
    padding:12px 30px;
    background:white;
    border-radius:30px;
    text-decoration:none;
    color:black;
}

/* SECTION */
.section{
    padding:80px 20px;
    max-width:1200px;
    margin:auto;
}

/* INTRO */
.intro{
    text-align:center;
}

.intro h2{
    font-family:'Cormorant Garamond', serif;
    font-size:36px;
    margin-bottom:20px;
}

/* SERVICES */
.services{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:20px;
    margin-top:40px;
}

.service{
    background:white;
    padding:20px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 20px rgba(4, 14, 67, 0.05);
    transition:0.3s;
}

.service:hover{
    transform:translateY(-5px);
}

.service img{
    width:40px;
    margin-bottom:10px;
}

/* APARTMENTS */
.apartments{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    border: none;
    color: black;
}

.card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.card-content{
    padding:20px;
        color: black;
        text-decoration: none;
}



/* CONTACT */
.contact{
    background:#0f172a;
    color:white;
    text-align:center;
    padding:60px 20px;
}

/* MAP */
.map iframe{
    width:100%;
    height:300px;
    border:0;
}

/* MOBILE */
@media(max-width:768px){
.hero h1{font-size:40px;}
.apartments{grid-template-columns:1fr;}
}
</style>