/* Digital business card — mobile-first link hub */

.links-page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.links-main {
  position: relative;
  z-index: 2;
  flex: 1;
  width: min(440px, 100%);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.links-header {
  text-align: center;
  margin-bottom: 2rem;
  animation: links-fade-up 0.8s var(--ease-out-expo) both;
}

.links-logo {
  width: min(240px, 70vw);
  height: auto;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 0 30px var(--gold-glow));
}

.links-name {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.links-role {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.links-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.links-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.link-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  transition: all 0.35s var(--ease-out-expo);
  animation: links-fade-up 0.7s var(--ease-out-expo) both;
}

.link-btn:nth-child(1) { animation-delay: 0.1s; }
.link-btn:nth-child(2) { animation-delay: 0.15s; }
.link-btn:nth-child(3) { animation-delay: 0.2s; }
.link-btn:nth-child(4) { animation-delay: 0.25s; }
.link-btn:nth-child(5) { animation-delay: 0.3s; }
.link-btn:nth-child(6) { animation-delay: 0.35s; }

.link-btn:hover,
.link-btn:focus-visible {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 24px rgba(212, 175, 55, 0.12);
  outline: none;
}

.link-btn--primary {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.08));
  border-color: var(--border-hover);
  color: var(--gold-light);
}

.link-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  flex-shrink: 0;
}

.links-social {
  text-align: center;
  animation: links-fade-up 0.8s var(--ease-out-expo) 0.4s both;
}

.links-social-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all 0.3s var(--ease-out-expo);
}

.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.links-footer {
  margin-top: auto;
  padding-top: 2rem;
  text-align: center;
}

.links-footer p {
  font-size: 0.7rem;
  color: var(--text-muted);
}

@keyframes links-fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .links-header,
  .link-btn,
  .links-social {
    animation: none;
  }
}
