/* Artwork Show Page (Lightbox style) */

.artwork-show-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--shw);
    z-index: 100;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow-y: auto;
}

/* Header */
.artwork-show-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--semibreve) var(--minim);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.artwork-show-actions {
    display: flex;
    gap: var(--crotchet);
}

/* Icons */
.artwork-action-icon {
    color: var(--mb);
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.artwork-action-icon:hover {
    opacity: 0.7;
}

/* Main Content */
.artwork-show-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px var(--minim) var(--minim);
    width: 100%;
}

.artwork-display-image {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-bottom: var(--semibreve);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for depth */
}

/* Typography */
.artwork-details {
    text-align: center;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.artwork-title {
    font-family: var(--font-serif);
    /* Using serif as per design */
    font-size: 20px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--black);
    margin: 0;
    font-weight: 400;
}

.artwork-meta {
    font-family: var(--font-serif);
    font-size: 14px;
    font-style: italic;
    color: var(--black);
    margin: 0;
    font-weight: 400;
    align-items: center;
}

.artwork-year {
    font-family: var(--font-serif);
    font-size: 14px;
    font-style: italic;
    color: var(--black);
    margin: 0;
    font-weight: 400;
    margin-top: 4px;
}