/* ============================================================
   UNIFIED FOOTER — ACTIVATED Network (alle Kern-Sites)
   Desktop: Logo | Divisions | Social — Legal+Copyright unten
   Stand: 21.03.2026
   ============================================================ */

:root {
  --uf-brand: #6CFF00;
  --uf-brand-rgb: 108, 255, 0;
  --uf-records: #6CFF00;
  --uf-records-rgb: 108, 255, 0;
  --uf-agency: #CCFF00;
  --uf-agency-rgb: 204, 255, 0;
  --uf-store: #00FF6C;
  --uf-store-rgb: 0, 255, 108;
}

.unified-footer {
  position: relative;
  width: 100%;
  margin-top: auto;
  font-family: 'Rajdhani', 'Inter', 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* --- Gleam Line --- */
.uf-gleam {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(var(--uf-brand-rgb), 0.3) 15%, rgba(var(--uf-brand-rgb), 0.8) 35%, rgba(var(--uf-brand-rgb), 1) 50%, rgba(var(--uf-brand-rgb), 0.8) 65%, rgba(var(--uf-brand-rgb), 0.3) 85%, transparent 100%);
  box-shadow: 0 0 8px rgba(var(--uf-brand-rgb), 0.4), 0 0 20px rgba(var(--uf-brand-rgb), 0.15);
}

