@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Nunito+Sans:opsz,wght@6..12,400;6..12,700;6..12,800&display=swap");

:root {
  color-scheme: light;
  font-family: "Nunito Sans", system-ui, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;

  --color-amora: #5e2a6e;
  --color-amora-dark: #3b1a45;
  --color-broto: #7fb069;
  --color-coral: #ff8a65;
  --color-cream: #fdf6f0;
  --color-cream-strong: #f7efe7;
  --color-charcoal: #2b2230;
  --color-muted: #6b5a72;
  --shadow-card: 0 10px 30px rgba(59, 26, 69, 0.08);
  --radius-lg: 20px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--color-cream);
  color: var(--color-charcoal);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid rgba(127, 176, 105, 0.95);
  outline-offset: 4px;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
}

.container {
  width: min(100%, 560px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.avatar {
  border-radius: 50%;
  box-shadow: var(--shadow-card);
  margin-bottom: 16px;
}

.brand {
  font-family: "Fraunces", serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-amora-dark);
  margin: 0 0 6px;
}

.tagline {
  margin: 0 0 32px;
  color: var(--color-muted);
  font-size: 1rem;
}

.links {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 32px 16px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(94, 42, 110, 0.12);
  box-shadow: var(--shadow-card);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.link-card:hover,
.link-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(59, 26, 69, 0.14);
}

.link-card__icon {
  width: 32px;
  height: 32px;
  color: var(--color-amora);
  margin-bottom: 12px;
}

.link-card__title {
  font-weight: 800;
  font-size: 1rem;
  color: var(--color-charcoal);
}

.link-card__subtitle {
  font-size: 0.85rem;
  color: var(--color-muted);
}

@media (max-width: 420px) {
  .link-card {
    padding: 24px 12px;
  }
}

.footer {
  margin-top: 40px;
}

.footer p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-muted);
}
