/* =====================================================
   PROFILE PAGE (DJ / CLUB)
===================================================== */

.profile-page section {
  margin: 80px 0;
}

/* HERO */
.profile-hero {
  margin-top: 60px;
}

.profile-hero-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: center;
}

/* IMAGE */
.profile-photo {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.profile-photo:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

/* INFO */
.profile-info h1 {
  margin: 0 0 12px;
  font-size: 2.2rem;
  font-weight: 700;
  font-family: var(--font-main);
  color: var(--signature-color);
  letter-spacing: 4px;
}

.profile-socials {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.profile-socials a {
  font-size: 0.8rem;
  color: var(--text-soft);
  text-decoration: none;
}

.profile-socials a:hover {
  color: var(--text-main);
}

.profile-bio {
  max-width: 720px;
  line-height: 1.6;
  color: var(--text-soft);
}

/* MAIN LAYOUT */
.profile-main {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 48px;
}

/* SIDEBAR */
.profile-sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.profile-block h3 {
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight: 600;
}

/* CONTENT */
.profile-content h2 {
  margin-bottom: 24px;
}
/* CSS Document */

.profile-main-layout {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 48px;
}

.profile-sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.profile-content h2 {
  margin-bottom: 24px;
}

.profile-bio {
  max-width: 720px;
  line-height: 1.6;
  color: var(--text-soft);
}

.profile-bio.collapsed .more {
  display: none;
}

.read-more {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--accent);
  text-decoration: none;
  cursor: pointer;
}

.read-more:hover {
  text-decoration: underline;
}