/* --- Glass --- */
.uf-glass {
  position: relative;
  background: rgba(8, 8, 8, 0.6);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.uf-glass::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(var(--uf-brand-rgb), 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.uf-glass::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

/* --- Inner: Desktop 3 Spalten oben + Bottom Bar --- */
.uf-inner {
  position: relative;
  z-index: 2;
  max-width: 68rem;
  margin: 0 auto;
  padding: 2rem 2.5rem 1rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem 2rem;
  align-items: center;
}

/* --- LINKS: Logo --- */
.uf-col-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

/* --- MITTE: Divisions --- */
.uf-col-center {
  display: flex;
  justify-content: center;
}

/* --- RECHTS: Social Icons --- */
.uf-col-right {
  display: flex;
  justify-content: flex-end;
}

/* --- BOTTOM BAR: Legal + Copyright --- */
.uf-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* --- Logo --- */
.uf-logo {
  display: block;
  transition: opacity 0.3s ease, filter 0.3s ease;
}
.uf-logo:hover {
  opacity: 0.85;
  filter: drop-shadow(0 0 12px rgba(var(--uf-brand-rgb), 0.3));
}
.uf-logo img {
  height: 34px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

/* --- Divisions --- */
.uf-divisions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.uf-division {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.uf-division:hover { transform: translateY(-3px); }
.uf-division-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  background: rgba(255, 255, 255, 0.02);
}
.uf-division-circle img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.uf-division:hover .uf-division-circle img { opacity: 1; }
.uf-division-label {
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Division Hover Colors */
.uf-division[data-brand="records"]:hover .uf-division-circle { border-color: rgba(var(--uf-records-rgb), 0.5); box-shadow: 0 0 16px rgba(var(--uf-records-rgb), 0.2), 0 0 40px rgba(var(--uf-records-rgb), 0.08); background: rgba(var(--uf-records-rgb), 0.06); }
.uf-division[data-brand="records"]:hover .uf-division-label { color: var(--uf-records); text-shadow: 0 0 12px rgba(var(--uf-records-rgb), 0.4); }
.uf-division[data-brand="agency"]:hover .uf-division-circle { border-color: rgba(var(--uf-agency-rgb), 0.5); box-shadow: 0 0 16px rgba(var(--uf-agency-rgb), 0.2), 0 0 40px rgba(var(--uf-agency-rgb), 0.08); background: rgba(var(--uf-agency-rgb), 0.06); }
.uf-division[data-brand="agency"]:hover .uf-division-label { color: var(--uf-agency); text-shadow: 0 0 12px rgba(var(--uf-agency-rgb), 0.4); }
.uf-division[data-brand="store"]:hover .uf-division-circle { border-color: rgba(var(--uf-store-rgb), 0.5); box-shadow: 0 0 16px rgba(var(--uf-store-rgb), 0.2), 0 0 40px rgba(var(--uf-store-rgb), 0.08); background: rgba(var(--uf-store-rgb), 0.06); }
.uf-division[data-brand="store"]:hover .uf-division-label { color: var(--uf-store); text-shadow: 0 0 12px rgba(var(--uf-store-rgb), 0.4); }

/* Active State */
.uf-division.uf-active .uf-division-circle { border-color: rgba(var(--uf-brand-rgb), 0.35); box-shadow: 0 0 12px rgba(var(--uf-brand-rgb), 0.1); background: rgba(var(--uf-brand-rgb), 0.04); }
.uf-division.uf-active .uf-division-circle img { opacity: 1; }
.uf-division.uf-active .uf-division-label { color: rgba(255, 255, 255, 0.65); }

/* --- Social Icons --- */
.uf-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
}
.uf-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: all 0.35s ease;
  background: rgba(255, 255, 255, 0.03);
}
.uf-social-link:hover {
  color: rgb(var(--uf-brand-rgb));
  border-color: rgba(var(--uf-brand-rgb), 0.5);
  box-shadow: 0 0 10px rgba(var(--uf-brand-rgb), 0.25), 0 0 25px rgba(var(--uf-brand-rgb), 0.1);
  background: rgba(var(--uf-brand-rgb), 0.06);
  transform: translateY(-1px);
}
.uf-social-link svg {
  width: 0.8rem;
  height: 0.8rem;
  fill: currentColor;
}

/* Hidden Social Icons (bleiben im HTML, nur visuell ausgeblendet) */
.uf-social-link[aria-label="Spotify"],
.uf-social-link[aria-label="SoundCloud"],
.uf-social-link[aria-label="X"],
.uf-social-link[aria-label="Linktree"] {
  display: none;
}

/* --- Legal Links (Bottom Bar, eine Zeile, zentriert) --- */
.uf-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.uf-legal-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.uf-legal-row a {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 0.2rem 0;
}
.uf-legal-row a:hover {
  color: rgba(var(--uf-brand-rgb), 0.85);
}
.uf-legal-sep {
  color: rgba(var(--uf-brand-rgb), 0.25);
  margin: 0 0.4rem;
  font-size: 0.5rem;
  font-weight: 300;
}
.uf-copy {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.2);
  text-align: center;
  margin: 0;
  letter-spacing: 0.08em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet — alles zentriert, gestackt, grosszuegiger als Mobile */
@media (max-width: 1023px) {
  .uf-inner {
    grid-template-columns: 1fr;
    padding: 2rem 2rem 1rem;
    gap: 1.25rem;
    justify-items: center;
    text-align: center;
  }
  .uf-col-left {
    align-items: center;
  }
  .uf-col-center {
    justify-content: center;
  }
  .uf-col-right {
    justify-content: center;
  }
  .uf-social {
    justify-content: center;
  }
  .uf-division-circle { width: 44px; height: 44px; }
  .uf-divisions { gap: 2.5rem; }
  .uf-logo img { height: 32px; }
}

/* Mobile */
@media (max-width: 767px) {
  .uf-inner {
    grid-template-columns: 1fr;
    padding: 1.5rem 1.25rem 1rem;
    gap: 1rem;
    text-align: center;
  }
  .uf-col-left { align-items: center; }
  .uf-col-center { order: 0; }
  .uf-col-right { justify-content: center; }
  .uf-logo img { height: 30px; }
  .uf-divisions { gap: 2rem; }
  .uf-division-circle { width: 44px; height: 44px; }
  .uf-division-label { font-size: 0.6rem; }
  .uf-social { justify-content: center; flex-wrap: wrap; gap: 0.6rem; }
  .uf-social-link { width: 2.75rem; height: 2.75rem; }
  .uf-social-link svg { width: 0.85rem; height: 0.85rem; }
  /* X, Linktree, SoundCloud, Spotify already hidden globally */

  /* Legal: kompaktes Grid */
  .uf-legal { flex-direction: column; gap: 0; width: 100%; }
  .uf-legal-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
  }
  .uf-legal-sep { display: none; }
  .uf-legal-row a {
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    text-align: center;
    padding: 0.45rem 0.15rem;
    line-height: 1.3;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }
  .uf-copy { font-size: 0.55rem; }
}

/* Ultra-Small Mobile */
@media (max-width: 480px) {
  .uf-legal-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 0.8rem;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .uf-division, .uf-social-link, .uf-logo { transition: none; }
}
