/* ---------------- Grundlegendes ---------------- */
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:system-ui,-apple-system,Segoe UI,Roboto;
background:#f5f6f8;
color:#222;
line-height:1.6;
}


/* ===== CONTAINER ===== */

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}


/* ===== HEADER ===== */

header{
background:white;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 2px 15px rgba(0,0,0,0.08);
}

header .container{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
}

.logo{
font-weight:700;
font-size:20px;
color:#111;
}

nav a{
margin-left:18px;
text-decoration:none;
font-weight:600;
padding:8px 16px;
border-radius:8px;
transition:0.3s;
color:#111;
}

nav a:hover{
background:#111;
color:white;
}


/* ===== HERO SECTION ===== */

.hero{
position:relative;
height:90vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
overflow:hidden;
}

/* Hintergrundbild */

.hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;

background-image:url("../images/cars.jpg");
background-size:cover;
background-position:center;

filter:blur(4px);
transform:scale(1.05);

z-index:-2;
}

/* dunkles Overlay */

.hero::after{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;

background:rgba(0,0,0,0.55);

z-index:-1;
}

.hero-content{
max-width:900px;
padding:20px;
}

.hero h1{
font-size:48px;
margin-bottom:20px;
font-weight:700;
letter-spacing:1px;
text-shadow:0 4px 15px rgba(0,0,0,0.6);
}

.hero p{
font-size:20px;
margin-bottom:30px;
opacity:0.95;
text-shadow:0 3px 10px rgba(0,0,0,0.6);
}


/* ===== BUTTON ===== */

.btn{
background:#ff6b00;
padding:14px 28px;
color:white;
border-radius:10px;
text-decoration:none;
font-weight:600;
display:inline-block;
transition:0.3s;
}

.btn:hover{
background:#e35d00;
transform:translateY(-2px);
}


/* ===== SECTIONS ===== */

section{
padding:80px 0;
}

.section-light{
background:white;
}

h2{
text-align:center;
margin-bottom:50px;
font-size:32px;
}


/* ===== GRID ===== */

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}


/* ===== CARDS ===== */

.card{
background:white;
padding:30px;
border-radius:14px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
text-align:center;
transition:0.3s;
}

.card:hover{
transform:translateY(-6px);
box-shadow:0 15px 30px rgba(0,0,0,0.15);
}

.service-icon{
font-size:45px;
color:#ff6b00;
margin-bottom:15px;
}


/* ===== TRUST SECTION ===== */

.trust{
background:#f5f6f8;
}


/* ===== KONTAKT ===== */

form{
max-width:600px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

input,textarea{
padding:12px;
border-radius:6px;
border:1px solid #ccc;
font-size:15px;
width:100%;
}

button{
border:none;
cursor:pointer;
}

.contact-info{
text-align:center;
margin-top:25px;
}


/* ===== MAP ===== */

.map{
margin-top:40px;
border-radius:12px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}


/* ===== FOOTER ===== */

footer{
background:#111;
color:white;
text-align:center;
padding:30px;
margin-top:40px;
}


/* ===== WHATSAPP BUTTON ===== */

.whatsapp{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
color:white;
font-size:26px;
padding:14px 18px;
border-radius:50%;
box-shadow:0 6px 20px rgba(0,0,0,0.2);
z-index:1000;
transition:0.3s;
}

.whatsapp:hover{
transform:scale(1.1);
}


/* ===== RESPONSIVE ===== */

@media(max-width:768px){

.hero h1{
font-size:32px;
}

.hero p{
font-size:16px;
}

header .container{
flex-direction:column;
gap:10px;
}

.grid{
grid-template-columns:1fr;
}

}