/* =========================================================
   LumaMotion
   Datei: /public/css/footer.css

   Zweck:
   - Premium Footer (clean + modern, passend zur Landing)
   - Glass-Card Look, feine Akzent-Highlights, Social Icons
   - Responsive Grid
   ========================================================= */

.lm-footer{
  padding: 42px 0 46px;
  background:
    radial-gradient(1200px 520px at 18% 10%, rgba(167, 201, 222, .22), transparent 55%),
    radial-gradient(900px 520px at 82% 20%, rgba(143, 180, 205, .18), transparent 60%),
    linear-gradient(180deg, rgba(241, 246, 251, 1) 0%, rgba(246, 248, 251, 1) 100%);
  border-top: 1px solid rgba(2, 6, 23, .08);
}

/* Card */
.lm-footer__card{
  position: relative;
  border-radius: 26px;
  background: rgba(255, 255, 255, .70);
  border: 1px solid rgba(2, 6, 23, .10);
  box-shadow: 0 22px 55px rgba(2, 6, 23, .10);
  overflow: hidden;
  backdrop-filter: blur(14px);
}

/* Soft glow accents */
.lm-footer__card::before{
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(520px 260px at 18% 20%, rgba(167, 201, 222, .35), transparent 60%),
    radial-gradient(520px 260px at 80% 20%, rgba(143, 180, 205, .26), transparent 60%);
  pointer-events: none;
  opacity: .9;
}

.lm-footer__card::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.35) 0%, rgba(255,255,255,0) 38%);
}

/* Grid */
.lm-footer__grid{
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr .75fr .85fr;
  gap: 22px;
  padding: 24px 24px 18px;
}

/* Columns */
.lm-footer__col{
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.lm-footer__colTitle{
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(71, 85, 105, .92);
  margin-bottom: 6px;
}

/* Brand row */
.lm-footer__brandRow{
  display: flex;
  align-items: center;
  gap: 12px;
}

.lm-footer__logo{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(2, 6, 23, .10);
  background: rgba(255,255,255,.85);
  box-shadow: 0 12px 26px rgba(2, 6, 23, .10);
}

.lm-footer__brandText{
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.lm-footer__brandName{
  font-weight: 1000;
  letter-spacing: -0.01em;
  font-size: 16px;
  color: rgba(31, 41, 55, 1);
}

.lm-footer__brandSub{
  margin-top: 4px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(71, 85, 105, .82);
}

/* Description */
.lm-footer__desc{
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(71, 85, 105, .94);
  max-width: 60ch;
}

/* Links */
.lm-footer__link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  color: rgba(31, 41, 55, .92);
  font-weight: 900;
  font-size: 13px;
  border: 1px solid rgba(2, 6, 23, .08);
  background: rgba(255, 255, 255, .60);
  box-shadow: 0 12px 26px rgba(2, 6, 23, .06);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.lm-footer__link:hover{
  transform: translateY(-1px);
  background: rgba(143, 180, 205, .18);
  border-color: rgba(143, 180, 205, .30);
  box-shadow: 0 18px 34px rgba(2, 6, 23, .10);
}

.lm-footer__link:active{
  transform: translateY(1px);
}

.lm-footer__link:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(143, 180, 205, .22), 0 18px 34px rgba(2, 6, 23, .10);
  border-color: rgba(143, 180, 205, .55);
}

/* Social row */
.lm-footer__socialRow{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.lm-footer__iconLink{
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(2, 6, 23, .10);
  background: rgba(255, 255, 255, .60);
  box-shadow: 0 12px 26px rgba(2, 6, 23, .06);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.lm-footer__iconLink:hover{
  transform: translateY(-1px);
  background: rgba(143, 180, 205, .18);
  border-color: rgba(143, 180, 205, .30);
  box-shadow: 0 18px 34px rgba(2, 6, 23, .10);
}

.lm-footer__iconLink:active{
  transform: translateY(1px);
}

.lm-footer__iconLink:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(143, 180, 205, .22), 0 18px 34px rgba(2, 6, 23, .10);
  border-color: rgba(143, 180, 205, .55);
}

.lm-footer__icon{
  width: 20px;
  height: 20px;
  fill: rgba(31, 41, 55, .92);
}

/* Contact */
.lm-footer__contact{
  margin-top: 6px;
}

.lm-footer__contactLink{
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(2, 6, 23, .08);
  background: rgba(255, 255, 255, .55);
  color: rgba(71, 85, 105, .96);
  font-weight: 900;
  font-size: 13px;
  box-shadow: 0 12px 26px rgba(2, 6, 23, .06);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.lm-footer__contactLink:hover{
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .75);
  border-color: rgba(143, 180, 205, .30);
  box-shadow: 0 18px 34px rgba(2, 6, 23, .10);
  color: rgba(31, 41, 55, 1);
}

/* Bottom bar */
.lm-footer__bottom{
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 14px 24px 18px;
  border-top: 1px solid rgba(2, 6, 23, .08);
  background: rgba(255, 255, 255, .45);
}

.lm-footer__bottomLeft{
  font-weight: 1000;
  color: rgba(31, 41, 55, .98);
  font-size: 13px;
}

.lm-footer__bottomRight{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(71, 85, 105, .78);
}

/* Responsive */
@media (max-width: 980px){
  .lm-footer{
    padding: 36px 0 40px;
  }

  .lm-footer__grid{
    grid-template-columns: 1fr 1fr;
  }

  .lm-footer__col--brand{
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px){
  .lm-footer__grid{
    grid-template-columns: 1fr;
    padding: 20px 18px 16px;
  }

  .lm-footer__bottom{
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 18px 16px;
  }

  .lm-footer__logo{
    width: 42px;
    height: 42px;
  }
}
