/* profile.css — theme stays from gallery.css */

/* HEADER LAYOUT */
.profile--artist{
  display:grid;
  grid-template-columns: 180px 1fr;
  gap:1.4rem;
  padding:1.4rem 1rem 1.1rem;
  border-bottom:1px solid rgba(255,255,255,.06);
  align-items:start;
}
@media (max-width:700px){
  .profile--artist{
    grid-template-columns:1fr;
    text-align:center;
    gap:1rem;
  }
  .profile-left{ display:flex; justify-content:center; }
}

/* BIG HERO AVATAR */
.avatar-wrap{
  display:flex; justify-content:center; align-items:center;
}
.avatar{
  width:160px; 
  height:160px; 
  border-radius:50%;
  overflow:hidden;

  /* clean, modern border */
  padding:4px;
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);

  /* subtle shadow for depth */
  box-shadow:
    0 6px 18px rgba(0,0,0,.45),
    0 0 0 2px rgba(255,255,255,.07);
}

.avatar img{
  width:100%; 
  height:100%;
  object-fit:cover; 
  border-radius:50%;
}


/* NAME + META HIGHLIGHT */
.profile-right h1{
  font-size:2rem;
  font-weight:900;
  letter-spacing:.2px;
  margin:0 0 .35rem;
}
.meta-row{
  display:flex; flex-wrap:wrap; gap:.6rem .7rem;
  align-items:center; margin-bottom:.7rem;
}
.handle{
  color:var(--accent);
  font-weight:700;
  font-size:1.05rem;
}

/* CATEGORY CHIPS */
.chips{ display:flex; flex-wrap:wrap; gap:.45rem; }
.chip{
  font-size:.85rem;
  padding:.25rem .7rem;
  border-radius:999px;
  background:rgba(246,180,216,.10);
  border:1px solid rgba(246,180,216,.45);
  color:var(--accent);
  font-weight:700;
  letter-spacing:.2px;
}

/* LOCATION TAG */
.loc{
  font-size:.9rem;
  color:var(--muted);
  padding:.2rem .6rem;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  display:flex; align-items:center; gap:.4rem;
}
.loc-dot{
  width:7px; height:7px; border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 8px rgba(246,180,216,.8);
}

/* BIOS — readable, not wall-of-text */
.bio{
  font-size:1rem;
  line-height:1.65;
  margin-top:.4rem;
  max-width:900px;
}
.bio.short{
  color:var(--text);
  font-weight:500;
}
.bio.long{
  color:var(--muted);
  margin-top:.8rem;
}
.bio.long p{ margin:0 0 .8rem; }

/* LINKS */
.links{
  display:flex; flex-wrap:wrap; gap:.6rem; margin-top:.9rem;
}
.links a{
  font-size:.95rem; color:var(--muted);
  padding:.3rem .8rem;
  border-radius:999px;
  background:var(--panel);
  border:1px solid rgba(255,255,255,.10);
}
.links a:hover{
  color:var(--text);
  border-color:rgba(246,180,216,.7);
  box-shadow:0 0 12px rgba(246,180,216,.18);
}

/* STATS + ALBUMS keep same */
.stats{
  display:flex; gap:1rem;
  padding:.8rem 1rem;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.stat b{ font-size:1.2rem; font-weight:800; display:block; }
.stat span{ font-size:.85rem; color:var(--muted); }

.albums-wrap{ padding:1rem 0; }
.section-title{
  padding:0 1rem .6rem; font-weight:700; letter-spacing:.3px; color:var(--muted);
}
.ps-grid--albums .album-card{ position:relative; }
.album-meta{
  position:absolute; left:0; right:0; bottom:0;
  padding:.7rem .8rem;
  background:linear-gradient(180deg, transparent, rgba(0,0,0,.8));
}
.album-title{ font-weight:800; font-size:1.05rem; }
.album-line{ font-size:.9rem; color:var(--accent); margin-top:.15rem; }
.album-date{ font-size:.8rem; color:var(--muted); margin-top:.1rem; }
