/* ============================================================
   CUB3SOFT – Einheitlicher Site-Footer (framework-unabhängig)
   Gegenstück zu css/navbar.css; Styleguide: Türkis #2dafc8.
   ============================================================ */

.site-footer {
  position: relative;
  z-index: 1;
  background: rgba(10, 13, 17, 0.92);
  border-top: 1px solid rgba(45, 175, 200, 0.2);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0;
}

.site-footer *,
.site-footer *::before,
.site-footer *::after { box-sizing: border-box; }

.site-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem 24px 1.5rem;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 2.5rem;
  padding-bottom: 2.2rem;
}

.site-footer-brand img {
  height: 32px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(45, 175, 200, 0.25));
}

.site-footer-brand p {
  margin: 0 0 0.8rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #5ee7ff;
  text-shadow: 0 0 10px rgba(45, 175, 200, 0.6);
}

.site-footer a:focus-visible {
  outline: 2px solid #5ee7ff;
  outline-offset: 2px;
  border-radius: 4px;
}

.site-footer-col { display: flex; flex-direction: column; gap: 0.55rem; }

.site-footer-head {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2dafc8;
  margin-bottom: 0.35rem;
}

.site-footer-col a { font-size: 0.88rem; line-height: 1.5; }

.site-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  border-top: 1px solid rgba(45, 175, 200, 0.14);
  padding-top: 1.4rem;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer-bottom p { margin: 0; }

.site-footer-bottom .bi { color: #2dafc8; }

@media (max-width: 991px) {
  .site-footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .site-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .site-footer-grid { grid-template-columns: 1fr; }
  .site-footer-bottom { flex-direction: column; align-items: flex-start; }
}
