/* =========================================================
   Projekt: HelionForge
   Datei: /public/css/footer.css

   Ziel:
   - AAA Sci-Fi Footer (clean, nicht zu düster)
   - Trading Card UI Feeling
   - KEIN harter „Kasten“ mehr um den kompletten Footer-Block
   - Farben passend zum HelionForge-Logo (Steel + Ember)
========================================================= */

.site-footer{
  position: relative;
  z-index: 1;
  margin-top: 46px;
}

/* optional: Divider (auf Index blendest du ihn aus) */
.footer-divider{
  height: 2px;
  background:
    linear-gradient(90deg,
      transparent,
      rgba(255,122,26,.20),   /* ember */
      rgba(241,199,109,.22),  /* warm gold */
      rgba(207,214,230,.18),  /* steel */
      transparent
    );
  opacity: .75;
}

/* Footer soll sich ins BG einfügen */
.footer-shell{
  max-width: var(--w);
  margin: 0 auto;
  padding: 22px 18px 30px;
  background: transparent;
  border-top: 0;
}

/* Kein harter Kasten: nur weiche „Glass“-Fläche */
.footer-grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;

  padding: 18px;
  border-radius: var(--radius);

  border: 0;
  background:
    radial-gradient(900px 240px at 18% -40px, rgba(255,122,26,.10), transparent 70%),
    radial-gradient(900px 240px at 86% -40px, rgba(241,199,109,.08), transparent 70%),
    radial-gradient(900px 260px at 50% -60px, rgba(207,214,230,.06), transparent 72%),
    linear-gradient(180deg, rgba(255,255,255,.030), rgba(255,255,255,.012));
  box-shadow: none;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Spalten: dezent trennen */
.footer-col{
  display:flex;
  flex-direction:column;
  gap: 10px;
  min-height: 120px;
}

/* Desktop: feine Spaltentrennung (warm/steel, nicht weiß) */
@media (min-width: 961px){
  .footer-col{
    padding-right: 10px;
  }
  .footer-col:not(:last-child){
    border-right: 1px solid rgba(207,214,230,.08);
    padding-right: 18px;
  }
  .footer-col:not(:first-child){
    padding-left: 18px;
  }
}

.footer-title{
  font-weight: 950;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(238,241,255,.84);
}

.footer-text{
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

/* Links: ember hover */
.footer-links{
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.footer-links a{
  color: rgba(238,241,255,.78);
  font-weight: 700;
  font-size: 14px;
  opacity: .92;
  transition: opacity .12s ease, transform .12s ease, color .12s ease;
}
.footer-links a:hover{
  opacity: 1;
  transform: translateX(2px);
  color: rgba(241,199,109,.92);
}

.footer-badges{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.badge{
  display:inline-flex;
  align-items:center;
  height: 22px;
  padding: 0 10px;
  border-radius: 999px;

  border: 1px solid rgba(207,214,230,.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  color: rgba(238,241,255,.74);

  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* Bottom: weich, integriert */
.footer-bottom{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;

  padding: 14px 6px 0;
  margin-top: 10px;

  border-top: 1px solid rgba(207,214,230,.08);
}

.footer-copy{
  color: rgba(238,241,255,.66);
  font-size: 13px;
}

.footer-meta{
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(238,241,255,.58);
  font-size: 13px;
}

.meta-dot{
  opacity:.35;
}

/* Responsive */
@media (max-width: 960px){
  .footer-grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-col{
    border-right: 0 !important;
    padding: 0 !important;
  }

  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width: 420px){
  .footer-shell{
    padding: 18px 14px 26px;
  }
  .footer-grid{
    padding: 14px;
  }
}
