/* ============================================================
   Collenberg Transporte – Hauptstylesheet
   Farben: Weiß dominierend, Blau als Akzent (#1a4b8c, #2563eb)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@400;500&display=swap');

:root {
  --blue-dark:   #0f2d5c;
  --blue-main:   #1a4b8c;
  --blue-mid:    #2563eb;
  --blue-light:  #dbeafe;
  --blue-pale:   #f0f6ff;
  --white:       #ffffff;
  --gray-50:     #f9fafb;
  --gray-100:    #f3f4f6;
  --gray-200:    #e5e7eb;
  --gray-400:    #9ca3af;
  --gray-600:    #4b5563;
  --gray-800:    #1f2937;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 4px 16px rgba(15,45,92,.10);
  --shadow-lg:   0 8px 32px rgba(15,45,92,.14);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  .25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.25;
  color: var(--blue-dark);
}

a { color: var(--blue-mid); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-main); }

img { max-width: 100%; height: auto; display: block; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--blue-mid);
  color: var(--white);
  border-color: var(--blue-mid);
}
.btn-primary:hover {
  background: var(--blue-main);
  border-color: var(--blue-main);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,99,235,.35);
}
.btn-outline {
  background: transparent;
  color: var(--blue-mid);
  border-color: var(--blue-mid);
}
.btn-outline:hover {
  background: var(--blue-mid);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-white {
  background: var(--white);
  color: var(--blue-main);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--blue-pale);
  color: var(--blue-dark);
}

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue-dark);
  text-decoration: none;
}
.navbar-brand .brand-icon {
  width: 38px; height: 38px;
  background: var(--blue-mid);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.navbar-brand .brand-accent { color: var(--blue-mid); }

/* SVG / Bild-Logo in der Navbar */
.nav-logo-svg {
  height: 46px;
  width: auto;
  max-width: 220px;
  display: block;
}
.nav-logo-img {
  height: 46px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
}
@media (max-width: 768px) {
  .nav-logo-svg,
  .nav-logo-img { height: 36px; max-width: 160px; }
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}
.navbar-nav a {
  color: var(--gray-600);
  font-weight: 500;
  padding: .5rem .9rem;
  border-radius: 7px;
  transition: all var(--transition);
  font-size: .95rem;
}
.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--blue-mid);
  background: var(--blue-pale);
}
.navbar-nav .btn { padding: .5rem 1.2rem; font-size: .9rem; color: white;}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: .5rem;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 1rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-md);
  z-index: 999999;
  flex-direction: column;
  gap: .25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--gray-600);
  font-weight: 500;
  padding: .75rem 1rem;
  border-radius: 8px;
  display: block;
  transition: all var(--transition);
  z-index: 99999999;
}
.mobile-nav a:hover, .mobile-nav a.active {
  color: var(--blue-mid);
  background: var(--blue-pale);
}

/* ── Hero ── */
.hero {
  min-height: 60vh;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-main) 50%, var(--blue-mid) 100%);
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-shape {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.hero h1 .highlight {
  color: #93c5fd;
}
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}
.hero-stat {
  color: var(--white);
}
.hero-stat .num {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: #93c5fd;
}
.hero-stat .label {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  margin-top: .25rem;
}

/* ── Sections ── */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-alt { background: var(--gray-50); }
.section-blue { background: var(--blue-pale); }

.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 3.5rem;
}
.section-label {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-mid);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: .9rem;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: .75rem;
}
.section-header p {
  color: var(--gray-600);
  font-size: 1.05rem;
}

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-mid), var(--blue-main));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--blue-light);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.service-card p {
  color: var(--gray-600);
  font-size: .95rem;
  line-height: 1.65;
}

/* ── Why Us ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 1.25rem; }
.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}
.why-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .2rem;
}
.why-item p { color: var(--gray-600); font-size: .9rem; }

.why-visual {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-main));
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why-visual::before {
  content: '🚛';
  position: absolute;
  font-size: 8rem;
  opacity: .08;
  top: -1rem; right: -1rem;
  transform: rotate(-15deg);
}
.why-numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.why-num .n {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #93c5fd;
  line-height: 1;
}
.why-num .l {
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  margin-top: .3rem;
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-main));
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  color: var(--white);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(37,99,235,.3) 0%, transparent 60%);
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  position: relative;
  margin-bottom: .75rem;
}
.cta-banner p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  position: relative;
}
.cta-banner .btn-group {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  position: relative;
}

/* ── Contact Form ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-info h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
.contact-info p { color: var(--gray-600); margin-bottom: 2rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  margin-bottom: 1.25rem;
}
.contact-detail-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
}
.contact-detail-text strong { display: block; font-weight: 600; font-size: .9rem; color: var(--blue-dark); }
.contact-detail-text span { color: var(--gray-600); font-size: .9rem; }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  color: var(--blue-dark);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: all var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group .full { grid-column: 1 / -1; }

.form-alert {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.25rem;
  font-size: .95rem;
  font-weight: 500;
}
.form-alert.success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.form-alert.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ── About Page ── */
.about-content {
  max-width: 800px;
  margin: 0 auto;
}
.about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.about-content p {
  color: var(--gray-600);
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ── Page Header ── */
.page-header {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-main) 100%);
  padding: 1rem 0 1rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-header h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); position: relative; }
