/* ================================
   Footer layout
   ================================ */

.site-footer {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.footer-inner {
  width: 100%;
  max-width: 1160px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 4px 4px;  /* a little more vertical padding */
  gap: 16px;            /* slightly more breathing room */
}

.footer-left {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.footer-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(184, 194, 230, 0.7);
}

.footer-handle {
  font-size: 13px;
  font-weight: 600;
  color: #f7f8ff;
}

/* ================================
   Social icon base
   ================================ */

.footer-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-icons a {
  text-decoration: none;
}

.social-icon {
  width: 46px;          /* was 40px */
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;      /* was 18px */
  color: #0b101b;
  background: #ffffff;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.78),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    filter 0.16s ease,
    background 0.16s ease,
    color 0.16s ease;
}

.social-icon:hover {
  transform: translateY(-2px) scale(1.08);
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  filter: brightness(1.1);
}

.social-icon i {
  line-height: 1;
}

/* ================================
   Platform colours
   ================================ */

/* Instagram */
.social-icon--instagram {
  background: radial-gradient(circle at 30% 0,
      #fdf497 0,
      #fdf497 5%,
      #fd5949 45%,
      #d6249f 60%,
      #285aeb 90%);
  color: #fff;
}

/* Threads */
.social-icon--threads {
  background: #000;
  color: #fff;
}

/* X / Twitter */
.social-icon--x {
  background: #000;
  color: #fff;
}

/* Twitch */
.social-icon--twitch {
  background: #9146ff;
  color: #fff;
}

/* Reddit */
.social-icon--reddit {
  background: #ff4500;
  color: #fff;
}

/* LinkedIn */
.social-icon--linkedin {
  background: #0a66c2;
  color: #fff;
}

/* OnlyFans */
.social-icon--onlyfans {
  background: linear-gradient(135deg, #29c7f2, #0aa0d8);
  color: #fff;
}

/* Facebook (if you add it) */
.social-icon--facebook {
  background: #1877f2;
  color: #fff;
}

/* TikTok (optional future-proof) */
.social-icon--tiktok {
  background: #000;
  color: #fff;
}

/* ================================
   Responsive tweaks just for footer
   ================================ */

@media (max-width: 900px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-icons {
    gap: 8px;
  }
}

@media (max-width: 540px) {
  .social-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}