/* datei: /public/css/footer.css
   thesweeper - footer styles (modern, logo-palette: blue + ember + silver)
*/

.site-footer{
  margin-top: 42px;
  border-top: 1px solid rgba(243,246,246,0.10);
  background: rgba(2, 2, 3, 0.76);
  position: relative;
}

.site-footer::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(1000px 340px at 18% 10%, rgba(33,172,218,0.14), transparent 62%),
    radial-gradient(900px 340px at 84% 10%, rgba(193,100,46,0.08), transparent 64%),
    linear-gradient(180deg, rgba(243,246,246,0.05), transparent 55%),
    var(--scanline);
  opacity: .60;
}

.site-footer::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 1px;
  pointer-events:none;
  background: linear-gradient(90deg,
    transparent,
    rgba(33,172,218,0.36),
    rgba(243,246,246,0.14),
    rgba(193,100,46,0.26),
    transparent
  );
  opacity: .75;
}

.footer-inner{
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 18px;
  padding: 26px 0;
  align-items: start;
}

.footer-brand-row{
  display:flex;
  gap: 18px;
  align-items: center;
}

/* logo: deutlich größer + ohne "button-look" */
.footer-logo{
  width: 128px;
  height: 128px;
  border-radius: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  position: relative;
  flex: 0 0 auto;
}

/* remove any decorative overlay completely */
.footer-logo::before{
  content: none;
}

.footer-logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
  filter: saturate(1.06) contrast(1.08);
}

.footer-brand{
  display:flex;
  flex-direction: column;
  gap: 6px;
}

.footer-title{
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 14px;
  color: rgba(243,246,246,0.96);
}

.footer-tag{
  color: rgba(182,190,196,0.86);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: var(--font-display);
}

.footer-muted{
  margin: 14px 0 0;
  color: rgba(182,190,196,0.90);
  line-height: 1.75;
  max-width: 58ch;
  font-size: 14px;
}

/* links nebeneinander */
.footer-links{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  padding-top: 10px;
}

.footer-link{
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;

  color: rgba(182,190,196,0.92);
  padding: 10px 12px;
  border-radius: 16px;

  border: 1px solid rgba(243,246,246,0.10);
  background: rgba(11,16,34,0.22);
  transition: transform .12s ease, border-color .12s ease, background .12s ease, color .12s ease, box-shadow .12s ease;
}

.footer-link:hover{
  transform: translateY(-1px);
  border-color: rgba(33,172,218,0.24);
  background: rgba(11,16,34,0.34);
  color: rgba(243,246,246,0.96);
  box-shadow: 0 16px 44px rgba(0,0,0,0.32);
}

.footer-right{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  padding-top: 10px;
}

.status-pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(33,172,218,0.18);
  background: rgba(11,16,34,0.22);
  box-shadow: 0 18px 70px rgba(0,0,0,0.28);
}

.status-dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(33,172,218,0.92);
  box-shadow: 0 0 0 3px rgba(33,172,218,0.12);
}

.status-text{
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(182,190,196,0.92);
}

.footer-copy{
  font-size: 12px;
  color: rgba(182,190,196,0.76);
  letter-spacing: 0.06em;
}

@media (max-width: 980px){
  .footer-inner{
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .footer-right{
    align-items: flex-start;
  }
}

@media (max-width: 560px){
  .footer-logo{
    width: 104px;
    height: 104px;
  }
  .footer-links{
    padding-top: 6px;
  }
}
