*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:Arial, sans-serif;

background:#f8faf8;

color:#222;

line-height:1.6;

}

.container{

max-width:1200px;

margin:auto;

padding:0 20px;

}


/* NAVBAR */

.navbar{

background:white;

border-bottom:1px solid #eee;

position:sticky;

top:0;

z-index:1000;

}

.nav-inner{

display:flex;

justify-content:space-between;

align-items:center;

padding:18px 0;

}

.logo-img{

height:55px;

}

nav a{

text-decoration:none;

margin-left:25px;

color:#333;

font-weight:600;

}

nav a:hover,
nav a.active{

color:#16a34a;

}


/* HERO */

.hero{

padding:100px 0;

text-align:center;

background:

linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),

url("garage-bg.jpg");

background-size:cover;

background-position:center;

color:white;

}

.hero h1{

font-size:55px;

margin-bottom:20px;

}

.hero p{

max-width:650px;

margin:auto;

font-size:18px;

}


/* PRODUCTS */

.products{

padding:90px 0;

}

.products h2{

text-align:center;

margin-bottom:40px;

font-size:38px;

}

.product-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

gap:25px;

}

.product-card{

background:white;

border-radius:12px;

overflow:hidden;

box-shadow:0 5px 20px rgba(0,0,0,0.08);

transition:0.3s;

}

.product-card:hover{

transform:translateY(-8px);

}

.product-card img{

width:100%;

height:230px;

object-fit:cover;

}

.product-info{

padding:20px;

}

.product-info h3{

margin-bottom:10px;

}

.product-info p{

color:#666;

font-size:14px;

margin-bottom:15px;

}

.price{

font-size:24px;

font-weight:bold;

color:#16a34a;

margin-bottom:20px;

}

.btn{

display:inline-block;

background:#16a34a;

color:white;

padding:12px 24px;

text-decoration:none;

border-radius:8px;

font-weight:600;

}

.btn:hover{

background:#15803d;

}


/* CONTACT */

.contact{

background:#111;

color:white;

text-align:center;

padding:80px 0;

}

.contact h2{

font-size:38px;

margin-bottom:20px;

}

.contact-box{

margin-top:25px;

}

.contact-box p{

margin:10px 0;

}


/* FOOTER */

footer{

background:#000;

color:#999;

text-align:center;

padding:25px;

}


/* MOBILE */

@media(max-width:768px){

.hero h1{

font-size:38px;

}

nav a{

margin-left:15px;

font-size:14px;

}

}