/* Base layout – koi / Pisces: deep water + soft orange/gold highlights */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, #0f172a 0, #020617 40%, #020617 100%),
    radial-gradient(circle at bottom right, #0b1120 0, #020617 50%, #020617 100%);
  color: #e5e7eb;
}

/* Subtle water “halo” around the main shell */

.page-shell {
  max-width: 960px;
  margin: 2rem auto;
  padding: 1.5rem;
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at top, rgba(56, 189, 248, 0.08), transparent 60%),
    radial-gradient(circle at bottom, rgba(249, 115, 22, 0.06), transparent 60%);
}

/* Header */

.site-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.site-title {
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f9fafb;
  margin-bottom: 0.3rem;
}

.site-subtitle {
  font-size: 0.95rem;
  color: #9ca3af;
}

/* Profile block */

#profile {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.95),
      rgba(15, 23, 42, 0.9),
      rgba(22, 101, 152, 0.55)
    );
  border: 1px solid rgba(148, 163, 184, 0.25);
  margin-bottom: 1.5rem;
}

#profile img {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(251, 191, 36, 0.7);
}

#profile h1 {
  font-size: 1.4rem;
  margin: 0 0 0.2rem;
  color: #f9fafb;
}

#profile .tagline {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: #fbbf24;
}

#profile .bio {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: #cbd5f5;
}

.profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.profile-link {
  font-size: 0.8rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.3); /* teal koi fin */
  color: #e5e7eb;
  text-decoration: none;
  border: 1px solid rgba(45, 212, 191, 0.4);
}

.profile-link:hover {
  background: rgba(45, 212, 191, 0.45);
}

/* Filter buttons (type: music / career / personal / writing) */

#filters {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.filters-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
}

.filter-btn {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  font-size: 0.8rem;
  cursor: pointer;
}

.filter-btn.active {
  background: linear-gradient(135deg, #f97316, #fbbf24); /* koi orange/ gold */
  color: #0f172a;
  border-color: transparent;
}

.filter-btn:hover {
  border-color: #f97316;
}

/* Timeline */

#timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* “River stones” cards */

.timeline-card {
  position: relative;
  padding: 1.1rem 1.1rem 1rem;
  border-radius: 1.2rem;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.6);
  overflow: hidden;
}

.timeline-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 10% 0%, rgba(56, 189, 248, 0.09), transparent 50%),
    radial-gradient(circle at 90% 100%, rgba(249, 115, 22, 0.09), transparent 55%);
  opacity: 0.75;
  pointer-events: none;
}

.timeline-card > * {
  position: relative;
  z-index: 1;
}

.timeline-meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #94a3b8;
  margin-bottom: 0.35rem;
}

.timeline-title {
  font-size: 1rem;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 0.35rem;
}

.timeline-description {
  font-size: 0.9rem;
  color: #cbd5f5;
  margin: 0.25rem 0 0.6rem;
}

/* Tags */

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.4rem;
}

.tag {
  font-size: 0.75rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.8);
}

/* Media blocks */

.media-block {
  margin-top: 0.4rem;
}

.media-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
  margin-bottom: 0.3rem;
}

/* Album tracklist */

.album-tracklist {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0;
}

.album-track button {
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  color: #e5e7eb;
  font-size: 0.85rem;
  padding: 0.18rem 0;
  display: flex;
  gap: 0.45rem;
  cursor: pointer;
}

.album-track button:hover {
  color: #fbbf24;
}

.album-track-number {
  opacity: 0.7;
  min-width: 1.4rem;
}

.active-track button {
  color: #f97316;
  font-weight: 600;
}

/* Audio / video players */

audio,
video {
  width: 100%;
  outline: none;
  margin-top: 0.2rem;
}

img {
  max-width: 100%;
}

/* Responsive */

@media (max-width: 640px) {
  #profile {
    flex-direction: column;
  }

  .page-shell {
    margin: 1rem auto;
    padding: 1rem;
  }

  .site-title {
    font-size: 1.4rem;
  }
}

.media-image {
  width: 100%;
  border-radius: 0.8rem;
  object-fit: cover;
  max-height: 260px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.85);
}


