/* -------------------------------------------------------------
 BEELDEN / ARTWORK PAGE STYLING
 ------------------------------------------------------------- */
.sculptures-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 130px 22px 80px;
}

.sculptures-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
}

.sculptures-header h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600;
    letter-spacing: -0.005em;
    margin-bottom: 12px;
}

.sculptures-lead {
    font-size: 20px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Material & Dimension Badges */
.artwork-specs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}

.spec-badge {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Featured Artwork Banner */
.featured-artwork {
    margin-bottom: 64px;
}

.artwork-hero-card {
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.artwork-hero-card img {
    width: 100%;
    max-height: 650px;
    object-fit: cover;
}

/* Story Grid: Locations & Context */
.artwork-story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 72px;
}

.story-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.story-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.story-card-body {
    padding: 24px;
    flex-grow: 1;
}

.story-card-body p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

/* Documentation / Archive Section */
.sculptures-docs-section {
    margin-top: 64px;
}

.sculptures-docs-section h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.sculptures-docs-section > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 16px;
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

/* Document Card Interactivity & Hover Hints */
.doc-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
    position: relative;
    height: 200px;
}

.doc-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.3);
}

.doc-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.doc-card::after {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.75);
    color: #ffffff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

html[lang="nl"] .doc-card::after {
    content: "🔍 Klik om te vergroten";
}

html[lang="en"] .doc-card::after {
    content: "🔍 Click to enlarge";
}

.doc-card:hover::after,
.doc-card:focus-visible::after {
    opacity: 1;
}

/* Lightbox Modal Overlay */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 24px;
}

.lightbox-modal.is-active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 88vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
    z-index: 10002;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Lightbox Navigation Buttons */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
    user-select: none;
    z-index: 10001;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.08);
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .sculptures-container {
        padding: 110px 16px 60px;
    }

    .artwork-story-grid {
        grid-template-columns: 1fr;
    }

    .doc-card {
        height: 180px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .lightbox-prev {
        left: 12px;
    }

    .lightbox-next {
        right: 12px;
    }
}