/* Home page specific styles */

/* Home hero block (mobile + base) */
.home-hero {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 48rem;
}

.home-hero__avatar {
  width: 3.25rem;
  height: 3.25rem;
  background: #d9d9d9;
  border-radius: 0.125rem;
  flex: 0 0 auto;
  object-fit: cover;
  display: block;
}

.home-hero__meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.home-hero__name {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.home-hero__role {
  color: #8b8b8b;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
  font-weight: 700;
}

.home-intro {
  margin-top: 1.25rem;
  max-width: 48rem;
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.6;
  color: #8b8b8b;
}

.home-subheading {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #8b8b8b;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
  font-weight: 700;
}

.social-icons-row {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.social-icon-link {
  display: inline-block;
  transition: opacity 0.2s ease;
}

.social-icon-link:hover {
  opacity: 1;
}

.social-icon-link i {
  font-size: 1.5rem;
  color: #8b8b8b;
  display: block;
  transition: color 0.2s ease;
}

.social-icon-link:hover i {
  color: #ffffff;
}

/* Spotify widget */
.spotify-widget {
  max-width: 48rem;
  margin-top: 0.75rem;
}

/* Hide playlist section on mobile */
@media (max-width: 48rem) {
  .home-playlist {
    display: none !important;
  }
}

/* Home (desktop) hero block */
@media (min-width: 48.0625rem) {
  .home-hero {
    gap: 1.75rem;
  }

  .home-hero__avatar {
    width: 4rem;
    height: 4rem;
  }

  .home-hero__meta {
    gap: 0.25rem;
  }

  .home-hero__name {
    font-size: 1.125rem;
  }

  .home-hero__role {
    font-size: 0.6875rem;
  }
}

body.light-mode .home-hero__name {
  color: #1a1a1a;
}

body.light-mode .home-hero__role,
body.light-mode .home-intro,
body.light-mode .home-subheading,
body.light-mode .social-icon-link i {
  color: #666666;
}

