
:root{
  --bg:#060606;
  --bg2:#101010;
  --panel:rgba(18,18,18,.65);
  --text:#f3f3f3;
  --muted:#c6c6c6;
  --accent:#00d2be;
  --silver:#d8d8d8;
  --red:#b01d1d;
}

*{margin:0;padding:0;box-sizing:border-box}

html{scroll-behavior:smooth}

body{
    font-family:'Montserrat',sans-serif;
    background:var(--bg);
    color:var(--text);
}

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:22px 7%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    backdrop-filter:blur(12px);
    background:rgba(0,0,0,.35);
    border-bottom:1px solid rgba(255,255,255,.08);
    z-index:999;
}

.logo{
    font-size:2rem;
    font-weight:700;
    letter-spacing:4px;
}

.logo span{
    color:var(--accent);
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:28px;
    transition:.35s;
}

nav a:hover{
    color:var(--accent);
}

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:0 8%;
    overflow:hidden;
    background:
    linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.90)),
    url("../images/hero.jpg") center center/cover no-repeat;
}

.hero-content{
    max-width:650px;
    position:relative;
    z-index:5;
}

.tag{
    color:var(--accent);
    text-transform:uppercase;
    letter-spacing:4px;
    margin-bottom:18px;
}

.hero h1{
    font-size:4rem;
    line-height:1.1;
    margin-bottom:25px;
}

.lead{
    color:var(--muted);
    line-height:1.8;
    font-size:1.1rem;
}

.button{
    display:inline-block;
    margin-top:35px;
    padding:16px 36px;
    background:var(--accent);
    color:#000;
    text-decoration:none;
    font-weight:700;
    border-radius:40px;
    transition:.35s;
}

.button:hover{
    transform:translateY(-4px);
    box-shadow:0 0 30px rgba(0,210,190,.5);
}

.hero-light{
    position:absolute;
    top:95px;
    left:-30%;
    width:60%;
    height:3px;
    background:linear-gradient(90deg,transparent,var(--accent),transparent);
    animation:light 7s linear infinite;
    opacity:.9;
}

@keyframes light{
0%{transform:translateX(-20%)}
100%{transform:translateX(240%)}
}

section{
    padding:90px 8%;
}

h2{
    font-size:2.3rem;
    margin-bottom:40px;
}

.cars{
    background:#090909;
}

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

.card{
    background:var(--panel);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(10px);
    overflow:hidden;
    border-radius:18px;
    transition:.35s;
}

.card:hover{
    transform:translateY(-10px);
    border-color:var(--accent);
}

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

.card h3{
    padding:20px 20px 10px;
}

.card p{
    padding:0 20px 24px;
    color:var(--muted);
}

.about,.contact{
    background:var(--bg2);
}

footer{
    padding:35px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.08);
    color:#888;
}

@media(max-width:900px){

.header{
flex-direction:column;
gap:15px;
}

nav a{
margin:0 10px;
}

.hero h1{
font-size:2.6rem;
}

.hero{
text-align:center;
justify-content:center;
}

}
