/* ==========================================
   A MOMENT 2 RMBR - PAGE STYLES
   ========================================== */

/* ==========================================
   SHOW HERO SECTION
   ========================================== */
.show-hero {
    background-color: #000000;
    padding: 8rem 0 5rem 0;
    position: relative;
}

.show-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

/* Flyer */
.show-flyer {
    position: relative;
}

.show-flyer img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(201,169,110,0.2);
    display: block;
}

/* Show details */
.show-label {
    color: #536878;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    display: block;
    margin-bottom: 1rem;
}

.show-details h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: #536878;
    margin: 1.5rem 0;
}

/* Show info grid */
.show-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.show-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.show-info-item i {
    color: #536878;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.show-info-item h4 {
    color: #536878;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.show-info-item p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Buttons */
.show-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ==========================================
   ABOUT THE SHOW
   ========================================== */
.about-show {
    background-color: #1A1A1A;
    padding: 5rem 0;
    text-align: center;
}

.about-show-content {
    max-width: 700px;
    margin: 0 auto;
}

.about-show-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 700;
}

.about-show-content p {
    color: #CCCCCC;
    line-height: 1.9;
    font-size: 1rem;
    font-style: italic;
}

.divider.center {
    margin: 1rem auto 2rem auto;
}

/* ==========================================
   ARTWORK SHOWCASE
   ========================================== */
.artwork-showcase {
    background-color: #F2F2F2;
    padding: 5rem 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Showcase card */
.showcase-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #DDDDDD;
}

.showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 40px rgba(83,104,120,0.2);
}

/* Image */
.showcase-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background-color: #F2F2F2;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-card:hover .showcase-image img {
    transform: scale(1.05);
}

/* Overlay */
.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.showcase-card:hover .showcase-overlay {
    opacity: 1;
}

.showcase-overlay i {
    font-size: 2.5rem;
    color: #ffffff;
}

/* Card info */
.showcase-info {
    padding: 1.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.showcase-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #000000;
    font-weight: 700;
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.showcase-text p {
    color: #888888;
    font-size: 0.8rem;
}

.showcase-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.showcase-price {
    font-size: 1rem;
    font-weight: 700;
    color: #536878;
}

.showcase-price.nfs {
    color: #888888;
    font-size: 0.85rem;
    font-style: italic;
}

/* Inquiry button */
.btn-inquiry {
    background-color: #000000;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-inquiry:hover {
    background-color: #536878;
    color: #ffffff;
}

/* ==========================================
   LIGHTBOX
   ========================================== */
.showcase-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
}

.showcase-lightbox.active {
    display: flex;
}

.showcase-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.97);
    cursor: pointer;
}

.showcase-lightbox-content {
    position: relative;
    
    max-width: 900px;
    width: 90%;
    text-align: center;
    max-height: 90vh;
    overflow-y: auto;
}

.showcase-lightbox-content img {
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
    border-radius: 4px;
}

/* Lightbox info */
.showcase-lightbox-info {
    margin-top: 1.5rem;
    text-align: center;
}

.showcase-lightbox-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.showcase-lightbox-info p {
    color: #888888;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.showcase-lightbox-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.showcase-lightbox-details span {
    color: #CCCCCC;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.showcase-lightbox-details i {
    color: #536878;
}

.lightbox-price {
    color: #536878 !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
}

.showcase-close {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 9999;
}

.showcase-close:hover {
    background: #ffffff;
    color: #000000;
}

.showcase-prev,
.showcase-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: #ffffff;
    font-size: 1.2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.showcase-prev {
    left: 1rem;
}

.showcase-next {
    right: 1rem;
}

.showcase-prev:hover,
.showcase-next:hover {
    background: #ffffff;
    color: #000000;
}


/* ==========================================
   SHOW CTA
   ========================================== */
.show-cta {
    background-color: #000000;
    padding: 5rem 0;
    text-align: center;
}

.show-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.show-cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.show-cta-content p {
    color: #888888;
    line-height: 1.9;
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Show link in navbar */
.show-link {
    color: #536878 !important;
    font-style: italic;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .show-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .show-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .show-buttons {
        flex-direction: column;
    }
}
