/* Artist Lightbox Styles */

/* Make artist items clickable */
.artist-clickable {
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.artist-clickable:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.artists-section__artist-item-img.artist-clickable:hover img {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.artists-section__artist-item h3.artist-clickable:hover {
    color: #ff5c00;
    transition: color 0.3s ease;
}

/* Lightbox Modal */
.modal__artist-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.modal__artist-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal__artist-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal__artist-lightbox-content {
    position: relative;
    background: #f0e2c5;
    border-radius: 15px;
    max-width: 90vw;
    max-height: 90vh;
    width: 800px;
    margin: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    overflow: hidden;
}

.modal__artist-lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal__artist-lightbox-close:hover {
    background: #ff5c00;
    transform: rotate(90deg);
}

.modal__artist-lightbox-close svg {
    width: 16px;
    height: 16px;
    fill: #333;
}

.modal__artist-lightbox-close:hover svg {
    fill: #fff;
}

.modal__artist-lightbox-body {
    display: flex;
    flex-direction: row;
    min-height: 400px;
}

.modal__artist-lightbox-image {
    flex: 1;
    min-height: 400px;
    background: #333;
    position: relative;
    overflow: hidden;
}

.modal__artist-lightbox-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.modal__artist-lightbox-info {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: #f0e2c5;
}

.modal__artist-lightbox-info h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #3a2016;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.modal__artist-lightbox-bio {
    flex: 1;
}

.modal__artist-lightbox-bio p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #3a2016;
    line-height: 1.6;
    margin: 0;
}

/* Social Media Links */
.modal__artist-lightbox-social {
    margin-top: 25px;
}

.modal__artist-lightbox-social h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #333;
    font-family: 'Inter', sans-serif;
}

.social-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-link:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: currentColor;
    text-decoration: none;
}

.social-link svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.social-link:hover svg {
    transform: scale(1.1);
}

.social-links p {
    color: #666;
    font-style: italic;
    margin: 0;
    padding: 10px 0;
    font-family: 'Inter', sans-serif;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal__artist-lightbox-content {
        width: 95vw;
        max-height: 85vh;
        margin: 10px;
    }

    .modal__artist-lightbox-body {
        flex-direction: column;
        min-height: auto;
    }

    .modal__artist-lightbox-image {
        min-height: 250px;
        max-height: 300px;
    }

    .modal__artist-lightbox-info {
        padding: 20px;
    }

    .modal__artist-lightbox-info h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .modal__artist-lightbox-bio p {
        font-size: 1rem;
    }

    .modal__artist-lightbox-social h3 {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .social-links {
        gap: 16px;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .social-link svg {
        width: 20px;
        height: 20px;
    }

    .modal__artist-lightbox-close {
        width: 35px;
        height: 35px;
        top: 10px;
        right: 10px;
    }

    .modal__artist-lightbox-close svg {
        width: 14px;
        height: 14px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .modal__artist-lightbox-content {
        width: 98vw;
        margin: 5px;
        border-radius: 10px;
    }

    .modal__artist-lightbox-image {
        min-height: 200px;
    }

    .modal__artist-lightbox-info {
        padding: 15px;
    }

    .modal__artist-lightbox-info h2 {
        font-size: 1.8rem;
    }

    .social-links {
        gap: 12px;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .modal__artist-lightbox-overlay {
        background: rgba(0, 0, 0, 0.95);
    }

    .modal__artist-lightbox-content {
        border: 2px solid #ff5c00;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .artist-clickable,
    .modal__artist-lightbox,
    .modal__artist-lightbox-content,
    .modal__artist-lightbox-close {
        transition: none;
        animation: none;
    }

    .artist-clickable:hover {
        transform: none;
    }

    .modal__artist-lightbox-close:hover {
        transform: none;
    }
}
