* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  background-color: #000;
}

/* Oberer Bereich */
#top-section {
  background-color: #eae7e1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
}

#top-section img {
  height: 100px;
}

/* Trennlinie */
.divider {
  width: 100%;
}

.divider .black-line {
  height: 1px;
  background-color: #000;
}

.divider .orange-line {
  height: 1px;
  background-color: #f57c32;
}

/* Schwarzer Bereich mit Logos */
#bottom-wrapper {
  background-color: #000;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 140px 0 80px 0; /* oben mehr Abstand zur Linie */
}

#bottom-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding: 0 40px;
}

.logo-left,
.logo-right {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Bilder */
.logo-left img,
.logo-right img {
  max-width: 300px;
  height: auto;
  display: block;
}

/* Interaktivität (Hover, Glanz, Schatten) */
.logo-left a,
.logo-right a {
  position: relative;
  display: inline-block;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.logo-left a::after,
.logo-right a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.05);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
  pointer-events: none;
}

.logo-left a:hover,
.logo-right a:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(255, 165, 0, 0.3);
}

.logo-left a:hover::after,
.logo-right a:hover::after {
  opacity: 1;
}

/* Footer */
#footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 100px 20px 80px 20px;
  font-size: 14px;
}

.footer-inner {
  display: inline-block;
  text-align: center;
  max-width: 90%;
}

.footer-line {
  height: 1px;
  background-color: #fff;
  width: 85%;
  margin: 0 auto 20px auto;
}

#footer p {
  margin: 0 auto;
  max-width: 100%;
}

#footer a {
  color: #f57c32;
  text-decoration: none;
}

#footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  #top-section img {
    height: auto;
    max-width: 80%;
  }

  #bottom-section {
    flex-direction: column;
    align-items: center;
    gap: 80px; /* mehr Abstand zwischen den beiden Logos */
  }

  .logo-left,
  .logo-right {
    width: 100%;
    margin-bottom: 0;
  }

  .logo-left a,
  .logo-right a {
    max-width: 80%;
  }

  .logo-left img,
  .logo-right img {
    max-width: 100%;
  }
}
