﻿/* ========================================
   ARTIST PROFILE - IMPROVED STYLES
   ======================================== */

/* CSS Variables for consistent theming */
:root {
    --error-color: #E74C3C;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --background-light: #F8F9FA;
    --background-white: #FFFFFF;
    --border-color: #E1E8ED;
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --border-radius-small: 6px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, #FF8E8E 100%);
}

/* ========================================
   HERO SECTION
   ======================================== */

.artist-hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
    z-index: 1;
}

    .hero-background::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('/assets/images/background/acoustic.jpg') center center;
        background-size: cover;
        opacity: 0.2;
        z-index: -1;
    }

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(75, 46, 127, 0.9) 0%, rgba(75, 46, 127, 0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 2rem 0;
}

.artist-hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 2rem 0;
}

/* Artist Avatar */
.artist-avatar {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-heavy);
    margin-right: 2rem;
}

    .artist-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

    .artist-avatar:hover img {
        transform: scale(1.05);
    }

.status-indicator {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid white;
}

    .status-indicator.online {
        background: var(--success-color);
        animation: pulse 2s infinite;
    }

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}


/* Quick Stats */
.quick-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-small);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
    color: white;
}

    .stat-icon.sound-included {
        background: var(--success-color);
        animation: soundWave 1.5s ease-in-out infinite;
    }

@keyframes soundWave {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.2rem;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

/* Back Link */
.back-link {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition);
    margin-top: 1rem;
}

    .back-link:hover {
        color: white;
        transform: translateX(-5px);
    }

    .back-link i {
        margin-right: 0.5rem;
    }

/* Contact Section */
.contact-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    width: 100%;
    max-width: 300px;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius-small);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    margin: 0.5rem 0;
    width: 100%;
}

    .contact-btn.primary {
        background: var(--gradient-secondary);
        color: white;
        box-shadow: var(--shadow-medium);
    }

        .contact-btn.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
        }

    .contact-btn.secondary {
        background: rgba(255, 255, 255, 0.2);
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

        .contact-btn.secondary:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }

    .contact-btn.disabled {
        background: rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.5);
        cursor: not-allowed;
    }

/* Social Links */
.social-links {
    margin-top: 2rem;
    text-align: center;
}

.social-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

    .social-icon:hover {
        background: white;
        color: var(--primary-color);
        transform: translateY(-3px) scale(1.1);
        box-shadow: var(--shadow-medium);
    }

/* ========================================
   MAIN CONTENT SECTION
   ======================================== */

.artist-content-section {
    padding: 4rem 0;
    background: var(--background-light);
}

/* Section Headers */
.section-header {
    margin-bottom: 2rem;
}

    .section-header h3 {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

        .section-header h3 i {
            color: var(--primary-color);
        }

    .section-header p {
        color: var(--text-light);
        font-size: 1rem;
        margin: 0;
    }

/* ========================================
   ENHANCED MEDIA GALLERY
   ======================================== */

.media-gallery-container {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-light);
}

.media-counter {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.enhanced-gallery {
    margin-top: 2rem;
}

.main-media-container {
    position: relative;
    margin-bottom: 1rem;
}

.media-viewer {
    position: relative;
    height: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

#media-display {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    #media-display img,
    #media-display video,
    #media-display iframe {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        border-radius: var(--border-radius-small);
    }

    #media-display iframe {
        width: 100%;
        height: 100%;
    }

.media-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .control-btn:hover {
        background: rgba(0, 0, 0, 0.9);
        transform: scale(1.1);
    }

.media-info {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.thumbnails-container {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--background-light);
}

    .thumbnails-container::-webkit-scrollbar {
        height: 6px;
    }

    .thumbnails-container::-webkit-scrollbar-track {
        background: var(--background-light);
        border-radius: 3px;
    }

    .thumbnails-container::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 3px;
    }

