/* styles.css — extracted from index.html */
:root{
  --bg: #0b0b0b; /* dark gray background */
  --muted: #9aa4b2; /* secondary text */
  --text: #ffffff; /* primary text (white) */
  --pop: #9b8cff; /* popping username color (lavender) */
  --surface: #141416; /* icon/avatar surface */
  --purple: #7c5cff; /* base purple */
  --purple-light: rgba(124,92,255,0.22);
  --purple-dark: #dcd6ff;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;font-family:'Merriweather', Georgia, 'Times New Roman', serif; /* serif font */
  background:var(--bg);color:var(--text);display:flex;align-items:center;justify-content:center;padding:28px;
  -webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;
}

/* fixed projects button at top-right */
.topbar{position:fixed;right:18px;top:14px;z-index:1200}
.projects-btn{background:transparent;color:var(--text);border:none;padding:8px 14px;border-radius:10px;cursor:pointer;font-weight:600;transition:background-color .18s ease,color .18s ease,opacity .18s ease;font-family:'Merriweather', Georgia, serif}
.projects-btn:hover{background:var(--purple-light);color:var(--purple-dark)}

/* transparent central area (no box) */
.card{width:100%;max-width:900px;background:transparent;border-radius:0;padding:12px;box-shadow:none;border:none}

.top{display:flex;gap:20px;align-items:center}

/* avatar is an icon image; add opacity transition for smooth swap */
.avatar{width:96px;height:96px;border-radius:999px;flex:0 0 96px;background:var(--surface);display:flex;align-items:center;justify-content:center;overflow:hidden;border:1px solid rgba(255,255,255,0.04)}
.avatar img{width:100%;height:100%;object-fit:cover;display:block;transition:opacity .18s ease}

.name{font-size:30px;margin:0;font-weight:700}
.name.pop{color:var(--pop)}

.header-row{align-items:center}

/* Tagline as bullets with separators that do NOT get underlined */
.tag-list{display:flex;gap:12px;margin-top:8px;flex-wrap:wrap;list-style:none;padding:0;margin:8px 0 0 0;align-items:center}
.tag-list li{position:relative;padding-bottom:4px;color:var(--muted);cursor:default}
.tag-list li .tag-text{position:relative;display:inline-block}
.tag-list li .tag-text::after{content:'';position:absolute;left:0;bottom:-2px;height:2px;width:100%;background:var(--pop);transform:scaleX(0);transform-origin:left center;transition:transform 260ms cubic-bezier(.2,.9,.2,1)}
.tag-list li .tag-text:hover::after,.tag-list li .tag-text:focus::after{transform:scaleX(1)}
.tag-list li:focus{outline:none}
/* separators (bullets) between items, placed after each li except last */
.tag-list li:not(:last-child)::after{content:'•';margin-left:12px;color:var(--muted);position:static}

/* icons: even closer together */
.icons{display:flex;gap:4px;margin-top:10px;flex-wrap:wrap}

/* transparent flat buttons, no shadows. scale on hover */
.social-link{position:relative;display:inline-flex;align-items:center;justify-content:center;width:42px;height:42px;border-radius:9px;cursor:pointer;transition:transform .12s ease;background:transparent;border:none;overflow:hidden}
.social-link:focus{outline:2px solid rgba(6,182,212,0.12);outline-offset:2px}
.social-link:hover{transform:scale(1.12)}
.social-link:active{transform:scale(1.06)}
.social-link.pinned{outline:2px solid var(--pop);border-radius:10px}

.social-img{width:22px;height:22px;display:block;object-fit:contain;filter:brightness(1.05)}

/* time fixed at bottom center */
.time{position:fixed;left:50%;bottom:22px;transform:translateX(-50%);font-weight:600;color:var(--muted);background:transparent;padding:6px 8px;border-radius:6px;z-index:1000}

/* responsiveness */
@media (max-width:640px){.top{flex-direction:column;align-items:center;text-align:center}.avatar{width:84px;height:84px}.name{font-size:22px}}
