/* ===== Footer ===== */
.site-footer{
  background: #F2F8FC;              /* passt zu deinem hellblauen Bereich */
  color: var(--clr-text);
  padding: 48px 0 28px;
}

.footer-inner{ padding-inline: 20px; }

.footer-grid{
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.footer-brand .brand{ text-decoration:none; color: inherit; gap: 12px; }
.footer-logo{ height: 64px; width: auto; }
.footer-tagline{ margin: 6px 0 0; color:#6b7280; }

.footer-title{
  margin: 0 0 10px;
  font-weight: 800;
  color: var(--clr-accent);
}

.footer-address a{ color: inherit; text-decoration: none; border-bottom: 1px solid rgba(0,0,0,.1); }
.footer-address a:hover{ color: var(--clr-accent); border-bottom-color: var(--clr-accent); }

.footer-hours{ list-style:none; margin:0; padding:0; }
.footer-note{ margin:.5rem 0 0; color:#6b7280; }

.footer-links{
  list-style:none; margin:0 0 10px; padding:0;
  display:grid; gap:6px;
}
.footer-links a{
  color: inherit; text-decoration:none;
  position: relative;
}
.footer-links a:hover{ color: var(--clr-accent); }

/* Social */
.footer-social{ margin-top: 10px; display:flex; gap:10px; }
.social-btn{
  display:inline-flex; align-items:center; justify-content:center;
  width:40px; height:40px; border-radius:10px;
  background:#fff; border:1px solid rgba(0,0,0,.08);
  box-shadow:0 6px 16px rgba(0,0,0,.06);
  transition: transform .15s ease, box-shadow .15s ease, background-color .2s ease;
}
.social-btn svg{ width:20px; height:20px; fill: var(--clr-accent); }
.social-btn:hover{
  transform: translateY(-2px);
  box-shadow:0 10px 22px rgba(0,0,0,.1);
  background: rgba(80,122,156,.08);
}

/* Divider + Meta */
.footer-rule{
  margin: 28px 0;
  height: 1px; border: 0;
  background: rgba(0,0,0,.08);
}

.footer-meta{
  display:flex; flex-wrap:wrap;
  gap: 12px;
  align-items:center;
  justify-content: space-between;
  font-size: .95rem;
  color:#4b5563;
}
.footer-made{ color:#475569; }

/* Responsive */
@media (max-width: 900px){
  .footer-grid{ 
    flex-direction: column; 
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 560px){
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-meta{ justify-content:center; text-align:center; gap:6px; }
  /* 1) Logo größer */
  .site-footer .footer-logo{
    height: 84px;            /* vorher 64px */
  }

  /* 2) Alles zentrieren + mehr Abstand zwischen den Blöcken */
  .site-footer .footer-grid{
    grid-template-columns: 1fr;  /* eine Spalte */
    text-align: center;
    gap: 28px;                    /* mehr Luft zwischen den Blöcken */
  }
  .site-footer .footer-brand,
  .site-footer .footer-col,
  .site-footer .footer-title,
  .site-footer .footer-address,
  .site-footer .footer-hours,
  .site-footer .footer-links{
    text-align: center;
  }
  .site-footer .footer-col + .footer-col{
    margin-top: 6px; /* kleiner Zusatzabstand oben */
  }

  /* 3) Instagram-Icon oberhalb vom Copyright */
  .site-footer .footer-social{
    justify-content: center;
    order: 0;
    margin: 10px 0 6px;      /* steht sichtbar über der Copyright-Zeile */
  }

  .copyright_ {
    order: 1;
  }

  /* Meta-Zeile darunter stapeln & zentrieren */
  .site-footer .footer-meta{
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
  }

  /* Falls das IG-Icon in deiner Basis versehentlich in .footer-meta liegt,
     dann nach unten ausblenden und die Variante im Grid nutzen: */
  .site-footer .footer-meta .footer-social{ display: none; }
}