.thumbnail-item {
    position: relative;
    min-width: 120px;
    height: 80px;
    border-radius: var(--border-radius-small);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    border: 3px solid transparent;
}

    .thumbnail-item:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-medium);
    }

    .thumbnail-item.active {
        border-color: var(--primary-color);
        transform: translateY(-3px);
        box-shadow: 0 4px 16px rgba(75, 46, 127, 0.3);
    }

    .thumbnail-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.media-type-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

    .media-type-badge.instagram {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    }

    .media-type-badge.youtube {
        background: #FF0000;
    }

    .media-type-badge.video {
        background: var(--primary-color);
    }

.no-media-message {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
    box-shadow: var(--shadow-light);
}

    .no-media-message i {
        font-size: 4rem;
        color: var(--text-light);
        margin-bottom: 1rem;
    }

    .no-media-message h4 {
        color: var(--text-dark);
        margin-bottom: 0.5rem;
    }

    .no-media-message p {
        color: var(--text-light);
        margin: 0;
    }

/* ========================================
   ENHANCED TABS SECTION
   ======================================== */

.content-tabs-container {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    margin-bottom: 3rem;
}

.tabs-navigation {
    display: flex;
    background: var(--background-light);
    border-bottom: 1px solid var(--border-color);
}

.tab-btn {
    flex: 1;
    padding: 1.5rem 2rem;
    border: none;
    background: transparent;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
}

    .tab-btn:hover {
        background: rgba(75, 46, 127, 0.1);
        color: var(--primary-color);
    }

    .tab-btn.active {
        background: white;
        color: var(--primary-color);
    }

        .tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-primary);
        }

.tabs-content {
    position: relative;
}

