/* =========================================================
   LOOTR
   Datei: /public/css/footer.css
   Zweck:
   - Premium Footer Look (clean, keine billo Kästchen)
   - Links als Textlinks
   - Social Icons als Premium Buttons (Icon only)
========================================================= */

.site-footer{
  margin-top: 80px;
  padding: 46px 0 36px;

  border-top: 1px solid rgba(255,255,255,0.08);

  background:
    radial-gradient(1200px 400px at 30% 0%, rgba(255,106,0,0.10), transparent 60%),
    radial-gradient(900px 340px at 110% 40%, rgba(255,176,0,0.07), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.35));
}

/* Inner */
.footer__inner{
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Top area */
.footer-top{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Brand */
.footer-brand{
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand__logo-wrap{
  width: 46px;
  height: 46px;
  border-radius: 18px;

  display: grid;
  place-items: center;

  /* CLEAN, kein "Kästchen-Look" */
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);

  box-shadow:
    0 20px 60px rgba(0,0,0,0.55),
    0 0 40px rgba(255,106,0,0.10);
}

.footer-brand__logo{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,0.55));
}

.footer-brand__meta{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-brand__name{
  font-weight: 950;
  letter-spacing: 0.10em;
  font-size: 13px;
  color: rgba(255,255,255,0.92);
}

.footer-brand__tagline{
  font-size: 12px;
  color: rgba(255,255,255,0.62);
}

/* Social: icon buttons only */
.footer-social{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Button base */
.social-btn{
  width: 44px;
  height: 44px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(120px 80px at 30% 20%, rgba(255,106,0,0.16), transparent 62%),
    rgba(255,255,255,0.03);

  box-shadow:
    0 18px 60px rgba(0,0,0,0.45);

  transition: transform .12s ease, border-color .12s ease, filter .12s ease, box-shadow .12s ease;
}

/* kill the "TikTok/YouTube/Instagram" text */
.social-btn span{
  display: none;
}

.social-btn svg{
  opacity: 0.92;
  transform: translateY(0px);
}

.social-btn:hover{
  transform: translateY(-2px);
  border-color: rgba(255,106,0,0.35);
  filter: brightness(1.06);
  box-shadow:
    0 24px 80px rgba(0,0,0,0.55),
    0 0 40px rgba(255,106,0,0.18);
}

.social-btn:active{
  transform: translateY(0px);
  filter: brightness(0.98);
}

/* Mid area: Links + Note */
.footer-mid{
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 10px;
}

/* Links = clean text style */
.footer-links{
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
}

/* each link */
.footer-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 0;
  border: none;
  background: transparent;

  color: rgba(255,255,255,0.74);
  font-weight: 850;
  font-size: 12px;
  letter-spacing: 0.03em;

  position: relative;
  transition: color .12s ease, transform .12s ease;
}

/* remove boxy icon background */
.footer-link__icon{
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-link__icon svg{
  transform: translateY(0.5px);
  opacity: 0.85;
}

/* premium underline glow */
.footer-link::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,106,0,0.0), rgba(255,106,0,0.65), rgba(255,176,0,0.0));
  opacity: 0;
  transform: translateY(2px);
  transition: opacity .12s ease, transform .12s ease;
}

.footer-link:hover{
  color: rgba(255,255,255,0.92);
  transform: translateY(-1px);
}

.footer-link:hover::after{
  opacity: 1;
  transform: translateY(0px);
}

/* Note becomes premium text block */
.footer-note{
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-note__title{
  font-weight: 950;
  letter-spacing: 0.06em;
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 6px;
}

.footer-note__text{
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255,255,255,0.60);
  max-width: 72ch;
}

/* Bottom */
.footer-bottom{
  display: flex;
  flex-direction: column;
  gap: 10px;

  padding-top: 18px;
  margin-top: 6px;

  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-copy{
  font-size: 12px;
  color: rgba(255,255,255,0.62);
}

.footer-copy__brand{
  color: rgba(255,255,255,0.92);
  font-weight: 950;
}

.footer-mini{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.52);
}

.footer-mini__dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(255,106,0,0.35);
}

/* Desktop layout */
@media (min-width: 880px){
  .site-footer{
    padding: 56px 0 40px;
  }

  .footer-top{
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer-mid{
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 26px;
  }

  .footer-links{
    gap: 18px 22px;
  }

  .footer-note{
    max-width: 420px;
  }

  .footer-bottom{
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
