/* Exhibitions Page Styles */
.exhibitions-hero {
    padding: 8rem 0 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
}

.exhibitions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.exhibitions-title {
    font-size: 3rem;
    font-weight: 300;
    color: #000;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.exhibitions-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Exhibitions Section */
.exhibitions-section {
    padding: 4rem 0;
    background: white;
}

.exhibitions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.exhibition-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.exhibition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.exhibition-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.exhibition-content {
    padding: 2rem;
}

.exhibition-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
}

.exhibition-location {
    color: var(--primary-black);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.exhibition-dates {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.exhibition-description {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.exhibition-status {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
}

.status-current {
    background: #d4edda;
    color: #155724;
}

.status-upcoming {
    background: #cce5ff;
    color: #004085;
}

.status-past {
    background: #f8d7da;
    color: #721c24;
}

/* Loading and No Results */
.loading-spinner {
    text-align: center;
    padding: 3rem;
}

.loading-spinner i {
    font-size: 2rem;
    color: var(--primary-black);
    animation: spin 1s linear infinite;
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

.no-results i {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.no-results p {
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .exhibitions-title {
        font-size: 2rem;
    }
    
    .exhibitions-subtitle {
        font-size: 1rem;
    }
    
    .exhibitions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .exhibition-content {
        padding: 1.5rem;
    }
    
    .exhibition-title {
        font-size: 1.3rem;
    }
}
