/* ==========================================================================
   ESTILOS ESPECÍFICOS: PERFIL DE ARTISTA
   ========================================================================== */

/* --- Hero del Artista --- */
.artist-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end; /* Alineamos el contenido abajo */
    padding-bottom: 60px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.artist-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Gradiente que oscurece mucho la parte de abajo para que el nombre resalte */
    background: linear-gradient(to top, rgba(5,5,5,1) 0%, rgba(5,5,5,0.6) 40%, rgba(5,5,5,0.2) 100%);
}

.artist-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.artist-genre-badge {
    color: var(--bg-base);
    background-color: var(--accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.artist-hero-content h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    line-height: 1;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.artist-social-links {
    display: flex;
    gap: 1rem;
}

.artist-social-links a {
    width: 50px;
    height: 50px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    backdrop-filter: blur(5px);
    transition: var(--transition-smooth);
}

.artist-social-links a:hover {
    background-color: var(--accent);
    color: var(--bg-base);
    transform: translateY(-5px);
}

/* --- Layout Biografía --- */
.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.bio-image-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    aspect-ratio: 4/5;
}

.bio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
}

.bio-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* --- Grilla Discografía --- */
.discography-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.release-cover-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.release-cover-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.release-hover {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.release-cover-wrapper:hover img {
    transform: scale(1.05);
}

.release-cover-wrapper:hover .release-hover {
    opacity: 1;
}

/* --- Grilla Videos --- */
.artist-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.video-play-overlay:hover {
    background: rgba(0,0,0,0.2) !important;
}

.video-play-overlay:hover i {
    transform: scale(1.1);
    transition: transform 0.3s;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .bio-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .bio-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .artist-hero {
        min-height: 50vh;
        align-items: center;
        padding-bottom: 0;
        text-align: center;
    }
    .artist-hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}