/* Artist Detail - Beyaz Tema */

.artist-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.artist-detail-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2rem;
}

/* Sidebar */
.artist-sidebar {
    background: #ffffff;
  border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    position: sticky;
    top: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.artist-image-wrapper {
    width: 100%;
    padding-top: 100%;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.artist-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.5rem 0;
    text-align: center;
}

.artist-genre {
 font-size: 1rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 2rem;
}

.artist-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.artist-stat {
    text-align: center;
}

.artist-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.artist-stat-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
  letter-spacing: 0.05em;
}

.artist-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.artist-action-btn {
    width: 100%;
    padding: 0.875rem;
    border-radius: 0.5rem;
    font-weight: 600;
font-size: 0.9375rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
  align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.artist-action-btn-primary {
    background: var(--primary);
    color: white;
}

.artist-action-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    color: white;
}

.artist-action-btn-secondary {
    background: white;
    color: #374151;
    border: 1px solid #e5e7eb;
}

.artist-action-btn-secondary:hover {
    background: #f9fafb;
    color: #111827;
}

.artist-action-btn-secondary.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Main Content */
.artist-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.artist-card {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.artist-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.artist-card-title .material-icons {
    color: var(--primary);
}

.artist-bio {
    font-size: 1rem;
    color: #374151;
    line-height: 1.8;
}

.artist-bio p {
    margin-bottom: 1rem;
}

/* Events Grid */
.artist-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.artist-event-card {
    background: #f9fafb;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
}

.artist-event-card:hover {
    background: white;
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.artist-event-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.artist-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-event-date-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.artist-event-content {
    padding: 1.25rem;
}

.artist-event-category {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.artist-event-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.artist-event-venue {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.artist-event-venue .material-icons {
    font-size: 1rem;
}

.artist-event-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
}

/* Gallery Grid */
.artist-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.artist-gallery-item {
    position: relative;
    padding-top: 100%;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.3s;
}

.artist-gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.artist-gallery-item img {
    position: absolute;
top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Social Links */
.artist-social-links {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.artist-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
}

.artist-social-link:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(245, 158, 11, 0.3);
}

/* Empty State */
.artist-empty {
    text-align: center;
    padding: 3rem 2rem;
    color: #6b7280;
}

.artist-empty .material-icons {
    font-size: 4rem;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.artist-empty p {
    font-size: 1rem;
    margin: 0.5rem 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .artist-detail-grid {
     grid-template-columns: 1fr;
  }

    .artist-sidebar {
   position: static;
    }
}

@media (max-width: 768px) {
    .artist-name {
        font-size: 1.5rem;
    }

    .artist-events-grid,
 .artist-gallery-grid {
        grid-template-columns: 1fr;
    }

    .artist-stats {
    grid-template-columns: 1fr;
  gap: 0.75rem;
    }
}
