/* Hero Gallery Replacement */
.hero-gallery {
    position: relative;
    width: 350px;
    height: 400px;
}

.gallery-frame {
    position: absolute;
    width: 200px;
    height: 280px;
    background: #fff;
    padding: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    transition: all 0.5s ease;
    border-radius: 4px;
    transform-origin: center;
}

.art-placeholder {
    width: 100%;
    height: 100%;
    background-color: #333;
    overflow: hidden;
    position: relative;
}

/* Simulated Art with CSS Gradients */
.p-1 { background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%); }
.p-2 { background: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%); }
.p-3 { background: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%); }

/* Positioning the stack */
.frame-1 {
    top: 20px;
    left: 20px;
    transform: rotate(-10deg) scale(0.9);
    z-index: 1;
}

.frame-2 {
    top: 50px;
    right: 20px;
    transform: rotate(15deg) scale(0.95);
    z-index: 2;
}

.frame-3 {
    top: 80px;
    left: 50%;
    transform: translateX(-50%) rotate(-5deg);
    z-index: 3;
}

/* Hover effects */
.hero-gallery:hover .frame-1 {
    transform: rotate(-25deg) translate(-40px, -20px);
}
.hero-gallery:hover .frame-2 {
    transform: rotate(25deg) translate(40px, -20px);
}
.hero-gallery:hover .frame-3 {
    transform: translateX(-50%) rotate(0deg) scale(1.1);
    z-index: 10;
}

/* Exhibitions Section */
.exhibition-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1000px;
}

.exhibition-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    overflow: hidden;
    width: 300px;
    transition: transform 0.3s ease;
}

.exhibition-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.1);
}

.ex-image {
    width: 100%;
    height: 200px;
    background: #444;
}

.ex-1 { background: linear-gradient(45deg, #a18cd1 0%, #fbc2eb 100%); }
.ex-2 { background: linear-gradient(to right, #ffecd2 0%, #fcb69f 100%); }

.ex-info {
    padding: 1.5rem;
}

.ex-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.ex-info p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.exhibition-text {
    width: 100%;
    text-align: center;
    margin-top: 2rem;
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 300;
    opacity: 0.8;
}

/* Responsive adjustments for gallery */
@media (max-width: 768px) {
    .hero-gallery {
        transform: scale(0.8);
    }
}
