
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}
body{
background:#080808;
color:white;
line-height:1.6;
}
header{
position:fixed;
width:100%;
top:0;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 40px;
background:rgba(0,0,0,.85);
backdrop-filter:blur(8px);
z-index:1000;
}
.logo{
height:70px;
border-radius:50%;
}
nav a{
color:white;
text-decoration:none;
margin-left:25px;
font-weight:bold;
}
.hero{
height:100vh;
background:url('images/bmw-main.jpg') center/cover no-repeat;
position:relative;
display:flex;
align-items:center;
padding:0 8%;
}
.overlay{
position:absolute;
inset:0;
background:linear-gradient(to right, rgba(0,0,0,.85), rgba(0,0,0,.3));
}
.hero-content{
position:relative;
max-width:650px;
z-index:2;
}
.hero h1{
font-size:5rem;
line-height:1;
margin-bottom:20px;
}
.hero p{
font-size:1.3rem;
margin-bottom:35px;
color:#ddd;
}
.buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
}
.btn{
background:#c89b4d;
color:black;
padding:15px 28px;
border-radius:6px;
text-decoration:none;
font-weight:bold;
}
.secondary{
background:transparent;
border:1px solid #c89b4d;
color:#c89b4d;
}
section{
padding:90px 8%;
}
h2{
font-size:2.5rem;
margin-bottom:35px;
}
.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}
.card{
background:#141414;
padding:35px;
border:1px solid #2c2c2c;
border-radius:12px;
text-align:center;
font-weight:bold;
}
.gallery{
background:#111;
}
.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:20px;
}
.grid img{
width:100%;
height:300px;
object-fit:cover;
border-radius:12px;
}
.about{
background:#0d0d0d;
}
.contact{
background:#111;
}
footer{
text-align:center;
padding:30px;
background:#000;
color:#888;
}
@media(max-width:768px){
header{
flex-direction:column;
gap:10px;
padding:15px;
}
.hero h1{
font-size:3rem;
}
.hero{
padding-top:100px;
}
}
