/* Artwork Detail Page Styles */

.artwork-detail-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 2rem auto 5rem;
    padding: 0 5%;
    gap: 3rem;
}

/* Left column - description and details */
.artwork-left-column {
    flex: 2;
    min-width: 300px;
    max-width: 800px;
}

/* Right column - images */
.artwork-right-column {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Quote icon */
.quote-icon {
    color: #b8860b;
    font-size: 3rem;
    opacity: 0.7;
    font-weight: bold;
}


/* Artwork description */
.artwork-description {
    margin-bottom: 2.5rem;
}

.artwork-description p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #444;
}

/* Artwork specifications */
.artwork-specs {
    margin-bottom: 2.5rem;
}

.artwork-specs ul {
    list-style-type: none;
    padding: 0;
}

.artwork-specs li {
    margin-bottom: 0.7rem;
    display: flex;
    line-height: 1.7;
}

.artwork-specs li::before {
    content: "•";
    color: #333;
    font-weight: normal;
    display: inline-block;
    width: 1em;
    margin-right: 0.5rem;
}

.spec-label {
    display: inline-block;
    min-width: 30px;
    margin-right: 10px;
    font-weight: bold;
}

/* Price information */
.artwork-price-container {
    margin-top: 2.5rem;
}

.artwork-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.artwork-price-note {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.5;
    margin-top: 1.5rem;
}

/* Artwork images */
.artwork-main-image-container,
.artwork-wall-image-container {
    width: 100%;
    max-width: 337.5px; /* For 3:4 aspect ratio with 450px height */
    cursor: pointer;
}

.artwork-main-image,
.artwork-wall-image {
    width: 100%;
    height: auto;
    max-height: 450px;
    display: block;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Lightbox overlay */
.artwork-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.artwork-lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 10000;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}
@media (max-width: 992px) {
    .artwork-detail-container {
        flex-direction: column;
    }
    
    .artwork-left-column, 
    .artwork-right-column {
        max-width: 100%;
    }
    
    .artwork-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .artwork-title {
        font-size: 1.7rem;
    }
    
    .quote-icon {
        font-size: 2rem;
    }
}

/* Artist page styles */
.artist-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 2rem auto 5rem;
    padding: 0 5%;
    gap: 3rem;
}

.artist-left-column {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
}

.artist-right-column {
    flex: 2;
    min-width: 300px;
    max-width: 800px;
}

.artist-image {
    width: 100%;
    height: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.artist-section {
    margin-bottom: 2.5rem;
}

/* Custom heading styles for h2 and h3 in the artist section */
.artist-section h2 {
    color: var(--dark-gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.artist-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* List styles for the artist section */
.artist-section ul {
    margin-left: 2rem;
    list-style-type: disc;
}

.artist-section ul li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.artist-section p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #444;
}

@media (max-width: 992px) {
    .artist-container {
        flex-direction: column;
    }
    
    .artist-left-column, 
    .artist-right-column {
        max-width: 100%;
    }
    
    .artist-left-column {
        display: flex;
        justify-content: center;
    }
    
    .artist-image {
        max-width: 400px;
    }
}