* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: Arial, sans-serif;
  background: #0b0b0b;
  color: white;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}


.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 20px;
  background: #111;
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  height: 200px;
  width: auto;
  display: block;
  
}

.changelang img {

   height: 20px;
    width: auto;
  display: block;
  margin-left: 15px;
  
}

.menu {
  display: flex;
  gap: 25px;
 
}

.menu a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.menu a:hover {
  color: #ff9900;
}


.dropdown {
  position: relative;
  cursor: pointer;
}

.dropdown-content {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.2s ease;

  position: absolute;
  top: 100%;
  right: 0;
  background: #111;
  min-width: 160px;
  border: 1px solid #333;
  border-radius: 6px;
  z-index: 1000;
}

.dropdown-content a {
  display: block;
  padding: 10px;
}

.dropdown-content a:hover {
  background: #1a1a1a;
}


.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: white;
}


.hero-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}


#scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}


.hero-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}


.hero-content {
  position: relative;
  z-index: 2;
}


.text {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 350px 0;
 
}

.textg {
  max-width: 900px;
  text-align: center;
  line-height: 1.6;
}

.home {
  color: #ff9900;
  font-size: clamp(20px, 3vw, 32px);
  margin-top: 20px;
}


img {
  max-width: 100%;
  height: auto;
  display: block;
}

.img3,
.img4,
.img2,
.imgpaket {
  width: 100%;
  max-width: 400px;
  margin: 20px auto;
}

img.imgpaket{

    margin-bottom: 150px;
}

.imgdoku {
  width: 300px;
  height: auto;
  object-fit: contain;
}


.form-wrapper {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
}


.hero-side {
  position: absolute;
  right: 20px;
  top: 70%;
  transform: translateY(-50%);
  z-index: 2;
}


.abschnitt {
  background: #111;
  padding: 20px;
  margin: 20px auto;
  border-radius: 10px;
  border: 1px solid #222;
  max-width: 900px;
}

.abschnitt h1,
.abschnitt h2 {
  color: #ff9900;
  margin-bottom: 10px;
}


.Textfelder {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 500px;
}

input,
textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #333;
  background: #111;
  color: white;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.DatumTransport {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.Fracht {
  display: flex;
  flex-direction: column;
  gap: 10px;
}


button {
  background: #ff9900;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background: #ffaa33;
}


footer {
  text-align: center;
  padding: 20px;
  background: #111;
  border-top: 1px solid #222;
  color: #ff9900;
  margin-top: auto;
}


@media (max-width: 768px) {

  .menu {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    flex-direction: column;
    background: #111;
    width: 220px;
    padding: 10px;
    border: 1px solid #333;
  }

  #menu-toggle:checked + .hamburger + .menu {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .DatumTransport {
    flex-direction: column;
  }

  button {
    width: 100%;
  }

  .textg {
    padding: 0 10px;
  }
    .form-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .imgdoku {
    width: 60%;
  }

  .Textfelder {
    width: 100%;
  }
}