@charset "utf-8";

/* Neuer Themen-Footer oberhalb vom bisherigen Footer */
.hintergundbild-footer{	
  background-image: url('/images/footer.jpg');
    background-size: cover;
  background-repeat: no-repeat;
}
.info-footer {
  background-color:rgba(255,255,255,0.90);
  padding: 40px 20px 10px;
  border-top: 4px solid #3F918E;
  position: relative;
  z-index: 1;
}

.footer-sections {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1 1 200px;
  margin: 10px;
}

.footer-column h4 {
  font-size: 1.3em;
  margin-bottom: 0.75em;
  font-weight:bold;
  color: #2a2a2a;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 0.5em;
  
}

.footer-column a {
  text-decoration: none;
  color: black;
  transition: color 0.3s;
  font-size:1em;
}

.footer-column a:hover {
  color: #666;
}


/* Responsive Anpassung */
@media (max-width: 768px) {
  .footer-column a {

  font-size:1.2em;
}
.footer-column h4{
 
  font-size:1.3em;
}

  .footer-column {
    margin-bottom: 20px;
  }
  .hintergundbild-footer{	
 
  background-position: center;
 
}
.info-footer{ background-color:#ffffffd0 !important;}
}

/* ========================================== */
/* Footer-Stil (unten auf der Seite)       */
/* ========================================== */

/* ===== Footer im Menü-Look (Aqua-Verlauf) ===== */
.main-footer{
  /* Verlauf wie die Topbar */
  background: linear-gradient(180deg, var(--menu-blue1) 0%, var(--menu-blue2) 100%);
  color: #1C1B1B;
  text-shadow: 0 1px 2px rgba(0,0,0,.25);   /* bessere Lesbarkeit */

  /* Spacing */
  padding: 0.8em;
  padding-top: 0.6em;                      /* statt 0.1 ohne Einheit */
  font-size: clamp(0.9rem, 1.5vw, 1rem);

  /* Abschlusslinie optional dunkler */
  border-top: 4px solid rgba(0,0,0,.15);

  /* oben leicht Schatten für Tiefe */
  box-shadow: 0 -2px 8px rgba(0,0,0,.12) inset;
  text-align: center;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Footer-Navigationslinks */
.footer-links {
  margin: 1em 0;
  display: flex;
  justify-content: center;
  gap: 1.5em;
  flex-wrap: wrap;
}

.footer-links a {
  color: #2A2A2A;
  text-decoration: none;
  font-weight: bold;
  font-size: clamp(1.2rem, 1.5vw, 1.25rem);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #0A63D9;
}
/* Copyright-Text im Footer */
.footer-copy {
  margin-top: 1em;
  font-size: clamp(1.15rem, 1.2vw, 1.2rem);
}