/**
 * Artist Page Custom Styles - Updated Layout
 * Matches the design: Title, Full-width image, Social + Content side-by-side, Music, Videos
 */

/* Artist Container */
.artist-detail-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/*.artist-container {
    background: #fff;
}*/

/* Featured Image - Full Width */
.artist-featured-image-wrapper {
    width: 100%;
    margin-bottom: 30px;
}

.artist-featured-image-full {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

/* Section Headings */
.section-heading {
    font-size: 1.8em;
    margin: 0 0 20px 0;
    /* color: #333; */
    text-transform: uppercase;
}

/* Social Media Section - Icons Only in Horizontal Row */
.artist-social-section {
    margin-bottom: 40px;
    text-align: center;
}

.artist-social-links-horizontal {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-icon-link.facebook:hover {
    background: #1877f2;
    color: #fff;
}

.social-icon-link.twitter:hover {
    background: #1da1f2;
    color: #fff;
}

.social-icon-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}

.social-icon-link.linkedin:hover {
    background: #0077b5;
    color: #fff;
}

.social-icon-link.website:hover {
    background: #333;
    color: #fff;
}

/* About Section - Full Width Below Social Media */
.artist-about-section {
    margin-bottom: 50px;
    padding: 0 20px;
}

.artist-about-section .section-heading {
    text-align: center;
}

.artist-bio-content {
    font-size: 1em;
    line-height: 1.8;
    color: #555;
    /* padding: 0 20px; */
}

.artist-bio-content p {
    margin-bottom: 1em;
    color: #fff;
}

/* Music Section */
.artist-music-section {
    margin-bottom: 50px;
    padding: 0 20px;
}

.artist-music-section .section-heading {
    text-align: center;
}

.music-player-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Music Track */
.music-track {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.music-track:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.track-info {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}

.track-cover {
    flex: 0 0 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.track-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.track-cover.default-cover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.track-details {
    flex: 1;
}

.track-title {
    margin: 0;
    font-size: 1.3em;
    color: #333;
    line-height: 1.3;
}

.track-artist-name {
    margin: 2px 0 0 0;
    color: #666;
    font-size: 0.95em;
}

.play-pause-btn {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    padding: 0;
    outline: none;
}

.play-pause-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0);
    transition: background 0.3s ease;
    z-index: 1;
}

.play-pause-btn:hover::before {
    background: rgba(255, 255, 255, 0.15);
}

.play-pause-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.play-pause-btn:active {
    transform: scale(0.98);
}

.play-pause-btn:focus {
    outline: 2px solid rgba(102, 126, 234, 0.5);
    outline-offset: 2px;
}

.play-pause-btn:focus:not(:focus-visible) {
    outline: none;
}

.play-pause-btn svg {
    width: 26px;
    height: 26px;
    position: relative;
    z-index: 2;
    fill: #ffffff;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.play-pause-btn:hover svg {
    transform: scale(1.05);
}

.play-pause-btn .play-icon {
    display: block;
    padding-left: 2px;
}

.play-pause-btn .pause-icon {
    display: none;
}

.track-progress {
    width: 100%;
    margin-top: 15px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    cursor: pointer;
    margin-bottom: 8px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 0%;
    transition: width 0.1s ease;
    border-radius: 3px;
}

.track-time {
    display: flex;
    justify-content: space-between;
    font-size: 0.85em;
    color: #666;
}

/* Videos Section */
.artist-videos-section {
    margin-bottom: 50px;
    padding: 0 20px;
}

.artist-videos-section .section-heading {
    text-align: center;
}

/* Videos Grid - 3 Columns */
.videos-grid-two-column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-item {
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.video-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

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

.video-title {
    padding: 15px 20px 10px;
    margin: 0;
    font-size: 1.2em;
    color: #333;
    text-align: center;
}

.video-description {
    padding: 0 20px 20px;
    margin: 0;
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .videos-grid-two-column {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .videos-grid-two-column {
        grid-template-columns: 1fr;
    }

    .track-info {
        flex-wrap: wrap;
    }

    .artist-social-links-horizontal {
        justify-content: center;
    }

    .play-pause-btn {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
    }

    .play-pause-btn svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .artist-detail-page {
        padding: 20px 10px;
    }

    .artist-about-section,
    .artist-music-section,
    .artist-videos-section {
        padding: 0 10px;
    }

    .artist-bio-content {
        padding: 0 10px;
    }

    .music-track {
        padding: 15px;
    }

    .play-pause-btn {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
    }

    .play-pause-btn svg {
        width: 20px;
        height: 20px;
    }

    .track-cover {
        flex: 0 0 50px;
        height: 50px;
    }

    .social-icon-link {
        width: 44px;
        height: 44px;
    }

    .social-icon-link svg {
        width: 28px;
        height: 28px;
    }
}
@media only screen and (min-width: 960px) {
    .artist-social-section, .artist-about-section, .artist-music-section, .artist-videos-section {
        max-width: 940px;
        margin: 0 auto 40px auto;
    }
}
