/* =============================================================================
   SHARED GALLERY STYLES
   Include this file in all galleries for uniform styling
   ============================================================================= */

/* Breadcrumb Navigation - Uniform across all galleries */
.breadcrumb {
    margin-bottom: 20px;
    text-align: center;
}

.back-link {
    display: inline-block;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: #333;
    border-color: #999;
    background-color: #f9f9f9;
}

/* Image hover effects - Apply to all galleries */
.artwork-item img {
    transition: all 0.3s ease;
}

.artwork-item:hover img {
    transform: scale(1.02);
    filter: brightness(1.05);
}

/* Lightbox enhancements - Uniform across all galleries */
.lightbox-content {
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Price styling - Uniform formatting */
.price {
    font-weight: 600;
    color: #2c5530;
    font-size: 1.1rem;
}

/* "One of a kind artwork" text - Uniform across all galleries */
.one-of-kind {
    font-style: italic;
    color: #777;
    font-size: 0.9rem;
    margin: 5px 0 10px 0;
    letter-spacing: 0.5px;
}

/* Button styling - Uniform across galleries */
.inquiry-button, .email-button {
    background: #f5f5f5;
    border: 1px solid #ccc;
    color: #333;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.inquiry-button:hover, .email-button:hover {
    background: #e9e9e9;
    border-color: #999;
    transform: translateY(-1px);
}

/* Email notification - Uniform styling */
.email-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    max-width: 400px;
    width: 90%;
}

.email-notification-content {
    text-align: center;
    position: relative;
}

.email-notification p {
    margin-bottom: 15px;
    color: #555;
}

.email-address {
    font-weight: 600;
    color: #222 !important;
    font-size: 1.1rem;
}

.copy-email-btn {
    background: #f5f5f5;
    border: 1px solid #ccc;
    color: #333;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    margin: 10px 5px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.copy-email-btn:hover {
    background: #e9e9e9;
}

.close-notification {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #ccc;
    border: none;
    color: #333;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-notification:hover {
    background: #999;
}

/* Gallery grid enhancements - Apply to all */
.gallery-grid {
    animation: fadeInUp 0.6s ease;
}

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

/* Section dividers - Uniform spacing */
.gallery-section {
    margin-bottom: 80px;
}

.section-header {
    margin-bottom: 40px;
}

/* Loading states for images */
.artwork-item img {
    background: #f5f5f5;
    border-radius: 4px;
}

.artwork-item img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.artwork-item img.loaded {
    opacity: 1;
} 