body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.5;
  color: #222;
}

a {
  color: inherit;
  text-decoration: none;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.705);
  padding: 0 60px;
  height: 70px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  color: white;
}

.nav-list {
  display: flex;
  flex-direction: row;
  gap: 20px;
  list-style: none;
  flex-wrap: nowrap;
  white-space: nowrap;
  margin: 0;
  padding: 0;
}

.nav-list li {
  flex-shrink: 0;
  min-width: auto;
}

.nav-list li a {
  color: white;
  font-weight: bold;
  font-size: 16px;
  white-space: nowrap;
  transition: transform 0.2s;
}

.logo {
  height: 50px;
}

.nav-list li:hover {
  transform: scale(1.05);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle img {
  height: 30px;
  width: 30px;
  object-fit: contain;
}

.hero-section {
  position: relative;
  height: 750px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
  padding: 0 60px;
}

.background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 90%;
  object-fit: cover;
  filter: brightness(0.4);
  z-index: -1;
}

.text .welcome {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.text .uwelcome {
  font-size: 20px;
  font-weight: 300;
  color: #ffffffb3;
}

section {
  max-width: 1000px;
  margin: auto;
  margin-top: -30px;
  text-align: center;
  padding: 0 60px;
}

.info-text h2,
.fahrzeuge-text h2 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 600;
}

.info-text p {
  font-size: 18px;
  color: #444;
}

.contact-section {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 40px auto 80px;
  padding: 0 60px;
  gap: 40px;
}

.contact-form {
  flex: 1;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 16px;
  resize: vertical;
}

.contact-form textarea {
  min-height: 120px;
}

.contact-form button {
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: rgba(0, 0, 0, 0.85);
}

.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
  font-size: 16px;
  text-align: left;
}

.contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: #000000;
}

.contact-info img {
  width: 24px;
  height: 24px;
  margin-top: 3px;
}

.contact-info .main {
  font-weight: 700;
  color: #222;
}

.site-footer {
  background: #111;
  color: white;
  padding: 60px 20px 20px;
  font-size: 14px;
  margin-top: 50px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 60px;
}

.footer-column {
  flex: 1 1 200px;
}

.footer-logo {
  height: 60px;
  margin-bottom: 10px;
}

.footer-column h3 {
  font-size: 16px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.footer-column p,
.footer-column a,
.footer-column li {
  color: #ccc;
  margin: 6px 0;
  line-height: 1.4;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column a:hover {
  color: white;
}

.fahrzeuge-button {
  display: inline-block;
  padding: 8px 16px;
  background: #444;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  margin-top: 10px;
}

.fahrzeuge-button:hover {
  background: #666;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom .social-icons {
  margin-bottom: 10px;
}

.footer-bottom .social-icons a img {
  height: 20px;
  margin: 0 6px;
  filter: brightness(0) invert(1);
}

.footer-bottom .legal-links {
  margin: 10px 0;
}

.footer-bottom .legal-links a {
  margin: 0 10px;
  text-decoration: none;
  color: #ccc;
}

.footer-bottom .legal-links a:hover {
  color: white;
}

.footer-column .icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 8px;
  filter: brightness(0) invert(1);
}

@media (max-width: 1024px) {
  .hero-section {
    height: 500px;
    padding: 0 40px;
  }
  
  section {
    padding: 0 40px;
  }
  
  .contact-section {
    padding: 0 40px;
  }

  .footer-container {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 20px;
    height: 70px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-list {
    position: absolute;
    top: 70px;
    right: 20px;
    background: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    gap: 10px;
    width: 200px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    display: none;
    white-space: normal;
    z-index: 1000;
  }

  .nav-list.nav-list--visible {
    display: flex;
  }

  .nav-list li a {
    font-size: 18px;
    padding: 8px 10px;
    display: block;
  }

  .hero-section {
    height: 350px;
    padding: 0 20px;
  }

  .text .welcome {
    font-size: 24px;
  }

  .text .uwelcome {
    font-size: 16px;
  }

  section {
    max-width: 100%;
    margin-top: 10px;
    padding: 0 20px;
  }
  .contact-section {
    flex-direction: column;
    padding: 0 20px;
    margin: 30px auto 60px;
    gap: 30px;
  }

  .contact-info {
    font-size: 15px;
    gap: 20px;
  }

  .contact-info p {
    font-size: 15px;
  }

  .footer-container {
    flex-direction: column;
    padding: 0 20px;
    gap: 30px;
  }
}