/* ==========================
   Properties Page
========================== */

.page-hero{

padding:170px 0 80px;

background:linear-gradient(rgba(8,16,31,.75),rgba(8,16,31,.75)),
url("../images/hero.jpg") center/cover;

text-align:center;

color:#fff;

}

.page-hero h1{

font-size:52px;

margin-bottom:15px;

font-family:'Playfair Display',serif;

}

.page-hero p{

font-size:18px;

color:#ddd;

}

.properties-page{

padding:90px 0;

background:#f8f8f8;

}

.section-title{

text-align:center;

margin-bottom:60px;

}

.section-title h2{

font-size:40px;

margin-bottom:10px;

color:#111827;

font-family:'Playfair Display',serif;

}

.section-title p{

color:#666;

font-size:18px;

}

.property-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

gap:35px;

}

.property-card{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 20px 45px rgba(0,0,0,.08);

transition:.35s;

}

.property-card:hover{

transform:translateY(-8px);

}

.property-image{

position:relative;

height:260px;

overflow:hidden;

}

.property-image img{

width:100%;

height:100%;

object-fit:cover;

transition:.4s;

}

.property-card:hover img{

transform:scale(1.06);

}

.price-tag{

position:absolute;

bottom:15px;

right:15px;

background:#D4AF37;

padding:10px 18px;

border-radius:30px;

font-weight:700;

}

.price-tag span{

font-size:13px;

font-weight:500;

}

.property-info{

padding:28px;

}

.property-info h3{

font-size:28px;

margin-bottom:10px;

color:#111827;

}

.property-location{

margin-bottom:18px;

color:#666;

}

.property-meta{

display:flex;

justify-content:space-between;

margin-bottom:18px;

font-size:15px;

}

.rating{

margin-bottom:18px;

color:#D4AF37;

font-weight:600;

}

.description{

color:#666;

line-height:1.7;

margin-bottom:25px;

}

.property-buttons{

display:flex;

gap:15px;

}

.view-btn{

flex:1;

text-align:center;

padding:14px;

background:#111827;

color:#fff;

text-decoration:none;

border-radius:8px;

transition:.3s;

}

.book-btn{

flex:1;

text-align:center;

padding:14px;

background:#D4AF37;

color:#111;

font-weight:600;

text-decoration:none;

border-radius:8px;

transition:.3s;

}

.view-btn:hover{

background:#000;

}

.book-btn:hover{

background:#c89c22;

}

@media(max-width:768px){

.page-hero h1{

font-size:38px;

}

.property-buttons{

flex-direction:column;

}

}