/* 
 * Footer CSS für wissen4vertrieb.de
 * Definiert den Seitenfuß und zugehörige Elemente
 */

/* Basis-Footer */
footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 30px 0;
  margin-top: 40px;
  border-top: 3px solid var(--accent-color);
}

/* Footer-Listen */
footer .list-inline {
  margin: 0;
}

footer .list-inline-item:not(:last-child) {
  margin-right: 1rem;
}

/* Footer-Links */
footer .list-inline-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--transition-fast) ease;
  font-size: 0.9rem;
}

footer .list-inline-item a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Footer-Abschnitte */
.footer-section {
  margin-bottom: var(--spacing-lg);
}

.footer-section h5 {
  color: white;
  margin-bottom: var(--spacing-md);
  font-weight: 600;
  font-size: var(--text-lg);
}

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

.footer-section ul li {
  margin-bottom: var(--spacing-xs);
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--transition-fast) ease;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Footer-Copyright */
.footer-copyright {
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
}

/* Footer-Social-Media-Icons */
.footer-social {
  display: flex;
  gap: var(--spacing-sm);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transition: background-color var(--transition-fast) ease;
}

.footer-social a:hover {
  background-color: var(--primary-color);
  color: white;
}

/* MLM Verwalter Footer-Box Stile */
.footer-content-box,
.contact-box {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px; /* Erhöhter Innenabstand oben und unten */
}

.footer-content-box p:last-child,
.contact-box div:last-child {
  margin-bottom: 0; /* Entfernt den unteren Rand beim letzten Element */
}

/* Zusätzliche Stile für die Geschäftszeiten */
.business-hours {
  margin-bottom: 0;
}

.business-hours .business-hours-item {
  margin-bottom: 4px;
}

.business-hours .business-hours-item:last-child {
  margin-bottom: 0;
}

/* Responsive Anpassungen */
@media (max-width: 767px) {
  .footer-section {
    margin-bottom: var(--spacing-xl);
  }
  
  .footer-copyright {
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
    margin-top: var(--spacing-md);
  }
} 