/* ===== Footer ===== */
footer {
  background-color: #1c1c1c;
  color: #f4f4f4;
  padding: 40px 25px;
  border-top: 3px solid #ff6600;
}

.footer-top {
  display: flex;
  justify-content: space-between; /* Verteilt Spalten nach außen */
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto 30px auto;
  gap: 20px;
}

/* Linke Spalte: Nimmt den restlichen Platz ein */
.footer-col-left {
  flex: 1; 
  text-align: left;
}

/* Rechte Spalte: So schmal wie möglich, Text rechtsbündig */
.footer-col-right {
  flex: 0 1 auto; 
  text-align: right;
  white-space: nowrap; /* Verhindert ungewollten Zeilenumbruch der Links */
}

/* Spezifisch für die Spalten im Footer */
.footer-col-left ul li a,
.footer-col-right a {
  text-decoration: underline;      /* Dauerhafte Unterstreichung */
  text-decoration-thickness: 1px;  /* Optionale Feinheit der Linie */
  text-underline-offset: 3px;      /* Abstand zum Text für bessere Lesbarkeit */
  transition: color 0.3s, text-shadow 0.3s;
}

/* Hover-Effekt für bessere Interaktivität */
.footer-col-left ul li a:hover,
.footer-col-right a:hover {
  color: #ffaa33;                  /* Helleres Orange beim Hover */
  text-decoration: underline;      /* Bleibt unterstrichen */
  text-shadow: 0 0 8px rgba(255, 170, 51, 0.4);
}

.footer-col-left h3 {
  color: #ff6600;
  margin-bottom: 15px;
  font-size: 1.2rem;
}
.footer-col-left h3 {
  text-decoration: none;
  color: #ff6600;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-col-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  text-align: center;
  line-height: 1.8;
}
.footer-bottom p strong {
  color: #ff6600;
}

/* ===== Mobile Optimierung (Smartphone) ===== */
@media (max-width: 600px) {
  .footer-top {
    flex-direction: column; /* Stapelt Spalte 1/1 und 1/2 untereinander */
    align-items: center;    /* Zentriert die Container */
    text-align: center;     /* Zentriert den Textinhalt */
    gap: 30px;
  }

  .footer-col-left, 
  .footer-col-right {
    flex: 1 1 100%;
    text-align: center;     /* Erzwingt mittige Ausrichtung auf Mobile */
  }
}