/* ================================================================
   social.css — Facebook & Instagram link styles
   Three variants: topbar, footer, mobile
   ================================================================ */

/* ── SHARED ── */
.social-topbar,
.social-footer-links,
.social-mobile-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ================================================================
   VARIANT 1: TOP BAR — tiny icon-only circles
   ================================================================ */
.social-topbar {
  margin-left: 10px;
}

.social-topbar-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: transparent;
  color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.18);
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  text-decoration: none;
  flex-shrink: 0;
}

.social-topbar-link:hover {
  color: #fff;
  border-color: rgba(255,255,255,.45);
  transform: translateY(-1px);
}

.social-topbar-link.social-fb:hover  { background: #1877F2; border-color: #1877F2; }
.social-topbar-link.social-ig:hover  {
  background: radial-gradient(circle at 30% 110%, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
}

/* ================================================================
   VARIANT 2: FOOTER — icon + name pill buttons
   ================================================================ */
.social-footer {
  margin-top: 20px;
}

.social-footer-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 10px;
}

.social-footer-links {
  gap: 10px;
}

.social-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 10px;
  border-radius: 9px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  font-family: 'Jost', sans-serif;
  transition: background .2s, color .2s, border-color .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}

.social-footer-link:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.3);
}

.social-footer-link.social-fb:hover {
  background: #1877F2;
  border-color: #1877F2;
}

.social-footer-link.social-ig:hover {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 20%, #dc2743 45%, #cc2366 72%, #bc1888 100%);
  border-color: transparent;
}

.social-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255,255,255,.1);
  transition: background .2s;
  flex-shrink: 0;
}

.social-footer-link:hover .social-icon-wrap {
  background: rgba(255,255,255,.15);
}

.social-footer-name {
  letter-spacing: .2px;
}

/* ================================================================
   VARIANT 3: MOBILE DRAWER — full-width pair of buttons
   ================================================================ */
.social-mobile {
  margin-top: 4px;
  padding: 16px 20px 20px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.social-mobile-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 10px;
}

.social-mobile-links {
  gap: 10px;
}

.social-mobile-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 0;
  border-radius: 9px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  font-family: 'Jost', sans-serif;
  transition: background .2s, color .2s;
}

.social-mobile-link:active { opacity: .8; }

.social-mobile-link.social-fb:hover  { background: #1877F2; border-color: #1877F2; color: #fff; }
.social-mobile-link.social-ig:hover  {
  background: linear-gradient(135deg, #f09433 0%, #dc2743 50%, #bc1888 100%);
  border-color: transparent;
  color: #fff;
}
