.artist-container {
    max-width: 1200px;
    margin: 120px auto 50px;
    padding: 0 20px;
}

.artist-header {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.image-container {
    flex: 0 0 500px;
}

.artist-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
}

.artist-image img {
    width: 100%;
    height: auto;
    display: block;
}

.artist-info {
    flex: 1;
}

.artist-name {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.artist-genre {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.artist-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.artist-details {
    margin-bottom: 30px;
}

.detail-item {
    margin-bottom: 15px;
}

.detail-label {
    color: #888;
    margin-right: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-button:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

.back-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background: transparent;
    border: 1px solid #888;
    border-radius: 5px;
    color: #888;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.back-button:hover {
    border-color: #fff;
    color: #fff;
}

.booking-button {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.booking-button:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .artist-header {
        flex-direction: column;
    }

    .image-container {
        flex: 0 0 auto;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
} 