body{
margin:0;
font-family:Arial, sans-serif;
}

.hero{
background:url('img3.jpg') center/cover no-repeat;
height:90vh;
display:flex;
align-items:center;
justify-content:center;
}

.overlay{
background:rgba(0,0,0,0.6);
padding:40px;
color:white;
text-align:center;
}

h1{
font-size:40px;
}

.btn{
background:#ff9800;
color:white;
padding:12px 25px;
text-decoration:none;
display:inline-block;
margin-top:15px;
border-radius:5px;
}

section{
padding:50px 20px;
text-align:center;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
gap:20px;
}

.grid div{
background:#f4f4f4;
padding:20px;
border-radius:10px;
}

.locations ul{
list-style:none;
padding:0;
}

.locations li{
padding:10px;
font-size:18px;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:15px;
}

.gallery img{
width:100%;
border-radius:10px;
}

.contact{
background:#111;
color:white;
}

footer{
background:#000;
color:white;
padding:20px;
text-align:center;
}
