/* ============================================================
   vi.vin — Vivin Link-in-Bio
   ============================================================ */

/* ── Reset ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ── Tokens ── */
:root {
  --orange:    #E84B1A;
  --black:     #0A0A0A;
  --white:     #FFFFFF;
  --sidebar-w: 10px;
}

/* ── Base ── */
html, body {
  height: 100%;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: 'futura-pt';
  display: flex;
  min-height: 100vh;
}

/* ── Left orange strip ── */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-w);
  height: 100%;
  background-color: var(--orange);
}

/* ── Main column ── */
.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 52px 24px 40px;
  margin-left: var(--sidebar-w);
}

/* ── Logo ── */
.logo-wrap {
  margin-bottom: 14px;
}

.logo-wrap svg {
  width: 52px;
  height: 52px;
}

/* ── Name ── */
.artist-name {
  font-size: clamp(44px, 12vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 6px;
}

/* ── Tagline ── */
.tagline {
  font-size: clamp(13px, 3.5vw, 17px);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 36px;
}

/* ── Profile photo ── */
.profile-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid var(--orange);
  object-fit: cover;
  object-position: center top;
  margin-bottom: 44px;
}

/* ── Section title ── */
.section-title {
  font-size: clamp(14px, 3.8vw, 18px);
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 14px;
}

/* ── Link group ── */
.link-group {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 44px;
}

/* ── Individual link button ── */
.link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 2px solid var(--orange);
  color: var(--orange);
  background: transparent;
  text-decoration: none;
  font-family: 'futura-pt';
  font-size: clamp(13px, 3.5vw, 15px);
  font-weight: 700;
  text-transform: uppercase;
  transition: background-color 0.18s ease, color 0.18s ease;
  cursor: pointer;
}

.link-btn i {
  font-size: 18px;
  flex-shrink: 0;
}

.link-btn:hover,
.link-btn:focus-visible {
  background-color: var(--orange);
  color: var(--black);
  outline: none;
}

/* ── Footer ── */
footer {
  margin-top: auto;
  padding-top: 12px;
  font-family: 'futura-pt';
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}