.tab-content {
    display: none;
    padding: 2rem;
    animation: fadeInUp 0.3s ease-out;
}

    .tab-content.active {
        display: block;
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Description Tab */
.artist-description h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.description-content {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 2rem;
}

    .description-content p {
        margin-bottom: 1rem;
    }

.artist-genres {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

    .artist-genres h4 {
        color: var(--text-dark);
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

        .artist-genres h4 i {
            color: var(--primary-color);
        }

.genre-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.genre-tag {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

    .genre-tag:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-light);
    }

/* Reviews Tab */
.reviews-section {
    text-align: center;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

    .reviews-header h3 {
        color: var(--text-dark);
        margin: 0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

.rating-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.average-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--warning-color);
}

.stars {
    color: var(--warning-color);
    font-size: 1.2rem;
}

.reviews-count {
    color: var(--text-light);
    font-size: 0.9rem;
}

.no-reviews-message {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

    .no-reviews-message i {
        font-size: 3rem;
        margin-bottom: 1rem;
        color: var(--text-light);
    }

    .no-reviews-message h4 {
        color: var(--text-dark);
        margin-bottom: 0.5rem;
    }

/* Mobile Schedule Tab */
.mobile-schedule {
    display: block;
}

    .mobile-schedule h3 {
        color: var(--text-dark);
        margin-bottom: 2rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.schedule-item {
    background: var(--background-light);
    border-radius: var(--border-radius-small);
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.schedule-date {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.schedule-details h5 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.schedule-details .location,
.schedule-details .time {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.schedule-details .description {
    color: var(--text-dark);
    font-style: italic;
    margin-top: 0.5rem;
}

.no-schedule {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

    .no-schedule i {
        font-size: 3rem;
        margin-bottom: 1rem;
        color: var(--text-light);
    }

.sound-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--success-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.related-artist-card .artist-info {
    padding: 1.5rem;
}

    .related-artist-card .artist-info h5 {
        color: var(--text-dark);
        margin-bottom: 0.5rem;
        font-size: 1.2rem;
        font-weight: 600;
    }

.related-artist-card .location {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.related-artist-card .genres {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.related-artist-card .price {
    background: var(--gradient-primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

/* ========================================
   SIDEBAR STYLES
   ======================================== */

.artist-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Details Card */
.details-card,
.schedule-card,
.quick-actions-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.card-header {
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .card-header h4 {
        margin: 0;
        font-size: 1.2rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

.event-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.card-content {
    padding: 2rem;
}

/* Detail Items */
.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

    .detail-item:last-child {
        border-bottom: none;
    }

    .detail-item.highlight {
        background: rgba(75, 46, 127, 0.05);
        border-radius: var(--border-radius-small);
        padding: 1.5rem;
        margin: 1rem 0;
        border: 1px solid rgba(75, 46, 127, 0.1);
    }

.detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}


.detail-info {
    flex: 1;
}

    .detail-info label {
        display: block;
        font-size: 0.9rem;
        color: var(--text-light);
        margin-bottom: 0.3rem;
        font-weight: 500;
    }

    .detail-info span {
        color: var(--text-dark);
        font-size: 1rem;
        font-weight: 600;
    }

    .detail-info .price {
        color: var(--success-color);
        font-size: 1.2rem;
        font-weight: 700;
    }

    .detail-info .included {
        color: var(--success-color);
    }

    .detail-info .not-included {
        color: var(--error-color);
    }

/* Desktop Schedule */
.desktop-schedule {
    display: block;
}

.schedule-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-item {
    position: relative;
    padding-left: 4rem;
    padding-bottom: 1.5rem;
}

    .timeline-item::before {
        content: '';
        position: absolute;
        left: 1rem;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--border-color);
    }

    .timeline-item::after {
        content: '';
        position: absolute;
        left: 0.5rem;
        top: 0.5rem;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--primary-color);
        border: 3px solid white;
        box-shadow: 0 0 0 2px var(--primary-color);
    }

    .timeline-item:last-child::before {
        display: none;
    }

.timeline-date {
    margin-bottom: 0.5rem;
}

.date-range,
.single-date {
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.timeline-content h6 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.timeline-content .location,
.timeline-content .time {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.event-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: var(--transition);
}

    .event-link:hover {
        color: var(--primary-light);
    }

.schedule-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    margin-top: 1rem;
}

.view-more-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

    .view-more-btn:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-medium);
    }

/* No Events State */
.no-events {
    text-align: center;
    padding: 2rem;
}

.no-events-icon {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.no-events h5 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.no-events p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.suggest-date-btn {
    background: var(--gradient-secondary);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .suggest-date-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(255, 107, 107, 0.4);
    }

/* Quick Actions */
.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.action-btn {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: var(--border-radius-small);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

    .action-btn:hover {
        background: white;
        border-color: var(--primary-color);
        color: var(--primary-color);
        transform: translateY(-2px);
        box-shadow: var(--shadow-light);
    }

    .action-btn i {
        font-size: 1.2rem;
    }

/* ========================================
   NOTIFICATIONS
   ======================================== */

.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: white;
    border-radius: var(--border-radius-small);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-heavy);
    border-left: 4px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 9999;
    transform: translateX(400px);
    opacity: 0;
    transition: var(--transition);
}

    .notification.show {
        transform: translateX(0);
        opacity: 1;
    }

    .notification.success {
        border-left-color: var(--success-color);
    }

    .notification.error {
        border-left-color: var(--error-color);
    }

    .notification.warning {
        border-left-color: var(--warning-color);
    }

    .notification button {
        background: none;
        border: none;
        color: var(--text-light);
        cursor: pointer;
        padding: 0.2rem;
    }

/* Custom Tooltip */
.custom-tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-small);
    font-size: 0.8rem;
    z-index: 10000;
    pointer-events: none;
    white-space: nowrap;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1200px) {
    .artist-sidebar {
        margin-top: 2rem;
    }

    .quick-stats {
        gap: 1rem;
    }

    .stat-item {
        padding: 0.8rem 1.2rem;
    }
}

@media (max-width: 992px) {
    .artist-name {
        font-size: 2.5rem;
    }

    .artist-avatar {
        width: 150px;
        height: 150px;
        margin-right: 1.5rem;
    }

    .tabs-navigation {
        flex-direction: column;
    }

    .tab-btn {
        padding: 1rem 1.5rem;
    }

    .desktop-schedule {
        display: none;
    }

    .mobile-schedule {
        display: block;
    }

    .related-artists-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .artist-hero-section {
        min-height: auto;
        padding: 2rem 0;
    }

    .content-tabs-container {
        margin: 1rem;
    }

    .artist-hero-card {
        padding: 1.5rem;
    }

    .artist-name {
        font-size: 2rem;
    }

    .artist-avatar {
        width: 120px;
        height: 120px;
        margin-right: 1rem;
        margin-bottom: 1rem;
    }

    .quick-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-item {
        justify-content: flex-start;
    }

    .contact-card {
        max-width: none;
        width: 100%;
    }

    .social-icons {
        flex-wrap: wrap;
    }

    .media-viewer {
        height: 300px;
    }

    .thumbnails-container {
        justify-content: flex-start;
    }

    .thumbnail-item {
        min-width: 80px;
        height: 60px;
    }

    .action-buttons {
        grid-template-columns: 1fr;
    }

    .related-artists-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .artist-content-section {
        padding: 2rem 0;
    }

    .media-gallery-container,
    .content-tabs-container,
    .related-artists-section,
    .details-card,
    .schedule-card,
    .quick-actions-card {
        margin-left: 0rem;
        margin-right: 0rem;
        border-radius: 0;
    }

    .section-header h3 {
        font-size: 1.5rem;
    }

    .tab-content {
        padding: 1.5rem;
    }

    .card-content {
        padding: 1.5rem;
    }

    .notification {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        transform: translateY(-100px);
    }

        .notification.show {
            transform: translateY(0);
        }
}

/* ========================================
   PERFORMANCE OPTIMIZATIONS
   ======================================== */

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* GPU acceleration for smooth animations */
.thumbnail-item,
.contact-btn,
.action-btn,
.related-artist-card,
.control-btn {
    will-change: transform;
}

/* Optimize font loading */
@font-display: swap;

.artist-hero-section-simple {
    position: relative;
    padding: 7rem 0 2rem;
    color: white;
    background: linear-gradient(135deg, #4B2E7F, #6A4B8A);
    overflow: hidden;
}

    .artist-hero-section-simple::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(white 1px, transparent 1px);
        background-size: 40px 40px;
        opacity: 0.1;
        animation: moveDots 20s linear infinite;
        z-index: 0;
    }

@keyframes moveDots {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100px 100px;
    }
}

.artist-card-simple {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.artist-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1.5rem;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

    .artist-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.artist-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.artist-location-info,
.artist-date-info,
.artist-price-info {
    display: flex;
    align-items: center;
    margin: 0.3rem 0;
    color: rgba(255, 255, 255, 0.9);
}

    .artist-location-info i,
    .artist-date-info i,
    .artist-price-info i {
        margin-right: 0.5rem;
        width: 16px;
    }

.artist-price-info {
    color: #FFB84D;
    font-weight: 600;
}

.artist-stats-simple {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.stat-simple {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    .stat-simple.highlight {
        background: #2ECC71;
        color: white;
    }

.back-link-simple {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

    .back-link-simple:hover {
        color: white;
        transform: translateX(-3px);
    }

    .back-link-simple i {
        margin-right: 0.5rem;
    }

.contact-area-simple {
    text-align: center;
}

.btn-contact-primary {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    justify-content: center;
}

    .btn-contact-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(255, 107, 107, 0.4);
    }

.btn-contact-disabled {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    width: 100%;
    justify-content: center;
}

    .btn-contact-disabled:hover {
        color: #fff;
    }

.social-section-simple {
    text-align: center;
}

.social-label-simple {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.social-links-simple {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link-simple {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .social-link-simple:hover {
        background: white;
        color: #4B2E7F;
        transform: translateY(-2px);
    }

.main-content-section {
    padding: 3rem 0;
    background: #F8F9FA;
}

.detail-content {
    flex: 1;
}

    .detail-content label {
        display: block;
        font-size: 0.9rem;
        color: #7F8C8D;
        margin-bottom: 0.3rem;
        font-weight: 500;
    }

    .detail-content span {
        color: #2C3E50;
        font-weight: 600;
    }

.widget-header {
    background: linear-gradient(135deg, #4B2E7F 0%, #6A4B8A 100%);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .widget-header h4 {
        margin: 0;
        font-size: 1.1rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
