/* HERO */

.showroom-hero{
height:70vh;
background:url('https://images.unsplash.com/photo-1602751584552-8ba73aad10e1') center/cover;
position:relative;
display:flex;
align-items:center;
justify-content:center;
color:white;
text-align:center;
}

.hero-overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
}

.hero-content{
position:relative;
z-index:2;
}

.hero-content h1{
font-size:50px;
margin-bottom:10px;
}

.hero-btn{
display:inline-block;
margin-top:20px;
padding:12px 30px;
background:#c9a84c;
color:white;
text-decoration:none;
border-radius:5px;
}


/* TRUST SECTION */

.trust-section{
padding:60px 20px;
background:#f8f8f8;
}

.trust-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:25px;
text-align:center;
}

.trust-box{
background:white;
padding:25px;
border-radius:8px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.trust-box h3{
color:#c9a84c;
font-size:26px;
}


/* ABOUT */

.about-showroom{
padding:80px 20px;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.about-image img{
width:100%;
border-radius:10px;
}


/* VISIT SECTION */

.visit-section{
padding:80px 20px;
background:#fafafa;
text-align:center;
}

.visit-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
margin-top:40px;
}

.map-btn{
display:inline-block;
margin-top:15px;
padding:10px 25px;
background:#c9a84c;
color:white;
text-decoration:none;
border-radius:5px;
}


/* GALLERY */

.showroom-gallery{
padding:80px 20px;
text-align:center;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
margin-top:40px;
}

.gallery-grid img{
width:100%;
height:250px;
object-fit:cover;
border-radius:8px;
}

.about-showroom{
padding:80px 20px;
background:#fff;
}

.section-header{
text-align:center;
margin-bottom:50px;
}

.section-header h2{
font-size:36px;
color:#3b2a09;
margin-bottom:10px;
}

.section-header p{
color:#777;
font-size:16px;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.about-text p{
margin-bottom:18px;
line-height:1.7;
color:#555;
font-size:16px;
}

.about-features{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.feature-box{
background:#fafafa;
padding:25px;
border-radius:8px;
text-align:center;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.feature-box h3{
color:#c9a84c;
font-size:24px;
margin-bottom:5px;
}

.feature-box p{
font-size:14px;
color:#666;
}