
/*
Theme Name: VCTE Racing Performance Pro
Author: SEO-EHO
Version: 2.0
*/

:root{
 --vcte-red:#ff1a1a;
 --vcte-black:#050505;
 --vcte-dark:#121212;
 --vcte-white:#f5f5f5;
}

body{
 margin:0;
 background:var(--vcte-black);
 color:var(--vcte-white);
 font-family:Arial,sans-serif;
}

.container{
 width:min(1200px,92%);
 margin:auto;
}

header{
 position:fixed;
 top:0;
 width:100%;
 z-index:999;
 background:rgba(0,0,0,.9);
 backdrop-filter:blur(8px);
}

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

.logo img{
 max-height:72px;
 width:auto;
}

.main-menu{
 display:flex;
 gap:24px;
}

.main-menu a{
 color:white;
 text-decoration:none;
 font-weight:bold;
}

.hero{
 min-height:100vh;
 display:flex;
 align-items:center;
 background:
 linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.9)),
 url('./assets/hero.jpg') center/cover no-repeat;
}

.hero-content{
 padding-top:120px;
 max-width:760px;
}

.hero h1{
 font-size:clamp(3rem,8vw,6rem);
 line-height:1;
 margin-bottom:20px;
 text-transform:uppercase;
}

.btn{
 display:inline-block;
 padding:16px 28px;
 background:var(--vcte-red);
 color:white;
 border-radius:8px;
 text-decoration:none;
 font-weight:bold;
}

section{
 padding:100px 0;
}

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

.card{
 background:#111;
 border-radius:18px;
 overflow:hidden;
 border:1px solid rgba(255,255,255,.08);
}

.card img{
 width:100%;
 height:240px;
 object-fit:cover;
}

.card-content{
 padding:24px;
}

footer{
 padding:50px 0;
 text-align:center;
 background:#020202;
}
