@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600&display=swap');

:root {
  --primary: #2a4d7a;
}

.site-footer {
  margin-top: 0;
  border-top: 1px solid #fff !important;
}

/* Update Footer 15.08.2025*/

.footer-content {
  max-width: 600px;
  margin: 0 auto;
  color: #ccc;
  text-align: center; /* 👈 DAS FEHLTE */
}

/* ⚡ NEU: für beide Logos gleich */
.logo,
.footer-logo {
  width: 90px;
  height: auto;
  margin: 1rem auto 1.2rem auto; /* oben 1rem Abstand, unten 1.2rem */
  opacity: 0.85;
  display: block;
}

.footer-text {
  font-size: 0.95rem;
  margin: 0.3rem 0;
  color: #ccc;
}

.footer-slogan {
  font-style: italic;
  color: var(--primary);
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.footer-contact a {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-contact a:hover {
  text-decoration: underline;
}


.footer-links {
    font-size: 0.95rem;
    margin: 0.5rem 0 0 0;
    color: #ccc;
}

.footer-links a {
    color: var(--primary);
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.tagline {
    font-style: italic;
    color: var(--primary);
    font-size: 0.9em;
}

.bank-details {
    font-size: 0.9em;
    color: #666;
    display: block;
    margin-top: 0.5rem;
}

/* Responsive Anpassungen */
@media (max-width: 480px) {
    .footer-content {
        padding: 0 1rem;
    }
    
    .footer-contact a {
        display: block;
        margin: 0.3rem 0;
    }
}




