/* ── Background image ── */
body::before {
  content: '';
  position: fixed;
  top: -20px;
  left: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  background-image: url(../media/images/bg_home_temp.png);
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(0.7) blur(10px);
  z-index: -1;
}

/* ── Hero ── */
#hero {
  font-family: "Uncial Antiqua", system-ui;
  font-weight: 400;
  padding: max(48px, 8vh) 5% 24px;
  text-align: center;
}

#hero h1 {
  line-height: 1.1;
  font-size: var(--text-hero);
}

#hero p {
  margin-top: 10px;
  font-size: clamp(1rem, 5.8vw, 3.75rem);
  color: var(--color-text-muted);
  font-weight: normal;
}

/* ── Social links ── */
.social-links {
  position: fixed;
  bottom: 20px;
  right: 1%;
  width: 98%;
  text-align: center;
  white-space: nowrap;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.social-links a {
  display: inline-block;
  width: 44px;
  height: 44px;
  margin: 0 5px;
  border: 2px solid var(--color-text-muted);
  text-decoration: none;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  padding: 8px;
}

.social-links img {
  width: 100%;
  height: 100%;
  filter: invert(1);
}

#threadsBtn {
  filter: invert(0);
}

/* ── Desktop: 1030px+ ── */
@media (min-width: 1030px) {
  .social-links {
    right: 20px;
    width: 50%;
    text-align: right;
  }
}
