/* ===== Footer ===== */

footer {
  font-size: 0.85rem;
  letter-spacing: -0.01em;
  color: var(--white);
  text-align: center;
  padding-top: var(--section-pad-top);
  padding-bottom: calc(var(--section-pad-bottom)/1.5);
}

@media (max-width: 480px) {
  footer {
    font-size: 0.75rem;
    padding-top: var(--section-pad-top-mobile);
    padding-bottom: calc(var(--section-pad-bottom-mobile)/2);
  }
}

/* Footer-Navigation: horizontal, zentriert */
footer nav {
  margin-top: .5rem;
}
footer nav ul { 
  list-style: none;
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 0;
  margin: .25rem 0 0;
}
footer nav li {
  margin: 0;
}
footer nav a {
  color: inherit;           /* Farben kommen aus .footer-link oder Parent */
  text-decoration: none;
}
footer nav a:hover,
footer nav a:focus-visible {
  text-decoration: none;
}

/* ===== Footer Layout (Meta-Bereich) ===== */
.footer-meta{
  display:grid;
  gap:1rem 2rem;
  align-items:center;
  text-align:center;
  grid-template-columns:1fr; /* mobile */
}

/* Desktop: zwei Spalten – Legal links, Social rechts */
@media (min-width:769px){
  .footer-meta{
    grid-template-columns:1fr auto;
    text-align:left;
  }
}

/* --- Legal-Bereich --- */
.footer-legal{
  display:grid;
  gap:.5rem;
  justify-items:center;
}
@media (min-width:769px){
  .footer-legal{ justify-items:start; }
}
.footer-copy{ 
  margin:0;
  font-weight: 400;
}


.footer-links ul{
  display:flex;
  gap:1.25rem;
  list-style:none;
  padding:0;
  margin:0;
}

/* Einheitliche Footer-Links */
.footer-link{
  color:var(--text-light-gray);
  text-decoration:none;
  transition:color .2s linear;
}
.footer-link:hover,
.footer-link:focus-visible{
  text-decoration:underline;
}

/* Aktiver Menüpunkt */
.footer-links a.active {
  color: var(--text-light-gray);
  text-decoration:underline;
}

/* ===== Footer Social Icons ===== */
.footer-social{
  margin-top:.5rem;
  display:flex;
  justify-content:center; /* mobile: zentriert */
  gap:.75rem;
}

@media (min-width:769px){
  .footer-social{ justify-content:end; }
}

@media (max-width:768px){
  .footer-social{
    gap:1.25rem; 
    margin-bottom:.75rem;
  }
}
