/* Belanna – Social Media (Hero, Spotlight, Footer) */

:root {
  --social-ig: hsl(330, 45%, 72%);
  --social-tt: hsl(185, 55%, 68%);
}

.hero-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.hero-social-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-right: 0.15rem;
}

.hero-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid hsla(30, 40%, 70%, 0.28);
  background: hsla(160, 25%, 10%, 0.55);
  color: var(--fg);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  transition: border-color 0.25s, background 0.25s, color 0.25s, transform 0.25s;
}

.hero-social-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hero-social-link:hover {
  transform: translateY(-1px);
  color: var(--accent);
  border-color: hsla(25, 55%, 70%, 0.55);
  background: hsla(25, 55%, 70%, 0.08);
}

.hero-social-link.instagram:hover { border-color: hsla(330, 45%, 72%, 0.55); color: var(--social-ig); }
.hero-social-link.tiktok:hover { border-color: hsla(185, 55%, 68%, 0.55); color: var(--social-tt); }

.social-spotlight {
  position: relative;
  padding: 4.5rem 2rem;
  background:
    linear-gradient(180deg, hsla(25, 55%, 70%, 0.06), transparent 42%),
    linear-gradient(115deg, hsl(160, 22%, 10%), hsl(160, 26%, 7%));
  border-top: 1px solid hsla(30, 40%, 70%, 0.12);
  border-bottom: 1px solid hsla(30, 40%, 70%, 0.12);
}

.social-spotlight::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: var(--gold-grad, linear-gradient(115deg, hsl(30, 50%, 82%), hsl(20, 55%, 68%), hsl(35, 60%, 80%)));
}

.social-spotlight-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.social-spotlight-inner h2 {
  font-family: var(--serif, "Cormorant Garamond", Georgia, serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  letter-spacing: 0.03em;
  color: var(--accent, hsl(25, 55%, 75%));
  margin-bottom: 0.75rem;
}

.social-spotlight-lead {
  color: var(--fg-muted, hsl(30, 10%, 65%));
  font-size: 1rem;
  max-width: 34rem;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

.social-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}

.social-spotlight-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.9rem;
  padding: 1.15rem 1.2rem;
  text-decoration: none;
  color: var(--fg, hsl(30, 15%, 90%));
  border: 1px solid hsla(30, 40%, 70%, 0.22);
  background: hsla(160, 25%, 8%, 0.72);
  transition: transform 0.28s, border-color 0.28s, box-shadow 0.28s, background 0.28s;
}

.social-spotlight-card:hover {
  transform: translateY(-3px);
  border-color: hsla(25, 55%, 70%, 0.45);
  box-shadow: 0 18px 48px hsla(160, 30%, 3%, 0.55);
  background: hsla(160, 22%, 11%, 0.92);
}

.social-spotlight-card.instagram:hover { border-color: hsla(330, 45%, 72%, 0.45); }
.social-spotlight-card.tiktok:hover { border-color: hsla(185, 55%, 68%, 0.45); }

.social-spotlight-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid hsla(30, 40%, 70%, 0.25);
  background: hsla(25, 55%, 70%, 0.07);
  color: var(--accent, hsl(25, 55%, 75%));
}

.social-spotlight-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  text-align: left;
}

.social-spotlight-text b {
  font-family: var(--serif, "Cormorant Garamond", Georgia, serif);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.social-spotlight-text span {
  font-size: 0.82rem;
  color: var(--fg-muted, hsl(30, 10%, 65%));
  letter-spacing: 0.06em;
}

.social-spotlight-cta {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft, hsl(25, 45%, 62%));
  white-space: nowrap;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 0.25rem auto 1.6rem;
  max-width: 28rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.62rem 1rem;
  border: 1px solid hsla(30, 40%, 70%, 0.22);
  background: hsla(160, 22%, 10%, 0.55);
  color: var(--fg, hsl(30, 15%, 90%));
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  transition: color 0.25s, border-color 0.25s, background 0.25s, transform 0.25s;
}

.footer-social-link svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.footer-social-link:hover {
  transform: translateY(-2px);
  color: var(--accent, hsl(25, 55%, 75%));
  border-color: hsla(25, 55%, 70%, 0.45);
  background: hsla(25, 55%, 70%, 0.08);
}

.footer-social-link.instagram:hover { color: var(--social-ig); border-color: hsla(330, 45%, 72%, 0.45); }
.footer-social-link.tiktok:hover { color: var(--social-tt); border-color: hsla(185, 55%, 68%, 0.45); }

@media (max-width: 900px) {
  .social-spotlight {
    padding: 3.5rem max(1.25rem, env(safe-area-inset-right)) 3.5rem max(1.25rem, env(safe-area-inset-left));
  }

  .social-spotlight-grid {
    grid-template-columns: 1fr;
    max-width: 22rem;
  }

  .social-spotlight-card {
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
  }

  .social-spotlight-cta {
    grid-column: 2;
    justify-self: start;
    margin-top: -0.15rem;
  }

  .hero-social {
    justify-content: center;
  }

  .hero-social-label {
    width: 100%;
    text-align: center;
    margin-right: 0;
    margin-bottom: 0.15rem;
  }
}

@media (max-width: 900px) {
  .hero-inner { text-align: center; }
}
