/*
Theme Name: Legal Basement Construction Theme
Author: Kiran Web Studios
Description: Premium construction WordPress theme.
Version: 1.0
*/

body{
margin:0;
font-family:Arial,sans-serif;
background:#111;
color:#fff;
line-height:1.7;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
background:#111;
padding:20px 0;
position:fixed;
width:100%;
top:0;
z-index:999;
border-bottom:1px solid rgba(255,255,255,0.1);
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-size:30px;
font-weight:bold;
color:#D4A017;
}

.menu{
display:flex;
gap:25px;
}

.menu a{
color:#fff;
text-decoration:none;
}

.hero{
min-height:100vh;
display:flex;
align-items:center;
background:linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)),url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1400');
background-size:cover;
padding-top:100px;
}

.hero h1{
font-size:60px;
margin-bottom:20px;
}

.hero span{
color:#D4A017;
}

.hero p{
max-width:700px;
color:#ddd;
margin-bottom:30px;
}

.btn{
display:inline-block;
padding:15px 35px;
background:#D4A017;
color:#111;
text-decoration:none;
border-radius:50px;
font-weight:bold;
}

section{
padding:100px 0;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

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

.service-card{
background:#1a1a1a;
padding:30px;
border-radius:20px;
}

.service-card h3{
color:#D4A017;
}

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

.portfolio-card img{
width:100%;
border-radius:20px;
}

.cta{
background:#1a1a1a;
padding:70px 30px;
border-radius:25px;
text-align:center;
}

footer{
background:#000;
padding:40px 0;
text-align:center;
}

@media(max-width:768px){

.hero h1{
font-size:42px;
}

.menu{
display:none;
}

}
