/* Navigation bar */
.harmotone-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 0 1rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.harmotone-nav-text {
  color: black; /* adjust color as needed */
  font-size: 16; /* adjust size as needed */
  margin-right: 20px; /* add spacing from edge */
}

.harmotone-nav-logo img {
  height: 40px; /* Adjust*/
  width: auto;
  display: block;
}

.harmotone-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.harmotone-nav-logo {
  padding: 0.5rem;
}

.harmotone-nav-link {
color: var(--color-gray-700);
padding: 0.5rem;
text-decoration: none;
font-weight: var(--font-weight-medium);
font-family: var(--font-sans);
font-size: var(--text-base);
line-height: var(--text-base--line-height);
}

.harmotone-nav-link.secondary {
color: var(--color-gray-500);
}

#base-content {
  padding-top: 64px; /* Creates space for the fixed navbar */
  background-color: #f9fafb; /* gray-50 */
  min-height: calc(100vh - 64px); /* Ensures background covers full height */
}

/* Artist Page Styles */

.artist_page {
  max-width: 48rem; /* max-w-3xl */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;  /* px-6 */
  padding-right: 1.5rem;
  padding-top: 2rem;    /* py-8 */
}

.artist_page__header {
  background-color: white;
  box-shadow: 0 4px 6px rgb(0 0 0 / 0.1);
  border-radius: 1rem; /* rounded-xl */
  padding: 1.5rem; /* p-6 */
}

.artist_page__container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* gap-6 */
  align-items: center;
}

@media (min-width: 768px) {
  .artist_page__container {
    flex-direction: row;
    align-items: flex-start; /* Changed from center */
  }
  
  .artist_page__image-wrapper {
    margin-top: 2.5rem; /* Aligns image with description text */
  }
}

.artist_page__image-wrapper {
  flex-shrink: 0;
}

.artist_page__image {
  width: 12rem; /* w-48 */
  height: 12rem; /* h-48 */
  object-fit: cover;
  border-radius: 0.5rem; /* rounded-lg */
}

.artist_page__image-fallback {
  width: 12rem;
  height: 12rem;
  background-color: #e5e7eb; /* gray-200 */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem;
  color: #6b7280; /* gray-500 */
  font-size: 1rem;
  text-align: center;
}

.artist_page__info {
  flex: 1 1 auto;
  min-width: 0;
}

.artist_page__header-row {
  display: flex;
  align-items: center;
  gap: 1rem; /* gap-4 */
  margin-bottom: 1rem; /* mb-4 */
  flex-wrap: wrap;
}

.artist_page__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 1rem 0;
  text-align: left;
}

.artist_page__genre-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem; /* gap-1 */
  background-color: #f5f3ff; /* purple-50 */
  color: #6d28d9; /* purple-700 */
  font-size: 0.875rem; /* text-sm */
  font-weight: 500;
  padding: 0.25rem 0.75rem; /* px-3 py-1 */
  border-radius: 9999px; /* rounded-full */
  white-space: nowrap;
}

.artist_page__subgenre-badge {
  display: inline-flex;
  align-items: center;
  background-color: #f9fafb; /* gray-50 */
  color: #6b7280; /* gray-500 */
  font-size: 0.875rem; /* text-xs */
  font-weight: 500;
  padding: 0.25rem 0.75rem; /* px-2 py-1 */
  border-radius: 9999px; /* rounded-full */
  white-space: nowrap;
}

.artist_page__genre-icon {
  width: 1.25rem; /* w-5 */
  height: 1.25rem; /* h-5 */
}

.artist_page__description {
  color: #4b5563; /* gray-600 */
  margin-top: 0;
}