/* footer.css */

.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 2.5rem 0 0;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.contact-icon {
  font-size: 1rem;
  width: 20px;
  text-align: center;
  filter: drop-shadow(0 1px 2px rgba(99, 102, 241, 0.3));
}
.contact-link {
  color: var(--text-secondary);
  transition: color 0.2s ease;
  text-decoration: none;
  position: relative;
}
.contact-link:hover {
  color: var(--text-primary);
}
.swiss-flag {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 0.3rem;
  display: inline-block;
  vertical-align: middle;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.03) 0%, transparent 50%);
  pointer-events: none;
}
.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 2rem;
  align-items: start;
}
.footer-brand {
  max-width: 300px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(99, 102, 241, 0.3));
}
.footer-brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}
.footer-tagline {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.footer-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0;
}
.footer-section {
  display: flex;
  flex-direction: column;
}
.footer-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}
.footer-title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 1px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-link {
  color: var(--text-secondary);
  font-size: 0.9rem;
  /* Transition nur für Hover */
  transition: color 0.2s ease, transform 0.2s ease;
  position: relative;
  padding-left: 0;
  display: inline-block;
}
.footer-link:hover {
  color: var(--text-primary);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-bottom {
  padding: 1.5rem 0;
}
.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copyright {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

[data-theme="light"] .footer-bottom {
  background: transparent;
}
[data-theme="dark"] .footer-bottom {
  background: transparent;
}@media (min-width: 769px){
.footer-section:hover .footer-title {
      color: var(--text-primary);
    }

    .footer-section:hover .footer-title::after {
      width: 50px;
      background: var(--text-secondary);
    }
}