:root {

--red:#e31b23;
--dark:#101214;
--gray:#1c2024;
--light:#f4f4f4;

}


* {
box-sizing:border-box;
}


body {

margin:0;
font-family:
'Segoe UI',
Arial,
sans-serif;

color:#222;

}



header {

background:#08090a;
color:white;

position:sticky;
top:0;
z-index:10;

}


.nav {

max-width:1200px;
margin:auto;

padding:20px;

display:flex;
align-items:center;
justify-content:space-between;

}



.logo {

font-weight:900;
font-size:22px;
letter-spacing:1px;

}


.logo span {

color:var(--red);

}



nav a {

color:white;
text-decoration:none;
margin:0 15px;

}



.phone,
.btn {

border-radius:5px;
padding:14px 25px;

text-decoration:none;
font-weight:bold;

}



.phone,
.primary {

background:var(--red);
color:white;

}



.hero {

height:750px;

background:
linear-gradient(
90deg,
rgba(0,0,0,.85),
rgba(0,0,0,.35)
),
url(images/shop.jpg);

background-size:cover;
background-position:center;

display:flex;
align-items:center;

color:white;

}



.hero-overlay {

max-width:1200px;
padding:40px;
margin:auto;

}



.hero h1 {

font-size:64px;
line-height:1.05;

}


.hero p {

font-size:22px;
max-width:650px;

}



.outline {

border:2px solid white;
color:white;

}



.about {

max-width:1200px;
margin:auto;

padding:90px 30px;

display:grid;
grid-template-columns:1fr 1fr;

gap:50px;

align-items:center;

}


.about img {

width:100%;
border-radius:10px;

}



.services,
.why {

padding:80px 30px;
text-align:center;

background:var(--light);

}



.grid,
.features {

max-width:1100px;
margin:40px auto;

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));

gap:25px;

}



.service,
.features div {

background:white;
padding:30px;

border-radius:10px;

box-shadow:0 10px 30px #ddd;

}



.cta {

background:#111;
color:white;

padding:80px;

text-align:center;

}



.contact {

padding:70px;
text-align:center;

}


iframe {

width:90%;
height:350px;
border:0;

}



footer {

background:#000;
color:white;
text-align:center;
padding:25px;

}



@media(max-width:800px){

nav {
display:none;
}

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

.about {
grid-template-columns:1fr;
}

}