/* ================================================
   ARTIST PAGE STYLES - VERSIONE FINALE
   ================================================ */

.artist-page {
    width: 100%;
    background: #fff;
}

/* Container principale */
.artist-content-wrapper {
    width: 100%;
    padding: 40px 20px;
}

.artist-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* RIGHE */
.artist-row {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.artist-row-name {
    width: 100%;
}

.artist-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.artist-row-social {
    width: 100%;
    justify-content: center;
}

/* COLONNE */
.artist-col-left,
.artist-col-right {
    width: 100%;
}

/* RIGA 1: Nome Artista */
.artist-name {
    font-family: "Oswald", sans-serif;
    font-size: 48px;
    font-weight: 600;
    margin: 0 0 40px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* RIGA 2: Foto e Bio */
.artist-photo {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

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

.artist-bio,
.artist-bio-extra {
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.artist-bio {
    margin-bottom: 20px;
}

.artist-bio p,
.artist-bio-extra p {
    margin-bottom: 15px;
}

.artist-bio p:last-child,
.artist-bio-extra p:last-child {
    margin-bottom: 0;
}

/* RIGA 3: Social Links con Icone */
.artist-social {
    width: 100%;
    text-align: center;
}

.social-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-links li {
    display: inline-block;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    font-size: 24px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #cf3a3a;
    transform: scale(1.1);
}

.social-links a i {
    line-height: 1;
}

/* RIGA 4: Videos e Audio */
.artist-videos h3,
.artist-soundcloud h3 {
    font-family: "Oswald", sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Video Embed */
.video-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 4px;
    margin-bottom: 20px;
}

.video-embed:last-child {
    margin-bottom: 0;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Soundcloud Embed */
.soundcloud-embed-item {
    margin-bottom: 20px;
}

.soundcloud-embed-item:last-child {
    margin-bottom: 0;
}

.soundcloud-embed-item iframe {
    width: 100%;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .artist-content-wrapper {
        padding: 20px 15px;
    }

    .artist-row-2col {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .artist-name {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .artist-bio,
    .artist-bio-extra {
        font-size: 15px;
    }

    .social-links {
        gap: 15px;
    }

    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .artist-videos h3,
    .artist-soundcloud h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .video-embed {
        margin-bottom: 15px;
    }

    .soundcloud-embed-item {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .artist-name {
        font-size: 24px;
    }

    .artist-bio,
    .artist-bio-extra {
        font-size: 14px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}
