/* =====================
PLACE PAGE DESIGN
===================== */

.place_section{
padding:80px 0;
background:#fff;
}

.place_grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
}

/* CARD */

.place_item{
display:flex;
gap:15px;
align-items:flex-start;
}

.place_item img{
width:90px;
height:70px;
object-fit:cover;
border-radius:4px;
}

.place_text h4{
font-size:16px;
font-weight:700;
color:#222;
margin-bottom:5px;
}

.place_text p{
font-size:14px;
color:#ff7a00;
line-height:1.4;
}

/* =====================
DETAIL PAGE
===================== */

.place_banner{
height:300px;
background-size:cover;
background-position:center;
position:relative;
}

.place_overlay{
background:rgba(0,0,0,0.6);
height:100%;
display:flex;
align-items:center;
justify-content:center;
}

.place_overlay h1{
color:#fff;
font-size:42px;
font-weight:700;
}

/* CONTENT */

.place_content{
padding:60px 0;
}

.place_content h2{
font-size:28px;
margin-bottom:20px;
}

.place_content p{
color:#555;
line-height:1.8;
}

/* =====================
REVIEWS SECTION
===================== */

.review_section{
background:#f8f9fb;
padding:80px 0;
}

.review_grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.review_card{
background:#fff;
padding:20px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.review_card img{
width:100%;
border-radius:10px;
margin-bottom:10px;
}

.review_card video{
width:100%;
border-radius:10px;
}

/* =====================
RESPONSIVE
===================== */

@media(max-width:991px){
.place_grid{
grid-template-columns:repeat(2,1fr);
}

.review_grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.place_grid{
grid-template-columns:1fr;
}

.review_grid{
grid-template-columns:1fr;
}

.place_overlay h1{
font-size:28px;
}
}