*{box-sizing:border-box}
body{margin:0;background:#050505;color:#fff;font-family:Arial,Helvetica,sans-serif}
a{text-decoration:none;color:inherit}

.site-header{
  background:#050505;
  border-bottom:3px solid #e30613;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 7%;
  position:sticky;
  top:0;
  z-index:50;
}

.logo-box img{
  max-height:70px;
  max-width:260px;
  object-fit:contain;
}

nav{
  display:flex;
  gap:24px;
}

nav a{
  text-transform:uppercase;
  font-size:13px;
  font-weight:800;
  color:#ddd;
}

nav a:hover{color:#e30613}

.hero{
  min-height:520px;
  background:
    linear-gradient(90deg,rgba(0,0,0,.95),rgba(0,0,0,.55)),
    url('garage-fahrzeuge.jpeg') center/cover no-repeat;
  display:flex;
  align-items:center;
}

.hero-overlay{
  width:100%;
  padding:70px 7%;
}

.hero-text{
  max-width:650px;
}

.hero-text p:first-child{
  color:#e30613;
  text-transform:uppercase;
  font-weight:900;
}

.hero h1{
  font-size:64px;
  line-height:.95;
  margin:10px 0;
  text-transform:uppercase;
}

.hero h2{
  font-size:34px;
  margin:0 0 20px;
  text-transform:uppercase;
}

.lead{
  color:#eee;
  font-size:20px;
  line-height:1.5;
}

.hero-buttons{
  display:flex;
  gap:14px;
  margin-top:25px;
  flex-wrap:wrap;
}

.hero-buttons a,
.red-btn,
.details{
  background:#e30613;
  color:white;
  padding:13px 22px;
  border-radius:4px;
  font-weight:900;
  text-transform:uppercase;
  display:inline-block;
}

.hero-buttons a:nth-child(2),
.hero-buttons a:nth-child(3){
  background:#111;
  border:1px solid #555;
}

.service-row{
  width:86%;
  margin:-45px auto 0;
  background:#111;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  box-shadow:0 20px 50px rgba(0,0,0,.45);
  position:relative;
  z-index:5;
}

.service-row div{
  padding:25px;
  border-right:1px solid #333;
  display:grid;
  grid-template-columns:55px 1fr;
  gap:5px 14px;
  align-items:center;
}

.service-row span{
  grid-row:span 2;
  background:#e30613;
  width:50px;
  height:50px;
  border-radius:8px;
  display:grid;
  place-items:center;
  font-size:25px;
}

.service-row b{
  text-transform:uppercase;
  font-size:15px;
}

.service-row p{
  color:#bbb;
  margin:0;
  font-size:14px;
}

.main-section{
  background:#f4f4f4;
  color:#111;
  padding:55px 7%;
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:35px;
}

.section-title{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:20px;
}

.section-title h3,
.right-area h3{
  text-transform:uppercase;
  font-size:26px;
  margin:0;
}

.section-title a{
  color:#e30613;
  font-weight:800;
}

.car-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.car-card{
  background:#fff;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.car-card img{
  width:100%;
  height:165px;
  object-fit:cover;
  display:block;
}

.car-card h4{
  margin:12px 12px 5px;
  font-size:17px;
}

.car-card p{
  margin:0 12px 8px;
  color:#555;
  font-size:14px;
}

.car-card strong{
  display:block;
  margin:0 12px 12px;
  color:#e30613;
  font-size:18px;
}

.car-card .details{
  margin:0 12px 14px;
  font-size:13px;
  padding:10px 14px;
}

.right-area{
  background:#fff;
  border-radius:8px;
  padding:28px;
  box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.right-area ul{
  list-style:none;
  padding:0;
  margin:22px 0;
}

.right-area li{
  margin:12px 0;
  padding-left:25px;
  position:relative;
}

.right-area li:before{
  content:"✓";
  color:#e30613;
  position:absolute;
  left:0;
  font-weight:bold;
}

.dark-section{
  background:#070707;
  padding:60px 7%;
}

.dark-section h2{
  text-transform:uppercase;
  font-size:36px;
}

.rent-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:25px;
}

.rent-grid div{
  background:#151515;
  padding:25px;
  border-radius:8px;
  border:1px solid #333;
  font-weight:800;
}

.wide-img{
  width:100%;
  max-width:800px;
  border-radius:10px;
  margin-top:20px;
}

.contact{
  background:#f4f4f4;
  color:#111;
  padding:60px 7%;
}

.contact h2{
  font-size:36px;
  text-transform:uppercase;
}

.whatsapp{
  position:fixed;
  right:24px;
  bottom:24px;
  background:#25d366;
  color:white;
  font-weight:900;
  padding:16px 24px;
  border-radius:999px;
  z-index:100;
  box-shadow:0 15px 40px rgba(37,211,102,.35);
}

footer{
  background:#000;
  color:#aaa;
  text-align:center;
  padding:28px;
}

@media(max-width:900px){
  .site-header{
    padding:16px 20px;
  }

  .logo-box img{
    max-height:55px;
    max-width:220px;
  }

  nav{
    display:none;
  }

  .hero{
    min-height:560px;
  }

  .hero-overlay{
    padding:60px 25px;
  }

  .hero h1{
    font-size:48px;
  }

  .hero h2{
    font-size:26px;
  }

  .service-row{
    width:100%;
    margin:0;
    grid-template-columns:1fr;
  }

  .service-row div{
    border-bottom:1px solid #333;
  }

  .main-section{
    grid-template-columns:1fr;
    padding:45px 20px;
  }

  .car-grid{
    grid-template-columns:1fr;
  }

  .car-card img{
    height:220px;
  }

  .rent-grid{
    grid-template-columns:1fr;
  }

  .whatsapp{
    right:18px;
    bottom:18px;
  }
}
.hero-top-image{
    width:100%;
    margin:0;
    padding:0;
}


.hero-top-image img{
    width:100%;
    max-height:300px;
    object-fit:cover;
    border-radius:15px;
    display:block;
}

.hero-top-image{
  width:90% !important;
  max-width:900px !important;
  margin:25px auto !important;
  padding:0 !important;
}

.hero-top-image img{
  width:100% !important;
  height:260px !important;
  max-height:260px !important;
  object-fit:cover !important;
  border-radius:14px !important;
  display:block !important;
}