/* ============================================================
   artist.css — Desktop styles for artist / producer pages
   Mobile (< 768px): hidden; iPod shell takes over
   ============================================================ */

/* ──────────────────────────────────────────────
   1. Page Wrapper
   ────────────────────────────────────────────── */
.artist-page {
  background: #000;
  color: #fff;
  font-family: 'PP Neue Montreal', -apple-system, sans-serif;
  min-height: 100vh;
  padding-top: 25px;
}

@media (max-width: 767px) {
  .artist-page {
    display: none !important;
  }
}

/* ──────────────────────────────────────────────
   2. Hero
   ────────────────────────────────────────────── */
.artist-hero {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 350px;
  overflow: hidden;
}

.artist-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.artist-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.85) 100%);
}

.artist-hero__info {
  position: absolute;
  bottom: 30px;
  left: 40px;
}

.artist-hero__name {
  font-size: 3rem;
  font-weight: 700;
  font-family: 'PP Neue Corp', sans-serif;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0;
}

.artist-hero__role {
  font-size: 1rem;
  color: #07e317;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

/* ──────────────────────────────────────────────
   3. Section Containers
   ────────────────────────────────────────────── */
.artist-section {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 40px;
}

.artist-section__title {
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #07e317;
  margin: 0 0 30px;
  padding-bottom: 12px;
  border-bottom: 1px solid #222;
}

/* ──────────────────────────────────────────────
   4. Bio
   ────────────────────────────────────────────── */
.artist-bio__text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #ccc;
  max-width: 680px;
}

/* ──────────────────────────────────────────────
   5. Placements Grid
   ────────────────────────────────────────────── */
.artist-placements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.artist-placement {
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.artist-placement:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(7, 227, 23, 0.15);
}

.artist-placement__art {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.artist-placement__info {
  padding: 12px;
}

.artist-placement__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

.artist-placement__meta {
  font-size: 0.8rem;
  color: #888;
}

.artist-placement--playing {
  outline: 2px solid #07e317;
}

.artist-placement--playing::after {
  content: '♪';
  position: absolute;
  top: 8px;
  right: 8px;
  color: #07e317;
}

/* ──────────────────────────────────────────────
   6. Desktop Inline Player
   ────────────────────────────────────────────── */
.artist-player {
  display: none;
}

.artist-player--active {
  display: flex;
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 20px;
  margin-top: 30px;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.artist-player__art {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.artist-player__info {
  flex: 1;
  min-width: 0;
}

.artist-player__title {
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.artist-player__artist-name {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 12px;
}

.artist-player__progress {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.artist-player__bar {
  flex: 1;
  height: 4px;
  background: #333;
  border-radius: 9999px;
  overflow: hidden;
  cursor: pointer;
}

.artist-player__bar-fill {
  height: 100%;
  background: #07e317;
  border-radius: 9999px;
  width: 0%;
  transition: width 0.1s linear;
}

.artist-player__time {
  font-size: 0.75rem;
  color: #888;
  white-space: nowrap;
  min-width: 36px;
}

.artist-player__controls {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.artist-player__btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.artist-player__btn:hover {
  color: #07e317;
}

.artist-player__btn--play {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #07e317;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #07e317;
}

/* ──────────────────────────────────────────────
   7. Shows
   ────────────────────────────────────────────── */
.artist-shows-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.artist-show {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #1a1a1a;
  gap: 20px;
}

.artist-show__date {
  font-size: 0.9rem;
  font-weight: 700;
  color: #07e317;
  min-width: 90px;
}

.artist-show__venue {
  font-size: 1rem;
  flex: 1;
}

.artist-show__city {
  font-size: 0.9rem;
  color: #888;
}

/* ──────────────────────────────────────────────
   8. Lookbook
   ────────────────────────────────────────────── */
.artist-lookbook-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 12px;
}

.artist-lookbook__img {
  width: 100%;
  border-radius: 6px;
  display: block;
  transition: transform 0.2s ease;
}

.artist-lookbook__img:hover {
  transform: scale(1.02);
}

/* ──────────────────────────────────────────────
   9. Social Links
   ────────────────────────────────────────────── */
.artist-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.artist-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid #333;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.artist-social-link:hover {
  border-color: #07e317;
  color: #07e317;
}

/* ──────────────────────────────────────────────
   10. Responsive — Tablet (768–991px)
   ────────────────────────────────────────────── */
@media (min-width: 768px) and (max-width: 991px) {
  .artist-hero__name {
    font-size: 2.2rem;
  }

  .artist-section {
    padding: 40px 24px;
  }

  .artist-placements-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
}