.page-header p { color: rgba(255,255,255,.8); font-size: 1.1rem; position: relative; margin-top: .75rem; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 1rem;
  font-size: .85rem;
  position: relative;
}
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb span { color: rgba(255,255,255,.4); }
.breadcrumb .current { color: #93c5fd; }

/* ── Footer ── */
.footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-brand .brand-icon {
  width: 34px; height: 34px;
  background: var(--blue-mid);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.footer-col p { font-size: .9rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-col h4 {
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: #93c5fd; }
.footer-contact-item {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-size: .9rem;
  margin-bottom: .6rem;
}
.footer-contact-item span:first-child { flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .85rem;
}
.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
}
.footer-bottom-links a { color: rgba(255,255,255,.5); }
.footer-bottom-links a:hover { color: #93c5fd; }

/* ── Admin styles (basic, included here for completeness) ── */
.admin-body {
  background: var(--gray-100);
  min-height: 100vh;
}
.admin-notice {
  padding: .6rem 1rem;
  border-radius: 6px;
  font-size: .88rem;
  font-weight: 500;
}
.admin-notice.success { background: #ecfdf5; color: #065f46; }
.admin-notice.error   { background: #fef2f2; color: #991b1b; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }
}

@media (max-width: 768px) {
  .navbar-nav { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 6rem 0 3rem; }
  .hero-stats { gap: 1.5rem; }

  .services-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cta-banner { padding: 2.5rem 1.5rem; }

  .section { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .contact-form-wrap { padding: 1.5rem; }
}

/* ── HTML-Seiteninhalte (TinyMCE) ── */
.page-html-content h1,
.page-html-content h2,
.page-html-content h3,
.page-html-content h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--blue-dark);
  margin: 2rem 0 .75rem;
  line-height: 1.3;
}
.page-html-content h2 { font-size: 1.75rem; }
.page-html-content h3 { font-size: 1.3rem; }
.page-html-content h4 { font-size: 1.1rem; }
.page-html-content p  { color: var(--gray-600); margin-bottom: 1rem; line-height: 1.8; }
.page-html-content a  { color: var(--blue-mid); text-decoration: underline; }
.page-html-content ul,
.page-html-content ol { margin: .75rem 0 .75rem 1.5rem; color: var(--gray-600); line-height: 1.8; }
.page-html-content li { margin-bottom: .3rem; }
.page-html-content img { max-width: 100%; height: auto; border-radius: 10px; margin: .75rem 0; }
.page-html-content table { width: 100%; border-collapse: collapse; margin: 1.25rem 0; }
.page-html-content td,
.page-html-content th { border: 1px solid var(--gray-200); padding: .65rem 1rem; text-align: left; }
.page-html-content th { background: var(--gray-50); font-weight: 700; color: var(--blue-dark); }
.page-html-content tr:nth-child(even) td { background: var(--gray-50); }
.page-html-content blockquote {
  border-left: 4px solid var(--blue-mid);
  margin: 1.25rem 0;
  padding: .75rem 1.25rem;
  background: var(--blue-pale);
  border-radius: 0 8px 8px 0;
  color: var(--blue-main);
  font-style: italic;
}
.page-html-content code {
  background: var(--gray-100);
  padding: .15rem .45rem;
  border-radius: 4px;
  font-family: monospace;
  font-size: .9em;
  color: var(--blue-main);
}
.page-html-content pre {
  background: var(--gray-800);
  color: #e2e8f0;
  padding: 1.25rem;
  border-radius: 8px;
  overflow-x: auto;
  font-family: monospace;
  font-size: .88rem;
  margin: 1rem 0;
}




/* STRASSE */
.road {
    position: relative;
    width: 123%;
    height: 315px;
    background: #3b3b3b;
    /*! transform-origin: bottom; */
    /*! transform-style: preserve-3d; */
    /*! transform: perspective(445px) rotateX(30deg); */
    overflow: hidden;
    right: 21%;
    top: 0%;
}

/* MITTELLINIE */
.road::before {
    content: '';
    position: absolute;
    top: 48%;
    left: 0;
    transform: translateY(-50%);
    width: 115%;
    height: 4px;
    background: linear-gradient(
        90deg,
        #fff 0%,
        #fff 70%,
        #525252 70%,
        #525252 100%
    );
    background-size: 57px;
    /*! animation: roadMove 1s linear infinite; */
}

@keyframes roadMove {
    from {
        background-position: 0;
    }
    to {
        background-position: -120px;
    }
}

/* UNTERSEITE */
.road::after {
    content: '';
    position: absolute;
    width: 70%;
    height: 30px;
    background: #333;
    bottom: -30px;
    transform-origin: top;
    transform: perspective(500px) rotateX(-25deg);
}

/* SCHATTEN */
.shadow {
    position: absolute;
    bottom: -93px;
    left: 50%;
    width: 95%;
    transform: translateX(-50%);
    height: 60px;
    background: linear-gradient(rgba(0,0,0,0.55), transparent);
}


.truck {
  position: absolute;
  bottom: 55px;
  width: 310px;
  animation: drive 11s linear infinite;
  z-index: 999999;
}

@keyframes drive {
  from {
    transform: translateX(100vw);
  }
  to {
    transform: translateX(-600px);
  }
}

.truck2 {
  position: absolute;
  bottom: -3px;
  width: 310px;
  animation: drive2 11s linear infinite;
  z-index: 999999;
}

@keyframes drive2 {
  from {
    transform: translateX(-600px);
  }
  to {
    transform: translateX(100vw);
  }
}

.scene {
  position: relative;
  /*! width: 115%; */
  height: 203px; /* WICHTIG */
  overflow: hidden;
  z-index: 999;
}