/* prints.css */

        body {
            margin: 0;
            padding: 40px;
            background: linear-gradient(135deg, #f8f6f0 0%, #e8e4d9 100%);
            font-family: 'Arial', sans-serif;
            min-height: 100vh;
            line-height: 1.6;
        }

        .gallery-container {
            max-width: 1200px;
            margin: 0 auto;
            background: #faf9f6;
            padding: 60px 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-radius: 8px;
        }

        .gallery-title {
            text-align: center;
            font-size: 32px;
            color: #2c2c2c;
            margin-bottom: 20px;
            font-weight: 300;
            letter-spacing: 2px;
        }

        .gallery-subtitle {
            text-align: center;
            font-size: 16px;
            color: #666;
            font-style: italic;
            margin-bottom: 50px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .gallery-wall {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            justify-items: center;
            margin-bottom: 60px;
        }

        .artwork {
            position: relative;
            background: white;
            padding: 20px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-radius: 2px;
            cursor: pointer;
        }

        .artwork:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        .artwork img {
            width: 240px;
            height: 300px;
            object-fit: cover;
            display: block;
            border-radius: 2px;
        }

        .artwork-info {
            padding: 15px 5px 5px 5px;
            text-align: center;
        }

        .artwork-title {
            font-size: 14px;
            font-weight: 600;
            color: #2c2c2c;
            margin-bottom: 5px;
        }

        .artwork-description {
            font-size: 12px;
            color: #666;
            font-style: italic;
        }

        .description-section {
            background: #f5f3ef;
            padding: 40px;
            border-left: 4px solid #c4986b;
            margin-top: 40px;
            border-radius: 4px;
        }

        .description-section h2 {
            color: #2c2c2c;
            font-size: 24px;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .description-section p {
            color: #444;
            margin-bottom: 20px;
        }

        .journey-list {
            background: white;
            padding: 25px;
            margin: 25px 0;
            border-radius: 4px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .journey-list h3 {
            color: #c4986b;
            margin-top: 0;
            font-size: 18px;
        }

        .journey-list ul {
            padding-left: 20px;
        }

        .journey-list li {
            margin-bottom: 10px;
            color: #444;
        }

        /* Lightbox Styles */
        .lightbox {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            animation: fadeIn 0.3s ease;
        }

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

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.5);
        }

        .lightbox-image {
            max-width: 100%;
            max-height: 70vh;
            object-fit: contain;
            display: block;
            margin: 0 auto;
        }

        .lightbox-info {
            text-align: center;
            padding: 15px 0 5px 0;
        }

        .lightbox-title {
            font-size: 18px;
            font-weight: 600;
            color: #2c2c2c;
            margin-bottom: 5px;
        }

        .lightbox-description {
            font-size: 14px;
            color: #666;
            font-style: italic;
        }

        .close {
            position: absolute;
            top: 15px;
            right: 25px;
            color: #666;
            font-size: 35px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close:hover {
            color: #2c2c2c;
        }

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

        /* Click hint */
        .click-hint {
            position: absolute;
            bottom: 10px;
            right: 15px;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 5px 8px;
            border-radius: 3px;
            font-size: 10px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .artwork:hover .click-hint {
            opacity: 1;
        }

        @media (max-width: 768px) {
            .gallery-container {
                padding: 30px 20px;
            }
            
            .gallery-wall {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .artwork img {
                width: 100%;
                max-width: 300px;
            }
            
            .description-section {
                padding: 25px;
            }
        }